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