PeerTube/server/controllers/api/accounts.ts

198 lines
6.0 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2021-07-29 11:54:38 +02:00
import { pickCommonVideoQuery } from '@server/helpers/query'
import { getServerActor } from '@server/models/application/application'
import { buildNSFWFilter, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
import { getFormattedObjects } from '../../helpers/utils'
import { JobQueue } from '../../lib/job-queue'
import { Hooks } from '../../lib/plugins/hooks'
2018-04-24 17:05:32 +02:00
import {
asyncMiddleware,
2019-04-09 11:21:36 +02:00
authenticate,
commonVideosFiltersValidator,
2018-04-24 17:05:32 +02:00
optionalAuthenticate,
paginationValidator,
setDefaultPagination,
2019-02-26 10:55:40 +01:00
setDefaultSort,
setDefaultVideosSort,
videoPlaylistsSortValidator,
2019-04-09 11:21:36 +02:00
videoRatesSortValidator,
videoRatingValidator
2018-04-24 17:05:32 +02:00
} from '../../middlewares'
import {
accountNameWithHostGetValidator,
accountsSortValidator,
2019-04-09 11:21:36 +02:00
ensureAuthUserOwnsAccountValidator,
2020-01-31 16:56:52 +01:00
videoChannelsSortValidator,
videoChannelStatsValidator,
videosSortValidator
} from '../../middlewares/validators'
import { commonVideoPlaylistFiltersValidator, videoPlaylistsSearchValidator } from '../../middlewares/validators/videos/video-playlists'
2018-01-03 16:38:50 +01:00
import { AccountModel } from '../../models/account/account'
import { AccountVideoRateModel } from '../../models/account/account-video-rate'
2018-04-24 15:10:54 +02:00
import { VideoModel } from '../../models/video/video'
2018-04-24 17:05:32 +02:00
import { VideoChannelModel } from '../../models/video/video-channel'
2019-02-26 10:55:40 +01:00
import { VideoPlaylistModel } from '../../models/video/video-playlist'
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',
2019-02-26 10:55:40 +01:00
asyncMiddleware(accountNameWithHostGetValidator),
2018-01-03 16:38:50 +01:00
getAccount
)
2018-05-25 09:57:16 +02:00
accountsRouter.get('/:accountName/videos',
2019-02-26 10:55:40 +01:00
asyncMiddleware(accountNameWithHostGetValidator),
2018-04-24 15:10:54 +02:00
paginationValidator,
videosSortValidator,
setDefaultVideosSort,
2018-04-24 15:10:54 +02:00
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',
2019-02-26 10:55:40 +01:00
asyncMiddleware(accountNameWithHostGetValidator),
videoChannelStatsValidator,
paginationValidator,
videoChannelsSortValidator,
setDefaultSort,
setDefaultPagination,
2019-02-26 10:55:40 +01:00
asyncMiddleware(listAccountChannels)
)
accountsRouter.get('/:accountName/video-playlists',
optionalAuthenticate,
asyncMiddleware(accountNameWithHostGetValidator),
paginationValidator,
videoPlaylistsSortValidator,
setDefaultSort,
setDefaultPagination,
2019-03-05 10:58:44 +01:00
commonVideoPlaylistFiltersValidator,
videoPlaylistsSearchValidator,
2019-02-26 10:55:40 +01:00
asyncMiddleware(listAccountPlaylists)
2018-04-24 17:05:32 +02:00
)
accountsRouter.get('/:accountName/ratings',
authenticate,
asyncMiddleware(accountNameWithHostGetValidator),
ensureAuthUserOwnsAccountValidator,
paginationValidator,
videoRatesSortValidator,
setDefaultSort,
setDefaultPagination,
videoRatingValidator,
asyncMiddleware(listAccountRatings)
)
2018-01-03 16:38:50 +01:00
// ---------------------------------------------------------------------------
export {
accountsRouter
}
// ---------------------------------------------------------------------------
2019-02-26 10:55:40 +01:00
function getAccount (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const account = res.locals.account
2018-04-24 15:10:54 +02:00
2019-01-14 11:30:15 +01:00
if (account.isOutdated()) {
JobQueue.Instance.createJob({ type: 'activitypub-refresher', payload: { type: 'actor', url: account.Actor.url } })
}
2018-04-24 15:10:54 +02:00
return res.json(account.toFormattedJSON())
2018-01-03 16:38:50 +01:00
}
2019-02-26 10:55:40 +01:00
async function listAccounts (req: express.Request, res: express.Response) {
2018-01-03 16:38:50 +01:00
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
2019-02-26 10:55:40 +01:00
async function listAccountChannels (req: express.Request, res: express.Response) {
const options = {
accountId: res.locals.account.id,
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
2020-07-23 21:30:04 +02:00
withStats: req.query.withStats,
search: req.query.search
}
const resultList = await VideoChannelModel.listByAccount(options)
2018-04-24 17:05:32 +02:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2019-02-26 10:55:40 +01:00
async function listAccountPlaylists (req: express.Request, res: express.Response) {
const serverActor = await getServerActor()
// Allow users to see their private/unlisted video playlists
2020-01-09 09:26:59 +01:00
let listMyPlaylists = false
2019-03-19 10:35:15 +01:00
if (res.locals.oauth && res.locals.oauth.token.User.Account.id === res.locals.account.id) {
2020-01-09 09:26:59 +01:00
listMyPlaylists = true
2019-02-26 10:55:40 +01:00
}
const resultList = await VideoPlaylistModel.listForApi({
search: req.query.search,
2019-02-26 10:55:40 +01:00
followerActorId: serverActor.id,
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
accountId: res.locals.account.id,
2020-01-09 09:26:59 +01:00
listMyPlaylists,
2019-03-05 10:58:44 +01:00
type: req.query.playlistType
2019-02-26 10:55:40 +01:00
})
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
async function listAccountVideos (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const account = res.locals.account
2018-12-05 14:36:05 +01:00
const followerActorId = isUserAbleToSearchRemoteURI(res) ? null : undefined
2020-01-08 14:15:16 +01:00
const countVideos = getCountVideos(req)
2021-07-29 11:54:38 +02:00
const query = pickCommonVideoQuery(req.query)
2018-04-24 15:10:54 +02:00
const apiOptions = await Hooks.wrapObject({
2021-07-29 11:54:38 +02:00
...query,
2018-12-05 14:36:05 +01:00
followerActorId,
2021-07-29 11:54:38 +02:00
search: req.query.search,
2018-08-17 15:45:42 +02:00
includeLocalVideos: true,
nsfw: buildNSFWFilter(res, query.nsfw),
2018-04-24 17:05:32 +02:00
withFiles: false,
accountId: account.id,
2020-01-08 14:15:16 +01:00
user: res.locals.oauth ? res.locals.oauth.token.User : undefined,
2021-07-29 11:54:38 +02:00
countVideos
}, 'filter:api.accounts.videos.list.params')
const resultList = await Hooks.wrapPromiseFun(
VideoModel.listForApi,
apiOptions,
'filter:api.accounts.videos.list.result'
)
2018-04-24 15:10:54 +02:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
async function listAccountRatings (req: express.Request, res: express.Response) {
const account = res.locals.account
const resultList = await AccountVideoRateModel.listByAccountForApi({
accountId: account.id,
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
type: req.query.rating
})
return res.json(getFormattedObjects(resultList.rows, resultList.count))
}