ptSend/util/sql/video.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-07-12 16:21:57 +08:00
const { run, getAll } = require("./base");
2023-07-12 20:41:05 +08:00
const dayjs = require("dayjs");
2023-07-12 16:21:57 +08:00
2023-07-12 20:41:05 +08:00
async function addSub(info){
2023-07-12 16:21:57 +08:00
2023-07-12 20:41:05 +08:00
let selSql = `select * from VideoInfo where sid='${info.sid}' and season=${info.season}`
let list = await getAll(selSql)
if(list.length != 0){
return "订阅已存在"
}
2023-07-23 01:03:29 +08:00
let sql = `insert into VideoInfo(name,rename,skip,desc,url,subtitle,img,year,time,subTime,enable,season,sid,count,imdb) values(?,?,?,?,?,?,?,?,?,${new Date().getTime()},1,?,?,?,?)`
await run(sql,info.name,info.rename,info.skip,info.desc,info.url,info.subtitle,info.img,info.year,info.time,info.season,info.sid,info.count,info.imdb)
2023-07-13 09:44:47 +08:00
}
2023-07-22 15:56:26 +08:00
// 获取所有订阅 (不包括已完成)
2023-07-13 09:44:47 +08:00
async function getSub(){
2023-07-22 15:56:26 +08:00
let sql = `select * from VideoInfo where enable=1`
2023-07-13 09:44:47 +08:00
let list = await getAll(sql)
return list
2023-07-12 20:41:05 +08:00
}
2023-07-22 15:56:26 +08:00
2023-07-13 10:05:32 +08:00
async function delSub(id){
let sql = `delete from VideoInfo where id=${id}`
await run(sql)
}
2023-07-22 15:56:26 +08:00
async function updateSkip(num,id){
let sql = `update VideoInfo set skip=${num} where id=${id}`
await run(sql)
}
2023-07-22 23:04:26 +08:00
// 通过sid获取媒体信息
async function getVideoInfo(sid){
let sql = `select * from VideoInfo where sid=?`
let info = await getAll(sql,sid)
if(info.length > 0){
return info[0]
}else{
return false
}
}
2023-07-12 20:41:05 +08:00
module.exports = {
2023-07-13 09:44:47 +08:00
addSub,
2023-07-13 10:05:32 +08:00
getSub,
2023-07-22 15:56:26 +08:00
delSub,
2023-07-22 23:04:26 +08:00
updateSkip,
getVideoInfo
2023-07-12 16:21:57 +08:00
}