You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.5 KiB
118 lines
3.5 KiB
//本代码仅用于个人学习,请勿用于其他作用,下载后请24小时内删除,代码虽然是公开学习的,但请尊重作者,应留下说明
|
|
var Alistfile = "hiker://files/rules/Src/Juying/Alist.json";
|
|
var AlistData = fetch(Alistfile);
|
|
if (AlistData != "") {
|
|
eval("var datalist=" + AlistData + ";");
|
|
} else {
|
|
var datalist = [
|
|
{
|
|
"name": "小雅",
|
|
"server": "http://alist.xiaoya.pro"
|
|
},
|
|
{
|
|
"name": "帅鹏",
|
|
"server": "https://hi.shuaipeng.wang"
|
|
}
|
|
];
|
|
}
|
|
function gethtml(api,path,password) {
|
|
try{
|
|
path = path || "";
|
|
password = password || "";
|
|
let html = fetch(api, {body: {"path":path,"password":password},method:'POST'});
|
|
return html;
|
|
}catch(e){
|
|
return "";
|
|
}
|
|
}
|
|
function getlist(data,isdir) {
|
|
try{
|
|
let list = data.filter(item => {
|
|
return isdir ? item.is_dir : /\.mp4|\.avi|\.mkv|\.rmvb|\.flv|\.mov|\.wmv|\.3gp|\.mp3|\.m4a|\.wma|\.wav/.test(item.name);
|
|
})
|
|
return list;
|
|
}catch(e){
|
|
return [];
|
|
}
|
|
}
|
|
|
|
function yiji() {
|
|
let d = [];
|
|
datalist.forEach(item => {
|
|
d.push({
|
|
title: item.name,
|
|
url: $('#noLoading#').lazyRule((item) => {
|
|
storage0.putMyVar('Alistapi', item);
|
|
refreshPage(false);
|
|
return "hiker://empty";
|
|
}, item),
|
|
col_type: 'scroll_button',
|
|
})
|
|
})
|
|
if (datalist.length > 0) {
|
|
let alistapi = storage0.getMyVar('Alistapi', datalist[0]);
|
|
try{
|
|
let json = JSON.parse(gethtml(alistapi.server + "/api/fs/list", "", alistapi.password));
|
|
if(json.code==200){
|
|
let dirlist = getlist(json.data.content,1);
|
|
d = d.concat(arrayAdd(dirlist,1,alistapi));
|
|
|
|
let filelist = getlist(json.data.content,0);
|
|
d = d.concat(arrayAdd(filelist,0,alistapi));
|
|
}
|
|
}catch(e){ }
|
|
}
|
|
setResult(d);
|
|
}
|
|
|
|
function Alistlist(alistapi){
|
|
let d = [];
|
|
try{
|
|
let json = JSON.parse(gethtml(alistapi.server + "/api/fs/list", MY_PARAMS.path, alistapi.password));
|
|
if(json.code==200){
|
|
let dirlist = getlist(json.data.content,1);
|
|
d = d.concat(arrayAdd(dirlist,1,alistapi));
|
|
|
|
let filelist = getlist(json.data.content,0);
|
|
d = d.concat(arrayAdd(filelist,0,alistapi));
|
|
}
|
|
}catch(e){ }
|
|
setResult(d);
|
|
}
|
|
|
|
function arrayAdd(list,isdir,alistapi){
|
|
let d = [];
|
|
if(isdir){
|
|
list.forEach(item => {
|
|
d.push({
|
|
title: item.name,
|
|
img: item.thumb || config.依赖.match(/http(s)?:\/\/.*\//)[0] + "img/文件夹.svg",
|
|
url: $("hiker://empty#noRecordHistory##noHistory#").rule((api) => {
|
|
require(config.依赖.match(/http(s)?:\/\/.*\//)[0] + 'SrcJyAlist.js');
|
|
Alistlist(api);
|
|
},alistapi),
|
|
col_type: 'avatar',
|
|
extra: {
|
|
path: (MY_PARAMS.path||"") + "/" + item.name
|
|
}
|
|
})
|
|
})
|
|
}else{
|
|
list.forEach(item => {
|
|
d.push({
|
|
title: item.name,
|
|
img: item.thumb || "https://cdn.jsdelivr.net/gh/alist-org/logo@main/logo.svg@Referer=",
|
|
url: $().lazyRule((apiurl,path,password) => {
|
|
require(config.依赖.match(/http(s)?:\/\/.*\//)[0] + 'SrcJyAlist.js');
|
|
let json = JSON.parse(gethtml(apiurl, path, password));
|
|
if(json.code==200&&json.data.raw_url){
|
|
return json.data.raw_url + (/\.mp3|\.m4a|\.wav/.test(json.data.raw_url)?"#isMusic=true#":"#isVideo=true#");
|
|
}
|
|
return "toast://播放失败了,应为网盘token失效";
|
|
}, alistapi.server + "/api/fs/get", (MY_PARAMS.path||"") + "/" + item.name, alistapi.password),
|
|
col_type: 'avatar',
|
|
})
|
|
})
|
|
}
|
|
return d;
|
|
} |