aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/utils/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-12-17 15:52:38 +0100
committerChocobozzz <me@florianbigard.com>2018-12-18 11:35:50 +0100
commit8b9a525a180cc9f3a98c334cc052dcfc8f36dcd4 (patch)
tree5e3392af5592d1401ada86d21f93bb7ad9da8ab1 /shared/utils/videos
parent583cd0d2129dc855e599f981d70e537feade1632 (diff)
downloadPeerTube-8b9a525a180cc9f3a98c334cc052dcfc8f36dcd4.tar.gz
PeerTube-8b9a525a180cc9f3a98c334cc052dcfc8f36dcd4.tar.zst
PeerTube-8b9a525a180cc9f3a98c334cc052dcfc8f36dcd4.zip
Add history on server side
Add ability to disable, clear and list user videos history
Diffstat (limited to 'shared/utils/videos')
-rw-r--r--shared/utils/videos/video-history.ts33
1 files changed, 29 insertions, 4 deletions
diff --git a/shared/utils/videos/video-history.ts b/shared/utils/videos/video-history.ts
index 7635478f7..dc7095b4d 100644
--- a/shared/utils/videos/video-history.ts
+++ b/shared/utils/videos/video-history.ts
@@ -1,14 +1,39 @@
1import { makePutBodyRequest } from '../requests/requests' 1import { makeGetRequest, makePostBodyRequest, makePutBodyRequest } from '../requests/requests'
2 2
3function userWatchVideo (url: string, token: string, videoId: number | string, currentTime: number) { 3function userWatchVideo (url: string, token: string, videoId: number | string, currentTime: number, statusCodeExpected = 204) {
4 const path = '/api/v1/videos/' + videoId + '/watching' 4 const path = '/api/v1/videos/' + videoId + '/watching'
5 const fields = { currentTime } 5 const fields = { currentTime }
6 6
7 return makePutBodyRequest({ url, path, token, fields, statusCodeExpected: 204 }) 7 return makePutBodyRequest({ url, path, token, fields, statusCodeExpected })
8}
9
10function listMyVideosHistory (url: string, token: string) {
11 const path = '/api/v1/users/me/history/videos'
12
13 return makeGetRequest({
14 url,
15 path,
16 token,
17 statusCodeExpected: 200
18 })
19}
20
21function removeMyVideosHistory (url: string, token: string, beforeDate?: string) {
22 const path = '/api/v1/users/me/history/videos/remove'
23
24 return makePostBodyRequest({
25 url,
26 path,
27 token,
28 fields: beforeDate ? { beforeDate } : {},
29 statusCodeExpected: 204
30 })
8} 31}
9 32
10// --------------------------------------------------------------------------- 33// ---------------------------------------------------------------------------
11 34
12export { 35export {
13 userWatchVideo 36 userWatchVideo,
37 listMyVideosHistory,
38 removeMyVideosHistory
14} 39}