PeerTube/server/controllers/api/accounts.ts

99 lines
3.2 KiB
TypeScript
Raw Normal View History

2018-01-03 16:38:50 +01:00
import * as express from 'express'
import { getFormattedObjects } from '../../helpers/utils'
2018-04-24 17:05:32 +02:00
import {
asyncMiddleware,
commonVideosFiltersValidator,
2018-04-24 17:05:32 +02:00
listVideoAccountChannelsValidator,
optionalAuthenticate,
paginationValidator,
setDefaultPagination,
setDefaultSort
2018-04-24 17:05:32 +02:00
} from '../../middlewares'
2018-05-25 09:57:16 +02:00
import { accountsNameWithHostGetValidator, accountsSortValidator, videosSortValidator } from '../../middlewares/validators'
2018-01-03 16:38:50 +01:00
import { AccountModel } from '../../models/account/account'
2018-04-24 15:10:54 +02:00
import { VideoModel } from '../../models/video/video'
2018-08-24 15:36:50 +02:00
import { buildNSFWFilter, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
2018-04-24 17:05:32 +02:00
import { VideoChannelModel } from '../../models/video/video-channel'
2018-01-03 16:38:50 +01:00
const accountsRouter = express.Router()
accountsRouter.get('/',
paginationValidator,
accountsSortValidator,
2018-01-17 10:50:33 +01:00
setDefaultSort,
setDefaultPagination,
2018-01-03 16:38:50 +01:00
asyncMiddleware(listAccounts)
)
2018-05-25 09:57:16 +02:00
accountsRouter.get('/:accountName',
asyncMiddleware(accountsNameWithHostGetValidator),
2018-01-03 16:38:50 +01:00
getAccount
)
2018-05-25 09:57:16 +02:00
accountsRouter.get('/:accountName/videos',
asyncMiddleware(accountsNameWithHostGetValidator),
2018-04-24 15:10:54 +02:00
paginationValidator,
videosSortValidator,
setDefaultSort,
setDefaultPagination,
optionalAuthenticate,
2018-07-20 14:35:18 +02:00
commonVideosFiltersValidator,
2018-04-24 17:05:32 +02:00
asyncMiddleware(listAccountVideos)
)
2018-05-25 09:57:16 +02:00
accountsRouter.get('/:accountName/video-channels',
2018-04-24 17:05:32 +02:00
asyncMiddleware(listVideoAccountChannelsValidator),
asyncMiddleware(listVideoAccountChannels)
)
2018-01-03 16:38:50 +01:00
// ---------------------------------------------------------------------------
export {
accountsRouter
}
// ---------------------------------------------------------------------------
function getAccount (req: express.Request, res: express.Response, next: express.NextFunction) {
2018-04-24 15:10:54 +02:00
const account: AccountModel = res.locals.account
return res.json(account.toFormattedJSON())
2018-01-03 16:38:50 +01:00
}
async function listAccounts (req: express.Request, res: express.Response, next: express.NextFunction) {
const resultList = await AccountModel.listForApi(req.query.start, req.query.count, req.query.sort)
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2018-04-24 15:10:54 +02:00
2018-04-24 17:05:32 +02:00
async function listVideoAccountChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
const resultList = await VideoChannelModel.listByAccount(res.locals.account.id)
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
async function listAccountVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
2018-04-24 15:10:54 +02:00
const account: AccountModel = res.locals.account
2018-08-24 15:36:50 +02:00
const actorId = isUserAbleToSearchRemoteURI(res) ? null : undefined
2018-04-24 15:10:54 +02:00
2018-04-24 17:05:32 +02:00
const resultList = await VideoModel.listForApi({
2018-08-24 15:36:50 +02:00
actorId,
2018-04-24 17:05:32 +02:00
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
2018-08-17 15:45:42 +02:00
includeLocalVideos: true,
2018-07-20 14:35:18 +02:00
categoryOneOf: req.query.categoryOneOf,
licenceOneOf: req.query.licenceOneOf,
languageOneOf: req.query.languageOneOf,
tagsOneOf: req.query.tagsOneOf,
tagsAllOf: req.query.tagsAllOf,
filter: req.query.filter,
2018-07-20 14:35:18 +02:00
nsfw: buildNSFWFilter(res, req.query.nsfw),
2018-04-24 17:05:32 +02:00
withFiles: false,
accountId: account.id,
user: res.locals.oauth ? res.locals.oauth.token.User : undefined
2018-04-24 17:05:32 +02:00
})
2018-04-24 15:10:54 +02:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
}