2018-08-16 09:25:20 -04:00
|
|
|
import { makeDeleteRequest, makeGetRequest, makePostBodyRequest } from '../'
|
|
|
|
|
|
|
|
function addUserSubscription (url: string, token: string, targetUri: string, statusCodeExpected = 204) {
|
|
|
|
const path = '/api/v1/users/me/subscriptions'
|
|
|
|
|
|
|
|
return makePostBodyRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
statusCodeExpected,
|
|
|
|
fields: { uri: targetUri }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function listUserSubscriptions (url: string, token: string, sort = '-createdAt', statusCodeExpected = 200) {
|
|
|
|
const path = '/api/v1/users/me/subscriptions'
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
statusCodeExpected,
|
|
|
|
query: { sort }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function listUserSubscriptionVideos (url: string, token: string, sort = '-createdAt', statusCodeExpected = 200) {
|
|
|
|
const path = '/api/v1/users/me/subscriptions/videos'
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
statusCodeExpected,
|
|
|
|
query: { sort }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
function getUserSubscription (url: string, token: string, uri: string, statusCodeExpected = 200) {
|
|
|
|
const path = '/api/v1/users/me/subscriptions/' + uri
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
function removeUserSubscription (url: string, token: string, uri: string, statusCodeExpected = 204) {
|
|
|
|
const path = '/api/v1/users/me/subscriptions/' + uri
|
|
|
|
|
|
|
|
return makeDeleteRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-23 11:58:39 -04:00
|
|
|
function areSubscriptionsExist (url: string, token: string, uris: string[], statusCodeExpected = 200) {
|
|
|
|
const path = '/api/v1/users/me/subscriptions/exist'
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
query: { 'uris[]': uris },
|
|
|
|
token,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-08-23 11:58:39 -04:00
|
|
|
areSubscriptionsExist,
|
2018-08-16 09:25:20 -04:00
|
|
|
addUserSubscription,
|
|
|
|
listUserSubscriptions,
|
2018-08-21 04:34:18 -04:00
|
|
|
getUserSubscription,
|
2018-08-16 09:25:20 -04:00
|
|
|
listUserSubscriptionVideos,
|
|
|
|
removeUserSubscription
|
|
|
|
}
|