|
|
|
@ -17,7 +17,7 @@ function hashParam(key, val) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 创建书源规则容器对象
|
|
|
|
|
// 创建源规则容器对象
|
|
|
|
|
function Container() { |
|
|
|
|
let ruleJson = {}; |
|
|
|
|
let searchJson = {}; |
|
|
|
@ -64,7 +64,7 @@ function showTab(tabName) { |
|
|
|
|
$(`.tabtitle>*[name=${tabName}]`).className += ' this'; |
|
|
|
|
hashParam('tab', tabName); |
|
|
|
|
} |
|
|
|
|
// 书源列表列表标签构造函数
|
|
|
|
|
// 源列表列表标签构造函数
|
|
|
|
|
function newRule(rule) { |
|
|
|
|
return `<label for="${rule.bookSourceUrl}"><input type="radio" name="rule" id="${rule.bookSourceUrl}"><div>${rule.bookSourceName}<br>${rule.bookSourceUrl}</div></label>`; |
|
|
|
|
} |
|
|
|
@ -99,7 +99,7 @@ function HttpPost(url, data) { |
|
|
|
|
}) |
|
|
|
|
}).then(res => res.json()).catch(err => console.error('Error:', err)); |
|
|
|
|
} |
|
|
|
|
// 将书源表单转化为书源对象
|
|
|
|
|
// 将源表单转化为源对象
|
|
|
|
|
function rule2json() { |
|
|
|
|
let RuleJSON = Container(); |
|
|
|
|
// 转换base
|
|
|
|
@ -157,7 +157,7 @@ function rule2json() { |
|
|
|
|
RuleJSON.enabledExplore = RuleJSON.enabledExplore == '' || String(RuleJSON.enabledExplore).toLocaleLowerCase().replace(/^\s*|\s*$/g, '') == 'true'; |
|
|
|
|
return RuleJSON; |
|
|
|
|
} |
|
|
|
|
// 将书源对象填充到书源表单
|
|
|
|
|
// 将源对象填充到源表单
|
|
|
|
|
function json2rule(RuleEditor) { |
|
|
|
|
let RuleJSON = Container(); |
|
|
|
|
// 转换base
|
|
|
|
@ -285,23 +285,23 @@ $('.menu').addEventListener('click', e => { |
|
|
|
|
if (okData.find(x => x.bookSourceUrl == item.bookSourceUrl)) { } |
|
|
|
|
else { $(`#RuleList #${item.bookSourceUrl}+*`).className += 'isError'; } |
|
|
|
|
}); |
|
|
|
|
failMsg = '\n推送失败的书源将用红色字体标注!'; |
|
|
|
|
failMsg = '\n推送失败的源将用红色字体标注!'; |
|
|
|
|
} |
|
|
|
|
alert(`批量推送书源到「阅读3.0APP」\n共计: ${RuleSources.length} 条\n成功: ${okData.length} 条\n失败: ${RuleSources.length - okData.length} 条${failMsg}`); |
|
|
|
|
alert(`批量推送源到「阅读3.0APP」\n共计: ${RuleSources.length} 条\n成功: ${okData.length} 条\n失败: ${RuleSources.length - okData.length} 条${failMsg}`); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
alert(`批量推送书源到「阅读3.0APP」成功!\n共计: ${RuleSources.length} 条`); |
|
|
|
|
alert(`批量推送源到「阅读3.0APP」成功!\n共计: ${RuleSources.length} 条`); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
alert(`批量推送书源失败!\nErrorMsg: ${json.errorMsg}`); |
|
|
|
|
alert(`批量推送源失败!\nErrorMsg: ${json.errorMsg}`); |
|
|
|
|
} |
|
|
|
|
}).catch(err => { alert(`批量推送书源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
}).catch(err => { alert(`批量推送源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
thisNode.setAttribute('class', ''); |
|
|
|
|
})(); |
|
|
|
|
return; |
|
|
|
|
case 'pull': |
|
|
|
|
showTab('书源列表'); |
|
|
|
|
showTab('源列表'); |
|
|
|
|
(async () => { |
|
|
|
|
await HttpGet(`/getBookSources`).then(json => { |
|
|
|
|
if (json.isSuccess) { |
|
|
|
@ -310,12 +310,12 @@ $('.menu').addEventListener('click', e => { |
|
|
|
|
RuleSources.forEach(item => { |
|
|
|
|
$('#RuleList').innerHTML += newRule(item); |
|
|
|
|
}); |
|
|
|
|
alert(`成功拉取 ${RuleSources.length} 条书源`); |
|
|
|
|
alert(`成功拉取 ${RuleSources.length} 条源`); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
alert(`批量拉取书源失败!\nErrorMsg: ${json.errorMsg}`); |
|
|
|
|
alert(`批量拉取源失败!\nErrorMsg: ${json.errorMsg}`); |
|
|
|
|
} |
|
|
|
|
}).catch(err => { alert(`批量拉取书源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
}).catch(err => { alert(`批量拉取源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
thisNode.setAttribute('class', ''); |
|
|
|
|
})(); |
|
|
|
|
return; |
|
|
|
@ -330,7 +330,7 @@ $('.menu').addEventListener('click', e => { |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 'conver': |
|
|
|
|
showTab('编辑书源'); |
|
|
|
|
showTab('编辑源'); |
|
|
|
|
$('#RuleJsonString').value = JSON.stringify(rule2json(), null, 4); |
|
|
|
|
break; |
|
|
|
|
case 'initial': |
|
|
|
@ -344,7 +344,7 @@ $('.menu').addEventListener('click', e => { |
|
|
|
|
redo() |
|
|
|
|
break; |
|
|
|
|
case 'debug': |
|
|
|
|
showTab('调试书源'); |
|
|
|
|
showTab('调试源'); |
|
|
|
|
let wsOrigin = (hashParam('domain') || location.origin).replace(/^.*?:/, 'ws:').replace(/\d+$/, (port) => (parseInt(port) + 1)); |
|
|
|
|
let DebugInfos = $('#DebugConsole'); |
|
|
|
|
function DebugPrint(msg) { DebugInfos.value += `\n${msg}`; DebugInfos.scrollTop = DebugInfos.scrollHeight; } |
|
|
|
@ -352,7 +352,7 @@ $('.menu').addEventListener('click', e => { |
|
|
|
|
HttpPost(`/saveBookSources`, saveRule).then(sResult => { |
|
|
|
|
if (sResult.isSuccess) { |
|
|
|
|
let sKey = DebugKey.value ? DebugKey.value : '我的'; |
|
|
|
|
$('#DebugConsole').value = `书源《${saveRule[0].bookSourceName}》保存成功!使用搜索关键字“${sKey}”开始调试...`; |
|
|
|
|
$('#DebugConsole').value = `源《${saveRule[0].bookSourceName}》保存成功!使用搜索关键字“${sKey}”开始调试...`; |
|
|
|
|
let ws = new WebSocket(`${wsOrigin}/sourceDebug`); |
|
|
|
|
ws.onopen = () => { |
|
|
|
|
ws.send(`{"tag":"${saveRule[0].bookSourceUrl}", "key":"${sKey}"}`); |
|
|
|
@ -378,9 +378,9 @@ $('.menu').addEventListener('click', e => { |
|
|
|
|
(async () => { |
|
|
|
|
let saveRule = [rule2json()]; |
|
|
|
|
await HttpPost(`/saveBookSources`, saveRule).then(json => { |
|
|
|
|
alert(json.isSuccess ? `书源《${saveRule[0].bookSourceName}》已成功保存到「阅读3.0APP」` : `书源《${saveRule[0].bookSourceName}》保存失败!\nErrorMsg: ${json.errorMsg}`); |
|
|
|
|
alert(json.isSuccess ? `源《${saveRule[0].bookSourceName}》已成功保存到「阅读3.0APP」` : `源《${saveRule[0].bookSourceName}》保存失败!\nErrorMsg: ${json.errorMsg}`); |
|
|
|
|
setRule(saveRule[0]); |
|
|
|
|
}).catch(err => { alert(`保存书源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
}).catch(err => { alert(`保存源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
thisNode.setAttribute('class', ''); |
|
|
|
|
})(); |
|
|
|
|
return; |
|
|
|
@ -447,7 +447,7 @@ $('.tab3>.titlebar').addEventListener('click', e => { |
|
|
|
|
let fileJson = JSON.parse(fileText); |
|
|
|
|
let newSources = []; |
|
|
|
|
newSources.push(...fileJson); |
|
|
|
|
if (window.confirm(`如何处理导入的书源?\n"确定": 覆盖当前列表(不会删除APP源)\n"取消": 插入列表尾部(自动忽略重复源)`)) { |
|
|
|
|
if (window.confirm(`如何处理导入的源?\n"确定": 覆盖当前列表(不会删除APP源)\n"取消": 插入列表尾部(自动忽略重复源)`)) { |
|
|
|
|
localStorage.setItem('BookSources', JSON.stringify(RuleSources = newSources)); |
|
|
|
|
$('#RuleList').innerHTML = '' |
|
|
|
|
RuleSources.forEach(item => { |
|
|
|
@ -462,10 +462,10 @@ $('.tab3>.titlebar').addEventListener('click', e => { |
|
|
|
|
$('#RuleList').innerHTML += newRule(item); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
alert(`成功导入 ${newSources.length} 条书源`); |
|
|
|
|
alert(`成功导入 ${newSources.length} 条源`); |
|
|
|
|
} |
|
|
|
|
catch (err) { |
|
|
|
|
alert(`导入书源文件失败!\n${err}`); |
|
|
|
|
alert(`导入源文件失败!\n${err}`); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
@ -483,13 +483,13 @@ $('.tab3>.titlebar').addEventListener('click', e => { |
|
|
|
|
case 'Delete': |
|
|
|
|
let selectRule = $('#RuleList input:checked'); |
|
|
|
|
if (!selectRule) { |
|
|
|
|
alert(`没有书源被选中!`); |
|
|
|
|
alert(`没有源被选中!`); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (confirm(`确定要删除选定书源吗?\n(同时删除APP内书源)`)) { |
|
|
|
|
if (confirm(`确定要删除选定源吗?\n(同时删除APP内源)`)) { |
|
|
|
|
let selectRuleUrl = selectRule.id; |
|
|
|
|
let deleteSources = RuleSources.filter(item => item.bookSourceUrl == selectRuleUrl); // 提取待删除的书源
|
|
|
|
|
let laveSources = RuleSources.filter(item => !(item.bookSourceUrl == selectRuleUrl)); // 提取待留下的书源
|
|
|
|
|
let deleteSources = RuleSources.filter(item => item.bookSourceUrl == selectRuleUrl); // 提取待删除的源
|
|
|
|
|
let laveSources = RuleSources.filter(item => !(item.bookSourceUrl == selectRuleUrl)); // 提取待留下的源
|
|
|
|
|
HttpPost(`/deleteBookSources`, deleteSources).then(json => { |
|
|
|
|
if (json.isSuccess) { |
|
|
|
|
let selectNode = document.getElementById(selectRuleUrl).parentNode; |
|
|
|
@ -500,13 +500,13 @@ $('.tab3>.titlebar').addEventListener('click', e => { |
|
|
|
|
todo(); |
|
|
|
|
} |
|
|
|
|
console.log(deleteSources); |
|
|
|
|
console.log(`以上书源已删除!`) |
|
|
|
|
console.log(`以上源已删除!`) |
|
|
|
|
} |
|
|
|
|
}).catch(err => { alert(`删除书源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
}).catch(err => { alert(`删除源失败,无法连接到「阅读3.0APP」!\n${err}`); }); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 'ClrAll': |
|
|
|
|
if (confirm(`确定要清空当前书源列表吗?\n(不会删除APP内书源)`)) { |
|
|
|
|
if (confirm(`确定要清空当前源列表吗?\n(不会删除APP内源)`)) { |
|
|
|
|
localStorage.setItem('BookSources', JSON.stringify(RuleSources = [])); |
|
|
|
|
$('#RuleList').innerHTML = '' |
|
|
|
|
} |
|
|
|
|