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'
|
2021-10-19 09:44:43 +02:00
|
|
|
import { ActorFollowModel } from '@server/models/actor/actor-follow'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
2021-10-27 14:37:04 +02:00
|
|
|
import { guessAdditionalAttributesFromQuery } from '@server/models/video/formatter/video-format-utils'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { buildNSFWFilter, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
|
2020-04-23 11:36:50 +02:00
|
|
|
import { getFormattedObjects } from '../../helpers/utils'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { JobQueue } from '../../lib/job-queue'
|
2021-05-03 11:06:19 +02:00
|
|
|
import { Hooks } from '../../lib/plugins/hooks'
|
2018-04-24 17:05:32 +02:00
|
|
|
import {
|
2018-10-12 15:26:04 +02:00
|
|
|
asyncMiddleware,
|
2019-04-09 11:21:36 +02:00
|
|
|
authenticate,
|
2018-10-12 15:26:04 +02:00
|
|
|
commonVideosFiltersValidator,
|
2018-04-24 17:05:32 +02:00
|
|
|
optionalAuthenticate,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
2019-02-26 10:55:40 +01:00
|
|
|
setDefaultSort,
|
2020-08-20 09:19:21 +02:00
|
|
|
setDefaultVideosSort,
|
2019-04-09 11:02:02 +02:00
|
|
|
videoPlaylistsSortValidator,
|
2019-04-09 11:21:36 +02:00
|
|
|
videoRatesSortValidator,
|
|
|
|
videoRatingValidator
|
2018-04-24 17:05:32 +02:00
|
|
|
} from '../../middlewares'
|
2019-04-09 11:02:02 +02:00
|
|
|
import {
|
|
|
|
accountNameWithHostGetValidator,
|
2021-10-19 09:44:43 +02:00
|
|
|
accountsFollowersSortValidator,
|
2019-04-09 11:02:02 +02:00
|
|
|
accountsSortValidator,
|
2019-04-09 11:21:36 +02:00
|
|
|
ensureAuthUserOwnsAccountValidator,
|
2020-01-31 16:56:52 +01:00
|
|
|
videoChannelsSortValidator,
|
2020-08-20 09:19:21 +02:00
|
|
|
videoChannelStatsValidator,
|
|
|
|
videosSortValidator
|
2019-04-09 11:02:02 +02:00
|
|
|
} from '../../middlewares/validators'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { commonVideoPlaylistFiltersValidator, videoPlaylistsSearchValidator } from '../../middlewares/validators/videos/video-playlists'
|
2018-01-03 16:38:50 +01:00
|
|
|
import { AccountModel } from '../../models/account/account'
|
2019-04-09 11:02:02 +02:00
|
|
|
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,
|
2018-01-18 10:53:54 +01:00
|
|
|
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,
|
2020-08-20 09:19:21 +02:00
|
|
|
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),
|
2020-03-24 01:12:30 +01:00
|
|
|
videoChannelStatsValidator,
|
2019-05-29 15:09:38 +02:00
|
|
|
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,
|
2019-12-26 11:52:46 +01:00
|
|
|
videoPlaylistsSearchValidator,
|
2019-02-26 10:55:40 +01:00
|
|
|
asyncMiddleware(listAccountPlaylists)
|
2018-04-24 17:05:32 +02:00
|
|
|
)
|
|
|
|
|
2019-04-09 11:02:02 +02:00
|
|
|
accountsRouter.get('/:accountName/ratings',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(accountNameWithHostGetValidator),
|
|
|
|
ensureAuthUserOwnsAccountValidator,
|
|
|
|
paginationValidator,
|
|
|
|
videoRatesSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
videoRatingValidator,
|
|
|
|
asyncMiddleware(listAccountRatings)
|
|
|
|
)
|
|
|
|
|
2021-10-19 09:44:43 +02:00
|
|
|
accountsRouter.get('/:accountName/followers',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(accountNameWithHostGetValidator),
|
|
|
|
ensureAuthUserOwnsAccountValidator,
|
|
|
|
paginationValidator,
|
|
|
|
accountsFollowersSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
asyncMiddleware(listAccountFollowers)
|
|
|
|
)
|
|
|
|
|
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) {
|
2019-05-29 15:09:38 +02:00
|
|
|
const options = {
|
|
|
|
accountId: res.locals.account.id,
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
2020-03-24 01:12:30 +01:00
|
|
|
sort: req.query.sort,
|
2020-07-23 21:30:04 +02:00
|
|
|
withStats: req.query.withStats,
|
|
|
|
search: req.query.search
|
2019-05-29 15:09:38 +02:00
|
|
|
}
|
|
|
|
|
2021-10-19 09:44:43 +02:00
|
|
|
const resultList = await VideoChannelModel.listByAccountForAPI(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({
|
2019-12-26 11:52:46 +01:00
|
|
|
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) {
|
2021-10-27 14:37:04 +02:00
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
2019-03-19 10:35:15 +01:00
|
|
|
const account = res.locals.account
|
2021-10-27 14:37:04 +02:00
|
|
|
|
|
|
|
const displayOnlyForFollower = isUserAbleToSearchRemoteURI(res)
|
|
|
|
? null
|
|
|
|
: {
|
|
|
|
actorId: serverActor.id,
|
|
|
|
orLocalVideos: true
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-12-03 17:18:56 +01:00
|
|
|
const apiOptions = await Hooks.wrapObject({
|
2021-07-29 11:54:38 +02:00
|
|
|
...query,
|
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
displayOnlyForFollower,
|
2021-05-03 11:06:19 +02:00
|
|
|
nsfw: buildNSFWFilter(res, query.nsfw),
|
2018-10-10 11:46:50 +02:00
|
|
|
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
|
2020-12-08 10:30:33 +01:00
|
|
|
}, 'filter:api.accounts.videos.list.params')
|
2020-12-03 17:18:56 +01:00
|
|
|
|
|
|
|
const resultList = await Hooks.wrapPromiseFun(
|
|
|
|
VideoModel.listForApi,
|
|
|
|
apiOptions,
|
2020-12-08 10:30:33 +01:00
|
|
|
'filter:api.accounts.videos.list.result'
|
2020-12-03 17:18:56 +01:00
|
|
|
)
|
2018-04-24 15:10:54 +02:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total, guessAdditionalAttributesFromQuery(query)))
|
2018-04-24 15:10:54 +02:00
|
|
|
}
|
2019-04-09 11:02:02 +02:00
|
|
|
|
|
|
|
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))
|
|
|
|
}
|
2021-10-19 09:44:43 +02:00
|
|
|
|
|
|
|
async function listAccountFollowers (req: express.Request, res: express.Response) {
|
|
|
|
const account = res.locals.account
|
|
|
|
|
|
|
|
const channels = await VideoChannelModel.listAllByAccount(account.id)
|
|
|
|
const actorIds = [ account.actorId ].concat(channels.map(c => c.actorId))
|
|
|
|
|
|
|
|
const resultList = await ActorFollowModel.listFollowersForApi({
|
|
|
|
actorIds,
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
|
|
|
sort: req.query.sort,
|
|
|
|
search: req.query.search,
|
2021-10-19 15:02:43 +02:00
|
|
|
state: 'accepted'
|
2021-10-19 09:44:43 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|