From 32b53a6a1653b1b98f9a0a9c787f487998b13ae6 Mon Sep 17 00:00:00 2001 From: Yutousama <583819556@qq.com> Date: Thu, 13 Oct 2022 18:11:56 +0800 Subject: [PATCH] update RedisTools update BTDownload --- .../yutou/nas/utils/BTDownloadManager.java | 13 +++- .../com/yutou/nas/utils/PatternTools.java | 19 ++++++ .../java/com/yutou/nas/utils/RedisTools.java | 64 +++++++++++++++++++ 3 files changed, 94 insertions(+), 2 deletions(-) create mode 100644 src/main/java/com/yutou/nas/utils/PatternTools.java diff --git a/src/main/java/com/yutou/nas/utils/BTDownloadManager.java b/src/main/java/com/yutou/nas/utils/BTDownloadManager.java index 20003e9..dc95a43 100644 --- a/src/main/java/com/yutou/nas/utils/BTDownloadManager.java +++ b/src/main/java/com/yutou/nas/utils/BTDownloadManager.java @@ -3,9 +3,7 @@ package com.yutou.nas.utils; import com.alibaba.fastjson2.JSON; import com.alibaba.fastjson2.JSONArray; import com.alibaba.fastjson2.JSONObject; -import com.yutou.nas.interfaces.ObjectInterface; -import java.io.File; import java.util.concurrent.TimeUnit; public class BTDownloadManager { @@ -37,6 +35,7 @@ public class BTDownloadManager { //添加到下载器 if (download(title, item.getJSONObject("enclosure").getString("link"))) { //发通知到QQ + RedisTools.setHashMap("rss",PatternTools.getMagnetHash(item.getJSONObject("enclosure").getString("link")),item.toJSONString()); JSONArray array = getDownload(title); array.add(item.getString("title")); RedisTools.set(title, array.toJSONString()); @@ -108,6 +107,16 @@ public class BTDownloadManager { public synchronized static void done(String path,String filename,String hash1,String hash2,String tid) { grep(path,filename); + String hash=StringUtils.isEmpty(hash1)?StringUtils.isEmpty(hash2)?null:hash2:hash1; + if(hash!=null){ + String map = RedisTools.getHashMap("rss", hash); + JSONObject item=JSON.parseObject(map); + if (item.containsKey("thumbnail")) { + onSend(item.getString("thumbnail"), item,item.getJSONObject("enclosure").getString("link")); + } else { + onSend(null, item,item.getJSONObject("enclosure").getString("link")); + } + } } private static void grep(String remoteLocation, String remoteName) { diff --git a/src/main/java/com/yutou/nas/utils/PatternTools.java b/src/main/java/com/yutou/nas/utils/PatternTools.java new file mode 100644 index 0000000..afaea1a --- /dev/null +++ b/src/main/java/com/yutou/nas/utils/PatternTools.java @@ -0,0 +1,19 @@ +package com.yutou.nas.utils; + +import java.util.Objects; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public class PatternTools { + private static String exec(String regex,String input){ + Pattern pattern=Pattern.compile(regex); + Matcher matcher = pattern.matcher(input); + if(matcher.find()){ + return matcher.group(); + } + return null; + } + public static String getMagnetHash(String magnetLink){ + return Objects.requireNonNull(exec(".(?<=btih:).*(?=&dn)", magnetLink)).substring(1); + } +} diff --git a/src/main/java/com/yutou/nas/utils/RedisTools.java b/src/main/java/com/yutou/nas/utils/RedisTools.java index 854536f..787f20f 100644 --- a/src/main/java/com/yutou/nas/utils/RedisTools.java +++ b/src/main/java/com/yutou/nas/utils/RedisTools.java @@ -13,6 +13,8 @@ import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; +import java.util.HashSet; +import java.util.Map; import java.util.Properties; import java.util.Set; @@ -150,6 +152,68 @@ public class RedisTools { } } + + public static long list_add(String listName, String... value) { + Jedis jedis = getRedis(); + long index = jedis.sadd(listName, value); + jedis.close(); + return index; + } + + public static Set list_get(String listName) { + Jedis jedis = getRedis(); + Set set = jedis.smembers(listName); + jedis.close(); + if (set == null) { + set = new HashSet<>(); + } + return set; + } + + public static boolean list_remove(String listName, String... value) { + Jedis jedis = getRedis(); + long index = jedis.srem(listName, value); + jedis.close(); + return index != 0; + } + + public static boolean list_isExist(String listName, String value) { + Jedis jedis = getRedis(); + boolean flag = jedis.sismember(listName, value); + jedis.close(); + return flag; + } + + public static String getHashMap(String hashKey, String key) { + Jedis jedis = getRedis(); + return jedis.hget(hashKey, key); + } + + public static Map getHashMap(String hashKey) { + return getRedis().hgetAll(hashKey); + } + + public static boolean setHashMap(String hashKey, String key, String value) { + Jedis jedis = getRedis(); + long l = jedis.hset(hashKey, key, value); + jedis.close(); + return l == 0; + } + + public static boolean removeHashMap(String hashKey, String key) { + Jedis jedis = getRedis(); + long l = jedis.hdel(hashKey, key); + jedis.close(); + return l > 0; + } + + public static boolean removeHashMap(String hashKey) { + Jedis jedis = getRedis(); + long del = jedis.del(hashKey); + return del > 0; + + } + private static class PropertyUtil { // 加载property文件到io流里面