infoMap = BDecoder.decode(torrentFile.getInputStream()).getMap().get("info")
35 | .getMap();
36 | String hash = DigestUtils.sha1Hex(BEncoder.encode(infoMap).array()).toUpperCase();
37 | File file = new File(appConfig.torrentDir + hash + ".torrent");
38 | if (!file.exists()) {
39 | FileUtils.copyInputStreamToFile(torrentFile.getInputStream(), file);
40 | }
41 | return appConfig.magnetHeader + hash;
42 | }
43 |
44 | }
45 |
--------------------------------------------------------------------------------
/src/main/java/vip/rory/magnet/util/WebUtils.java:
--------------------------------------------------------------------------------
1 | package vip.rory.magnet.util;
2 |
3 | import java.io.File;
4 | import java.io.FileInputStream;
5 | import java.io.IOException;
6 | import java.io.InputStream;
7 |
8 | import javax.servlet.ServletOutputStream;
9 | import javax.servlet.http.HttpServletRequest;
10 | import javax.servlet.http.HttpServletResponse;
11 |
12 | import org.springframework.http.MediaType;
13 |
14 | /**
15 | * @author zhanghangtian
16 | * @date 2019年8月12日 下午3:17:50
17 | */
18 | public class WebUtils {
19 |
20 | public static void writeFileToResponse(File file, HttpServletRequest request, HttpServletResponse response)
21 | throws IOException {
22 | String userAgent = request.getHeader("User-Agent");
23 | //针对IE或者以IE为内核的浏览器:
24 | String fileName = file.getName();
25 | if (userAgent.contains("MSIE") || userAgent.contains("Trident")) {
26 | fileName = java.net.URLEncoder.encode(fileName, "UTF-8");
27 | } else {
28 | //非IE浏览器的处理:
29 | fileName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1");
30 | }
31 |
32 | response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
33 | response.setHeader("Content-Type", MediaType.APPLICATION_OCTET_STREAM_VALUE);
34 |
35 | //获得该文件的输入流
36 | InputStream in = new FileInputStream(file);
37 |
38 | //获得输出流---通过response获得的输出流 用于向客户端写内容
39 | ServletOutputStream out = response.getOutputStream();
40 | int len = 0;
41 | byte[] buffer = new byte[4096];
42 | while ((len = in.read(buffer)) > 0) {
43 | out.write(buffer, 0, len);
44 | }
45 | in.close();
46 | }
47 |
48 | }
49 |
--------------------------------------------------------------------------------
/src/main/resources/application.yml:
--------------------------------------------------------------------------------
1 | server:
2 | port: 80
3 | spring:
4 | application:
5 | name: magnet-torrent
6 | resources:
7 | static-locations: classpath:/static/,classpath:/views/
8 |
--------------------------------------------------------------------------------
/src/main/resources/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/favicon.ico
--------------------------------------------------------------------------------
/src/main/resources/static/css/Index.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-image: url("../images/body.jpg");
3 | font-family: 'Microsoft YaHei UI',arial,sans-serif;
4 | font-size: 13px;
5 | }
6 |
7 | #logo{
8 | width: 460px;
9 | height: 130px;
10 | margin-top: 70px;
11 | margin-left: auto;
12 | margin-right: auto;
13 | }
14 |
15 | #search-bar{
16 | margin-top: 25px;
17 | width: 600px;
18 | height: 100px;
19 | margin-left: auto;
20 | margin-right: auto;
21 | }
22 |
23 | #search-bar input {
24 | width: 580px;
25 | height: 25px;
26 | padding: 9px 10px;
27 | font-family: 'Microsoft YaHei UI',arial,sans-serif;
28 | font-size: 15px;
29 | color: #555;
30 | border: none;
31 | background: #fff;
32 | overflow: hidden;
33 | outline:none;
34 | vertical-align: middle;
35 | box-shadow: 1px 1px 3px rgb(160,160,160);
36 | border-radius: 2px;
37 | }
38 |
39 | #search-bar button {
40 | margin-top: 20px;
41 | margin-left: 20px;
42 | width: 105px;
43 | height: 35px;
44 | overflow: hidden;
45 | text-align: center;
46 | font-size: 15px;
47 | font-weight: bold;
48 | color: rgb(100,100,100);
49 | border: none;
50 | overflow: hidden;
51 | vertical-align: middle;
52 | outline: none;
53 | cursor: pointer;
54 | border-radius: 2px;
55 | background-color: rgb(255,255,255);
56 | box-shadow: 0px 0px 1px rgb(160,160,160);
57 | }
58 |
59 | #search-bar button:hover{
60 | background-color: rgb(240,240,240);
61 | box-shadow: 0px 0px 3px rgb(160,160,160);
62 | }
63 |
64 | #nav-panel{
65 | margin-top: 80px;
66 | margin-bottom: 100px;
67 | width: 840px;
68 | height: 52px;
69 | margin-left: auto;
70 | margin-right: auto;
71 | padding-left: 30px;
72 | padding-top: 10px;
73 | background-color: #FFFFFF;
74 | border: 1px solid rgb(210,210,210);
75 | }
76 |
77 | .nav-panel-line{
78 | clear: both;
79 | width: 810px;
80 | height:1px;
81 | background-color: #F0F0F0;
82 | }
83 |
84 | .nav-panel-item {
85 | float: left;
86 | display: block;
87 | height: 40px;
88 | width: 160px;
89 | border: 1px solid transparent;
90 | text-decoration: none;
91 | color: #333;
92 | }
93 |
94 | .nav-panel-item:hover
95 | {
96 | background-color: #F7F7F7;
97 | }
98 |
99 | .nav-panel-item-img{
100 | float: left;
101 | margin-top: 12px;
102 | margin-left: 15px;
103 | }
104 |
105 | .nav-panel-item-txt {
106 | float: left;
107 | margin-left: 5px;
108 | line-height: 40px;
109 | height: 40px;
110 | }
--------------------------------------------------------------------------------
/src/main/resources/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/favicon.ico
--------------------------------------------------------------------------------
/src/main/resources/static/images/156957709128421.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/156957709128421.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/Thumbs.db
--------------------------------------------------------------------------------
/src/main/resources/static/images/ZhiBo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/ZhiBo8.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/_2018FIFA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/_2018FIFA.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/body.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/body.jpg
--------------------------------------------------------------------------------
/src/main/resources/static/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/logo.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/163.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/163.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/3DM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/3DM.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Amazon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Amazon.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Apple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Apple.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/BBC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/BBC.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/BaiDisk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/BaiDisk.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Baidu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Baidu.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Bandcamp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Bandcamp.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Bilibili.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Bilibili.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Blog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Blog.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/CBlog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/CBlog.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Cnbeta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Cnbeta.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Dictionary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Dictionary.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Douban.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Douban.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Douyu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Douyu.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Drive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Drive.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Engadget.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Engadget.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Facebook.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Gamersky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Gamersky.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Geekpark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Geekpark.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Github.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Google.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Google.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Hackers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Hackers.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Hupu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Hupu.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Huxiu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Huxiu.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/IThome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/IThome.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/InfoQ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/InfoQ.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Instagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Instagram.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/JD.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/JD.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/LeQiu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/LeQiu.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Leiphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Leiphone.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Map.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/MeiTuan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/MeiTuan.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/NoseTime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/NoseTime.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Outlook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Outlook.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/People.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/People.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/SRs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/SRs.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Sports.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Sports.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Stack.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Starbucks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Starbucks.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Steam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Steam.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Taobao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Taobao.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Thumbs.db
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Tmtpost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Tmtpost.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Toutiao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Toutiao.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Twitch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Twitch.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Twitter.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/V2EX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/V2EX.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/VOA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/VOA.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Vimeo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Vimeo.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/WashPost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/WashPost.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Weibo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Weibo.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Wikipedia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Wikipedia.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/WoT.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/WoT.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Youtube.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Youtube.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/ZhiBo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/ZhiBo8.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/Zhihu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/Zhihu.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20170717_HackerNews.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20170717_HackerNews.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20170807_Haosou.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20170807_Haosou.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20171212_Amap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20171212_Amap.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180404_Acfun.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180404_Acfun.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180404_Food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180404_Food.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180404_OverWatch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180404_OverWatch.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180420_Tmtpost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180420_Tmtpost.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_Converse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_Converse.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_DJI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_DJI.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_Damai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_Damai.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_Dgtle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_Dgtle.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_Pingwest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_Pingwest.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_Pocket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_Pocket.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_Sspai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_Sspai.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180422_TED.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180422_TED.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180517_Lagou.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180517_Lagou.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180607_CSDN.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180607_CSDN.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180607_Zealer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180607_Zealer.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180702_Dropbox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180702_Dropbox.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180913_Gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180913_Gold.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20180913_eBay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20180913_eBay.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20181020_ZhiBoMi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20181020_ZhiBoMi.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20190220_A9VG.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20190220_A9VG.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20190426_Stone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20190426_Stone.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20190531_Panda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20190531_Panda.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/_20190615PlayStation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/_20190615PlayStation.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/biedian.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/biedian.ico
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/iFanr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/iFanr.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/magnetCloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/magnetCloud.png
--------------------------------------------------------------------------------
/src/main/resources/static/images/web_icons/mvcat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZRory/magnet-torrent/9f8b73929aa9d337fef9b421c8c12a951e083cfa/src/main/resources/static/images/web_icons/mvcat.png
--------------------------------------------------------------------------------
/src/main/resources/views/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 磁力转转-磁力链接种子在线转换
6 |
7 |
8 |
17 |
26 |
27 |
29 |
31 |
104 |
105 |
106 | 在线磁力链接种子转换,磁力转转,磁力第一门户网
107 | 在线磁力链接转种子
108 | 在线种子转磁力链接
109 | MAGNET->TORRENT
110 |
111 |
112 |
113 |
114 |

115 |
116 |
117 |
121 |
122 |
123 |
125 |
126 |
127 |
128 |
129 |
130 |
158 |
159 |
160 |
--------------------------------------------------------------------------------
/src/test/java/vip/rory/magnet/MagnetTorrentApplicationTests.java:
--------------------------------------------------------------------------------
1 | package vip.rory.magnet;
2 |
3 | import org.junit.Test;
4 | import org.junit.runner.RunWith;
5 | import org.springframework.boot.test.context.SpringBootTest;
6 | import org.springframework.test.context.junit4.SpringRunner;
7 |
8 | @RunWith(SpringRunner.class)
9 | @SpringBootTest
10 | public class MagnetTorrentApplicationTests {
11 |
12 | @Test
13 | public void contextLoads() {
14 | }
15 |
16 | }
17 |
--------------------------------------------------------------------------------