2019-01-14 10:44:59 +01:00
|
|
|
import 'multer'
|
2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2021-12-06 16:53:00 +01:00
|
|
|
import { handlesToNameAndHost } from '@server/helpers/actors'
|
2021-07-29 11:54:38 +02:00
|
|
|
import { pickCommonVideoQuery } from '@server/helpers/query'
|
2021-04-06 17:01:35 +02:00
|
|
|
import { sendUndoFollow } from '@server/lib/activitypub/send'
|
2021-10-27 14:37:04 +02:00
|
|
|
import { guessAdditionalAttributesFromQuery } from '@server/models/video/formatter/video-format-utils'
|
2021-04-06 17:01:35 +02:00
|
|
|
import { VideoChannelModel } from '@server/models/video/video-channel'
|
2021-07-16 10:42:24 +02:00
|
|
|
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { buildNSFWFilter, getCountVideos } from '../../../helpers/express-utils'
|
2019-01-14 10:44:59 +01:00
|
|
|
import { getFormattedObjects } from '../../../helpers/utils'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
|
|
|
import { JobQueue } from '../../../lib/job-queue'
|
2019-01-14 10:44:59 +01:00
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
asyncRetryTransactionMiddleware,
|
|
|
|
authenticate,
|
|
|
|
commonVideosFiltersValidator,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
|
|
|
setDefaultSort,
|
2020-08-20 09:19:21 +02:00
|
|
|
setDefaultVideosSort,
|
2019-01-14 10:44:59 +01:00
|
|
|
userSubscriptionAddValidator,
|
|
|
|
userSubscriptionGetValidator
|
|
|
|
} from '../../../middlewares'
|
2020-07-24 12:05:36 +02:00
|
|
|
import {
|
|
|
|
areSubscriptionsExistValidator,
|
2020-08-20 09:19:21 +02:00
|
|
|
userSubscriptionListValidator,
|
2020-07-24 12:05:36 +02:00
|
|
|
userSubscriptionsSortValidator,
|
2020-08-20 09:19:21 +02:00
|
|
|
videosSortValidator
|
2020-07-24 12:05:36 +02:00
|
|
|
} from '../../../middlewares/validators'
|
2021-05-11 11:15:29 +02:00
|
|
|
import { ActorFollowModel } from '../../../models/actor/actor-follow'
|
2020-08-20 09:19:21 +02:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
2023-02-24 16:21:26 +01:00
|
|
|
import { Hooks } from '@server/lib/plugins/hooks'
|
2019-01-14 10:44:59 +01:00
|
|
|
|
|
|
|
const mySubscriptionsRouter = express.Router()
|
|
|
|
|
|
|
|
mySubscriptionsRouter.get('/me/subscriptions/videos',
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
2020-08-20 09:19:21 +02:00
|
|
|
setDefaultVideosSort,
|
2019-01-14 10:44:59 +01:00
|
|
|
setDefaultPagination,
|
|
|
|
commonVideosFiltersValidator,
|
|
|
|
asyncMiddleware(getUserSubscriptionVideos)
|
|
|
|
)
|
|
|
|
|
|
|
|
mySubscriptionsRouter.get('/me/subscriptions/exist',
|
|
|
|
authenticate,
|
|
|
|
areSubscriptionsExistValidator,
|
|
|
|
asyncMiddleware(areSubscriptionsExist)
|
|
|
|
)
|
|
|
|
|
|
|
|
mySubscriptionsRouter.get('/me/subscriptions',
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
userSubscriptionsSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
2020-07-23 21:30:04 +02:00
|
|
|
userSubscriptionListValidator,
|
2019-01-14 10:44:59 +01:00
|
|
|
asyncMiddleware(getUserSubscriptions)
|
|
|
|
)
|
|
|
|
|
|
|
|
mySubscriptionsRouter.post('/me/subscriptions',
|
|
|
|
authenticate,
|
|
|
|
userSubscriptionAddValidator,
|
2020-01-31 16:56:52 +01:00
|
|
|
addUserSubscription
|
2019-01-14 10:44:59 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
mySubscriptionsRouter.get('/me/subscriptions/:uri',
|
|
|
|
authenticate,
|
|
|
|
userSubscriptionGetValidator,
|
2021-04-06 17:01:35 +02:00
|
|
|
asyncMiddleware(getUserSubscription)
|
2019-01-14 10:44:59 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
mySubscriptionsRouter.delete('/me/subscriptions/:uri',
|
|
|
|
authenticate,
|
|
|
|
userSubscriptionGetValidator,
|
|
|
|
asyncRetryTransactionMiddleware(deleteUserSubscription)
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
mySubscriptionsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function areSubscriptionsExist (req: express.Request, res: express.Response) {
|
|
|
|
const uris = req.query.uris as string[]
|
2019-03-19 10:35:15 +01:00
|
|
|
const user = res.locals.oauth.token.User
|
2019-01-14 10:44:59 +01:00
|
|
|
|
2021-12-06 16:53:00 +01:00
|
|
|
const sanitizedHandles = handlesToNameAndHost(uris)
|
2019-01-14 10:44:59 +01:00
|
|
|
|
2021-12-06 16:53:00 +01:00
|
|
|
const results = await ActorFollowModel.listSubscriptionsOf(user.Account.Actor.id, sanitizedHandles)
|
2019-01-14 10:44:59 +01:00
|
|
|
|
|
|
|
const existObject: { [id: string ]: boolean } = {}
|
2021-12-06 16:53:00 +01:00
|
|
|
for (const sanitizedHandle of sanitizedHandles) {
|
2019-01-14 10:44:59 +01:00
|
|
|
const obj = results.find(r => {
|
|
|
|
const server = r.ActorFollowing.Server
|
|
|
|
|
2023-05-11 16:16:27 +02:00
|
|
|
return r.ActorFollowing.preferredUsername.toLowerCase() === sanitizedHandle.name.toLowerCase() &&
|
2019-01-14 10:44:59 +01:00
|
|
|
(
|
2021-12-06 16:53:00 +01:00
|
|
|
(!server && !sanitizedHandle.host) ||
|
|
|
|
(server.host === sanitizedHandle.host)
|
2019-01-14 10:44:59 +01:00
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-12-06 16:53:00 +01:00
|
|
|
existObject[sanitizedHandle.handle] = obj !== undefined
|
2019-01-14 10:44:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.json(existObject)
|
|
|
|
}
|
|
|
|
|
2020-01-31 16:56:52 +01:00
|
|
|
function addUserSubscription (req: express.Request, res: express.Response) {
|
2019-03-19 10:35:15 +01:00
|
|
|
const user = res.locals.oauth.token.User
|
2019-01-14 10:44:59 +01:00
|
|
|
const [ name, host ] = req.body.uri.split('@')
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
name,
|
|
|
|
host,
|
2020-04-16 16:36:43 +02:00
|
|
|
assertIsChannel: true,
|
2019-01-14 10:44:59 +01:00
|
|
|
followerActorId: user.Account.Actor.id
|
|
|
|
}
|
|
|
|
|
2022-08-08 15:48:17 +02:00
|
|
|
JobQueue.Instance.createJobAsync({ type: 'activitypub-follow', payload })
|
2019-01-14 10:44:59 +01:00
|
|
|
|
2020-12-07 14:32:36 +01:00
|
|
|
return res.status(HttpStatusCode.NO_CONTENT_204).end()
|
2019-01-14 10:44:59 +01:00
|
|
|
}
|
|
|
|
|
2021-04-06 17:01:35 +02:00
|
|
|
async function getUserSubscription (req: express.Request, res: express.Response) {
|
2019-03-19 10:35:15 +01:00
|
|
|
const subscription = res.locals.subscription
|
2021-04-06 17:01:35 +02:00
|
|
|
const videoChannel = await VideoChannelModel.loadAndPopulateAccount(subscription.ActorFollowing.VideoChannel.id)
|
2019-01-14 10:44:59 +01:00
|
|
|
|
2021-04-06 17:01:35 +02:00
|
|
|
return res.json(videoChannel.toFormattedJSON())
|
2019-01-14 10:44:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteUserSubscription (req: express.Request, res: express.Response) {
|
2019-03-19 10:35:15 +01:00
|
|
|
const subscription = res.locals.subscription
|
2019-01-14 10:44:59 +01:00
|
|
|
|
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2023-02-16 11:56:58 +01:00
|
|
|
if (subscription.state === 'accepted') {
|
|
|
|
sendUndoFollow(subscription, t)
|
|
|
|
}
|
2020-11-18 11:13:01 +01:00
|
|
|
|
2019-01-14 10:44:59 +01:00
|
|
|
return subscription.destroy({ transaction: t })
|
|
|
|
})
|
|
|
|
|
2020-12-07 14:32:36 +01:00
|
|
|
return res.type('json')
|
|
|
|
.status(HttpStatusCode.NO_CONTENT_204)
|
|
|
|
.end()
|
2019-01-14 10:44:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function getUserSubscriptions (req: express.Request, res: express.Response) {
|
2019-03-19 10:35:15 +01:00
|
|
|
const user = res.locals.oauth.token.User
|
2019-01-14 10:44:59 +01:00
|
|
|
const actorId = user.Account.Actor.id
|
|
|
|
|
2020-07-23 21:30:04 +02:00
|
|
|
const resultList = await ActorFollowModel.listSubscriptionsForApi({
|
|
|
|
actorId,
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
|
|
|
sort: req.query.sort,
|
|
|
|
search: req.query.search
|
|
|
|
})
|
2019-01-14 10:44:59 +01:00
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
2019-03-19 10:35:15 +01:00
|
|
|
async function getUserSubscriptionVideos (req: express.Request, res: express.Response) {
|
|
|
|
const user = res.locals.oauth.token.User
|
2020-01-08 14:15:16 +01:00
|
|
|
const countVideos = getCountVideos(req)
|
2021-07-29 11:54:38 +02:00
|
|
|
const query = pickCommonVideoQuery(req.query)
|
2020-01-08 14:15:16 +01:00
|
|
|
|
2023-02-24 16:21:26 +01:00
|
|
|
const apiOptions = await Hooks.wrapObject({
|
2021-07-29 11:54:38 +02:00
|
|
|
...query,
|
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
displayOnlyForFollower: {
|
|
|
|
actorId: user.Account.Actor.id,
|
|
|
|
orLocalVideos: false
|
|
|
|
},
|
2021-05-03 11:06:19 +02:00
|
|
|
nsfw: buildNSFWFilter(res, query.nsfw),
|
2020-01-08 14:15:16 +01:00
|
|
|
user,
|
|
|
|
countVideos
|
2023-02-24 16:21:26 +01:00
|
|
|
}, 'filter:api.user.me.subscription-videos.list.params')
|
|
|
|
|
|
|
|
const resultList = await Hooks.wrapPromiseFun(
|
|
|
|
VideoModel.listForApi,
|
|
|
|
apiOptions,
|
|
|
|
'filter:api.user.me.subscription-videos.list.result'
|
|
|
|
)
|
2019-01-14 10:44:59 +01:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total, guessAdditionalAttributesFromQuery(query)))
|
2019-01-14 10:44:59 +01:00
|
|
|
}
|