2019-07-23 04:40:39 -04:00
|
|
|
import { Response } from 'express'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { AccountModel } from '@server/models/account/account'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { UserModel } from '@server/models/user/user'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { MAccountDefault } from '@server/types/models'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '@shared/models'
|
2019-07-23 04:40:39 -04:00
|
|
|
|
2020-07-07 04:57:04 -04:00
|
|
|
function doesAccountIdExist (id: number | string, res: Response, sendNotFound = true) {
|
|
|
|
const promise = AccountModel.load(parseInt(id + '', 10))
|
2019-07-23 04:40:39 -04:00
|
|
|
|
|
|
|
return doesAccountExist(promise, res, sendNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
function doesLocalAccountNameExist (name: string, res: Response, sendNotFound = true) {
|
|
|
|
const promise = AccountModel.loadLocalByName(name)
|
|
|
|
|
|
|
|
return doesAccountExist(promise, res, sendNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
function doesAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) {
|
2019-08-15 05:53:26 -04:00
|
|
|
const promise = AccountModel.loadByNameWithHost(nameWithDomain)
|
|
|
|
|
|
|
|
return doesAccountExist(promise, res, sendNotFound)
|
2019-07-23 04:40:39 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
async function doesAccountExist (p: Promise<MAccountDefault>, res: Response, sendNotFound: boolean) {
|
2019-07-23 04:40:39 -04:00
|
|
|
const account = await p
|
|
|
|
|
|
|
|
if (!account) {
|
|
|
|
if (sendNotFound === true) {
|
2021-05-31 19:36:53 -04:00
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Account not found'
|
|
|
|
})
|
2019-07-23 04:40:39 -04:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.account = account
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-11-25 05:04:18 -05:00
|
|
|
async function doesUserFeedTokenCorrespond (id: number, token: string, res: Response) {
|
2020-11-09 10:25:27 -05:00
|
|
|
const user = await UserModel.loadByIdWithChannels(parseInt(id + '', 10))
|
2020-08-13 09:07:23 -04:00
|
|
|
|
|
|
|
if (token !== user.feedToken) {
|
2021-05-31 19:36:53 -04:00
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.FORBIDDEN_403,
|
|
|
|
message: 'User and token mismatch'
|
|
|
|
})
|
2020-08-13 09:07:23 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.user = user
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-07-23 04:40:39 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
doesAccountIdExist,
|
|
|
|
doesLocalAccountNameExist,
|
|
|
|
doesAccountNameWithHostExist,
|
2020-08-13 09:07:23 -04:00
|
|
|
doesAccountExist,
|
|
|
|
doesUserFeedTokenCorrespond
|
2019-07-23 04:40:39 -04:00
|
|
|
}
|