Rss 规则
自定义代码
基本结构
// 提供 torrent 参数, torrent 为当前操作种子的信息
// 返回 true 则意为符合 Rss 条件, 添加该种
(torrent) => {
return false;
}
torrent
torrent 结构如下
const torrent = {
size: 0,
name: '',
hash: '',
id: 0,
url: '',
link: ''
};
torrent 各属性释义
举栗
使用正则匹配 Hares 站点官种
// 使用正则匹配 Hares 站点官种,(单纯为了演示正则, 其实完全不需要使用正则....)
(torrent) => {
const { name } = torrent;
if (name.match(/Hares/)) {
return true;
}
return false;
};
// 上面是为了看的清晰, 实际可以这么写...
(torrent) => torrent.name.match(/Hares/);