ktvmanager/lib/checker.js

207 lines
7.6 KiB
JavaScript
Raw Normal View History

2021-02-13 13:14:15 +00:00
2021-03-26 12:42:13 +00:00
const { getStreamsNew } = require('../routes/getStreams')
const { updateStreamData } = require('./updateStreams')
2021-02-13 13:14:15 +00:00
const { gotRequest } = require('./gotRequest')
2021-03-26 12:42:13 +00:00
const { decryptPassword } = require('./password')
2021-09-14 13:05:07 +00:00
const { getAllUserAccounts, getUserAccountsCheck } = require('./getUser')
const { setExpired } = require('./setExpired')
const { removeAccountFromDB } = require('../lib/Accounts')
2021-03-26 12:42:13 +00:00
2021-02-13 13:14:15 +00:00
const delay = ms => new Promise(res => setTimeout(res, ms));
2021-09-20 10:57:49 +00:00
2021-03-26 12:42:13 +00:00
async function buildURL(streamURL, username, password) {
let url = streamURL + "/player_api.php?username=" + username + "&password=" + password
return url
}
2021-02-13 13:14:15 +00:00
2021-03-26 12:42:13 +00:00
async function newCheck() {
streamURLS = await getStreamsNew()
let userAccounts = await getAllUserAccounts()
2021-09-20 10:57:49 +00:00
userAccounts = userAccounts.map(async user => {
2021-03-26 12:42:13 +00:00
user.passwordDecryped = decryptPassword(user.password)
return user
})
for (let userAccount of userAccounts) {
2021-09-14 13:05:07 +00:00
if (userAccount.expiaryDate != 123 && Math.round(Date.now() / 1000) > userAccount.expiaryDate) {
setExpired(userAccount)
} else {
for (let streamURL of streamURLS) {
process.stdout.write('.')
let url = await buildURL(streamURL, userAccount.username, userAccount.passwordDecryped)
let t = await gotRequest(url)
let body = t.body
if (t.statusCode == 200 && body !== "") {
try {
body = JSON.parse(body)
if (body.user_info.auth) {
var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString(undefined, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })
// process.stdout.write('\n')
console.log(`${userAccount.username} - ${userAccount.stream} - ${streamURL} - Expires ${date}.`)
await updateStreamData(userAccount, streamURL, body.user_info.exp_date)
break
}
} catch (error) {
}
}
}
}
}
}
2021-09-20 10:57:49 +00:00
async function test(userAccount, streamURLS) {
streamURLS.forEach(async streamURL => {
process.stdout.write('.')
let url = await buildURL(streamURL, userAccount.username, userAccount.passwordDecryped)
// console.log('tested url ' + url)
let t = await gotRequest(url)
let body = t.body
if (t.statusCode == 200 && body !== "") {
try {
body = JSON.parse(body)
if (body.user_info.auth) {
var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString(undefined, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })
// process.stdout.write('\n')
console.log(`${userAccount.username} - ${userAccount.stream} - ${streamURL} - Expires ${date}.`)
await updateStreamData(userAccount, streamURL, body.user_info.exp_date)
return true
}
} catch (error) {
// break
}
} else {
return false
}
})
}
2021-09-14 13:05:07 +00:00
2021-09-20 16:03:43 +00:00
async function updateAccountDNS(userAccount, streamURLS) {
// return new Promise(async (resolve, reject) => {
await Promise.all(streamURLS.map(async (streamURL) => {
process.stdout.write('.')
let url = await buildURL(streamURL, userAccount.username, userAccount.passwordDecryped)
// console.log('tested url ' + url)
let t = await gotRequest(url)
let body = t.body
if (t.statusCode == 200 && body !== "") {
try {
body = JSON.parse(body)
if (body.user_info.auth) {
var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString(undefined, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })
// process.stdout.write('\n')
console.log(`${userAccount.username} - ${userAccount.stream} - ${streamURL} - Expires ${date}.`)
await updateStreamData(userAccount, streamURL, body.user_info.exp_date)
resolve(true)
2021-09-20 10:57:49 +00:00
}
2021-09-20 16:03:43 +00:00
} catch (error) {
2021-09-20 10:57:49 +00:00
}
2021-09-20 16:03:43 +00:00
} else {
}
}));
2021-09-20 10:57:49 +00:00
}
2021-09-14 13:05:07 +00:00
2021-09-20 10:57:49 +00:00
async function updateAccounts(userAccount, streamURLS) {
return new Promise(async (resolve, reject) => {
await streamURLS.forEach(async streamURL => {
process.stdout.write('.')
let url = await buildURL(streamURL, userAccount.username, userAccount.passwordDecryped)
console.log('tested url ' + url)
let t = await gotRequest(url)
let body = t.body
if (t.statusCode == 200 && body !== "") {
try {
body = JSON.parse(body)
if (body.user_info.auth) {
var date = new Date(body.user_info.exp_date * 1000).toLocaleDateString(undefined, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })
// process.stdout.write('\n')
console.log(`${userAccount.username} - ${userAccount.stream} - ${streamURL} - Expires ${date}.`)
await updateStreamData(userAccount, streamURL, body.user_info.exp_date)
resolve(true)
}
} catch (error) {
}
} else {
}
})
reject(userAccount)
})
}
2021-09-14 13:05:07 +00:00
2021-09-20 16:19:16 +00:00
async function userCheck(accountData) {
2021-09-20 10:57:49 +00:00
console.log(Date.now())
2021-09-14 13:05:07 +00:00
streamURLS = await getStreamsNew()
let userAccounts = await getUserAccountsCheck(accountData.userId)
2021-09-20 10:57:49 +00:00
2021-09-14 13:05:07 +00:00
userAccounts = userAccounts.map(user => {
2021-09-20 10:57:49 +00:00
user.userId = accountData.userId
2021-09-14 13:05:07 +00:00
user.passwordDecryped = decryptPassword(user.password)
return user
})
2021-09-20 16:03:43 +00:00
// try {
for (let i = 0; i < userAccounts.length; ++i) {
const userAccount = userAccounts[i];
if (userAccount.expiaryDate != 123 && Math.round(Date.now() / 1000) > userAccount.expiaryDate) {
setExpired(userAccount)
} else {
await updateAccountDNS(userAccount, streamURLS)
// console.log(a)
2021-09-14 13:05:07 +00:00
}
}
2021-09-20 16:03:43 +00:00
console.log(Date.now())
return true
// } catch (error) {
// return true
// console.error(error);
// }
2021-09-14 13:05:07 +00:00
}
2021-09-20 16:19:16 +00:00
async function singleCheck(accountData) {
2021-09-14 13:05:07 +00:00
streamURLS = await getStreamsNew()
let userAccounts = await getUserAccountsCheck(accountData.userId)
userAccounts = userAccounts.map(user => {
2021-09-20 10:57:49 +00:00
user.userId = accountData.userId
2021-09-14 13:05:07 +00:00
user.passwordDecryped = decryptPassword(user.password)
return user
})
2021-09-20 10:57:49 +00:00
userAccounts = userAccounts.filter(obj => {
2021-09-14 13:05:07 +00:00
return obj.username === accountData.username && obj.passwordDecryped === accountData.password && obj.stream === accountData.stream
})
2021-09-20 10:57:49 +00:00
try {
for (let i = 0; i < userAccounts.length; ++i) {
const userAccount = userAccounts[i];
if (userAccount.expiaryDate != 123 && Math.round(Date.now() / 1000) > userAccount.expiaryDate) {
setExpired(userAccount)
} else {
await updateAccounts(userAccount, streamURLS)
2021-03-26 12:42:13 +00:00
}
}
2021-09-20 10:57:49 +00:00
console.log(Date.now())
return true
} catch (userAccount) {
console.log('notfoundincatch')
// console.error(error);
removeAccountFromDB({
"user": userAccount.username,
"stream": userAccount.stream,
"userId": accountData.userId
})
2021-03-26 12:42:13 +00:00
}
}
2021-02-13 13:14:15 +00:00
module.exports = {
2021-03-26 12:42:13 +00:00
newCheck,
2021-09-20 16:19:16 +00:00
newSingleCheck: singleCheck,
newUserCheck: userCheck
2021-02-13 13:14:15 +00:00
}