feat:支持直接搜索站点资源

This commit is contained in:
jxxghp
2024-06-02 21:10:02 +08:00
parent 18d778a1cc
commit 8f970e0008
5 changed files with 80 additions and 32 deletions
+13 -7
View File
@@ -67,18 +67,24 @@ async function handleAddDownload(_site: any = undefined, _media: any = undefined
async function addDownload(_media: MediaInfo, _torrent: TorrentInfo) {
startNProgress()
try {
const result: { [key: string]: any } = await api.post('download/', {
media_in: _media,
torrent_in: _torrent,
})
let result: { [key: string]: any }
if (result.success) {
if (_media) {
result = await api.post('download/', {
media_in: _media,
torrent_in: _torrent,
})
} else {
result = await api.post('download/add', _torrent)
}
if (result && result.success) {
// 添加下载成功
$toast.success(`${_torrent?.site_name} ${_torrent?.title} 添加下载成功!`)
$toast.success(`${_torrent?.site_name} ${_torrent?.title} 下载成功!`)
downloaded.value.push(_torrent?.enclosure || '')
} else {
// 添加下载失败
$toast.error(`${_torrent?.site_name} ${_torrent?.title} 添加下载失败!`)
$toast.error(`${_torrent?.site_name} ${_torrent?.title} 下载失败${result?.message}`)
}
} catch (error) {
console.error(error)