├── .gitignore ├── CNAME ├── README.md ├── api ├── BEncode.php ├── hash2Torrent.php └── index.php ├── config.js ├── favicon.ico ├── index.html ├── package.json ├── src ├── App.vue ├── components │ ├── Hash2Torrent.vue │ ├── PageHeader.vue │ └── Torrent.vue └── main.js ├── static ├── css │ ├── animate.css │ └── style.css └── js │ ├── bootstrap-notify.min.js │ └── clipboard.min.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | upload/ 4 | torrent/ 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | url2bt.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/README.md -------------------------------------------------------------------------------- /api/BEncode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/api/BEncode.php -------------------------------------------------------------------------------- /api/hash2Torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/api/hash2Torrent.php -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/api/index.php -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | apiUrl : "http://35.200.148.180/url2bt/" 3 | } 4 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/Hash2Torrent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/src/components/Hash2Torrent.vue -------------------------------------------------------------------------------- /src/components/PageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/src/components/PageHeader.vue -------------------------------------------------------------------------------- /src/components/Torrent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/src/components/Torrent.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/src/main.js -------------------------------------------------------------------------------- /static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/static/css/animate.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/bootstrap-notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/static/js/bootstrap-notify.min.js -------------------------------------------------------------------------------- /static/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/static/js/clipboard.min.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhaoworld/torrent2magnet/HEAD/webpack.config.js --------------------------------------------------------------------------------