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