PeerTube/server/helpers/middlewares/accounts.ts

66 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-07-23 10:40:39 +02:00
import { Response } from 'express'
2021-05-11 11:15:29 +02:00
import { UserModel } from '@server/models/user/user'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
2020-12-08 14:30:29 +01:00
import { AccountModel } from '../../models/account/account'
import { MAccountDefault } from '../../types/models'
2019-07-23 10:40:39 +02:00
2020-07-07 10:57:04 +02:00
function doesAccountIdExist (id: number | string, res: Response, sendNotFound = true) {
const promise = AccountModel.load(parseInt(id + '', 10))
2019-07-23 10:40:39 +02: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 11:53:26 +02:00
const promise = AccountModel.loadByNameWithHost(nameWithDomain)
return doesAccountExist(promise, res, sendNotFound)
2019-07-23 10:40:39 +02:00
}
2020-12-08 14:30:29 +01:00
async function doesAccountExist (p: Promise<MAccountDefault>, res: Response, sendNotFound: boolean) {
2019-07-23 10:40:39 +02:00
const account = await p
if (!account) {
if (sendNotFound === true) {
res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Account not found'
})
2019-07-23 10:40:39 +02:00
}
return false
}
res.locals.account = account
return true
}
2020-11-25 11:04:18 +01:00
async function doesUserFeedTokenCorrespond (id: number, token: string, res: Response) {
2020-11-09 16:25:27 +01:00
const user = await UserModel.loadByIdWithChannels(parseInt(id + '', 10))
if (token !== user.feedToken) {
res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'User and token mismatch'
})
return false
}
res.locals.user = user
return true
}
2019-07-23 10:40:39 +02:00
// ---------------------------------------------------------------------------
export {
doesAccountIdExist,
doesLocalAccountNameExist,
doesAccountNameWithHostExist,
doesAccountExist,
doesUserFeedTokenCorrespond
2019-07-23 10:40:39 +02:00
}