PeerTube/shared/server-commands/videos/history-command.ts

74 lines
1.7 KiB
TypeScript
Raw Normal View History

2021-07-16 12:27:30 +00:00
import { HttpStatusCode, ResultList, Video } from '@shared/models'
2021-07-08 14:21:42 +00:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class HistoryCommand extends AbstractCommand {
2022-01-18 10:23:41 +00:00
watchVideo (options: OverrideCommandOptions & {
2021-07-08 14:21:42 +00:00
videoId: number | string
currentTime: number
}) {
const { videoId, currentTime } = options
const path = '/api/v1/videos/' + videoId + '/watching'
const fields = { currentTime }
return this.putBodyRequest({
...options,
path,
fields,
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
list (options: OverrideCommandOptions & {
search?: string
} = {}) {
const { search } = options
const path = '/api/v1/users/me/history/videos'
return this.getRequestBody<ResultList<Video>>({
...options,
path,
query: {
search
},
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
2022-01-18 10:23:41 +00:00
removeElement (options: OverrideCommandOptions & {
videoId: number
}) {
const { videoId } = options
const path = '/api/v1/users/me/history/videos/' + videoId
return this.deleteRequest({
...options,
path,
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
removeAll (options: OverrideCommandOptions & {
2021-07-08 14:21:42 +00:00
beforeDate?: string
} = {}) {
const { beforeDate } = options
const path = '/api/v1/users/me/history/videos/remove'
return this.postBodyRequest({
...options,
path,
fields: { beforeDate },
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
}