2018-12-17 09:52:38 -05:00
|
|
|
import { makeGetRequest, makePostBodyRequest, makePutBodyRequest } from '../requests/requests'
|
2018-10-05 05:15:06 -04:00
|
|
|
|
2018-12-17 09:52:38 -05:00
|
|
|
function userWatchVideo (url: string, token: string, videoId: number | string, currentTime: number, statusCodeExpected = 204) {
|
2018-10-05 05:15:06 -04:00
|
|
|
const path = '/api/v1/videos/' + videoId + '/watching'
|
|
|
|
const fields = { currentTime }
|
|
|
|
|
2018-12-17 09:52:38 -05:00
|
|
|
return makePutBodyRequest({ url, path, token, fields, statusCodeExpected })
|
|
|
|
}
|
|
|
|
|
|
|
|
function listMyVideosHistory (url: string, token: string) {
|
|
|
|
const path = '/api/v1/users/me/history/videos'
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
statusCodeExpected: 200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeMyVideosHistory (url: string, token: string, beforeDate?: string) {
|
|
|
|
const path = '/api/v1/users/me/history/videos/remove'
|
|
|
|
|
|
|
|
return makePostBodyRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
fields: beforeDate ? { beforeDate } : {},
|
|
|
|
statusCodeExpected: 204
|
|
|
|
})
|
2018-10-05 05:15:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-12-17 09:52:38 -05:00
|
|
|
userWatchVideo,
|
|
|
|
listMyVideosHistory,
|
|
|
|
removeMyVideosHistory
|
2018-10-05 05:15:06 -04:00
|
|
|
}
|