PeerTube/server/controllers/api/accounts.ts

87 lines
2.7 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,
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'
import { isNSFWHidden } 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-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-04-24 17:05:32 +02:00
const resultList = await VideoModel.listForApi({
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
hideNSFW: isNSFWHidden(res),
withFiles: false,
accountId: account.id
})
2018-04-24 15:10:54 +02:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
}