2018-12-17 09:52:38 -05:00
|
|
|
import * as express from 'express'
|
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
asyncRetryTransactionMiddleware,
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
2021-01-13 03:16:15 -05:00
|
|
|
userHistoryListValidator,
|
2018-12-17 09:52:38 -05:00
|
|
|
userHistoryRemoveValidator
|
|
|
|
} from '../../../middlewares'
|
|
|
|
import { getFormattedObjects } from '../../../helpers/utils'
|
|
|
|
import { UserVideoHistoryModel } from '../../../models/account/user-video-history'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2018-12-17 09:52:38 -05:00
|
|
|
|
|
|
|
const myVideosHistoryRouter = express.Router()
|
|
|
|
|
|
|
|
myVideosHistoryRouter.get('/me/history/videos',
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
2021-01-13 03:16:15 -05:00
|
|
|
userHistoryListValidator,
|
2018-12-17 09:52:38 -05:00
|
|
|
asyncMiddleware(listMyVideosHistory)
|
|
|
|
)
|
|
|
|
|
|
|
|
myVideosHistoryRouter.post('/me/history/videos/remove',
|
|
|
|
authenticate,
|
|
|
|
userHistoryRemoveValidator,
|
|
|
|
asyncRetryTransactionMiddleware(removeUserHistory)
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
myVideosHistoryRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function listMyVideosHistory (req: express.Request, res: express.Response) {
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.User
|
2018-12-17 09:52:38 -05:00
|
|
|
|
2021-01-13 03:16:15 -05:00
|
|
|
const resultList = await UserVideoHistoryModel.listForApi(user, req.query.start, req.query.count, req.query.search)
|
2018-12-17 09:52:38 -05:00
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
|
|
|
async function removeUserHistory (req: express.Request, res: express.Response) {
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.User
|
2018-12-17 09:52:38 -05:00
|
|
|
const beforeDate = req.body.beforeDate || null
|
|
|
|
|
|
|
|
await sequelizeTypescript.transaction(t => {
|
2019-04-11 09:38:53 -04:00
|
|
|
return UserVideoHistoryModel.removeUserHistoryBefore(user, beforeDate, t)
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.type('json')
|
|
|
|
.status(HttpStatusCode.NO_CONTENT_204)
|
|
|
|
.end()
|
2018-12-17 09:52:38 -05:00
|
|
|
}
|