2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { body, param, query } from 'express-validator'
|
2022-11-15 09:00:19 -05:00
|
|
|
import { arrayify } from '@shared/core-utils'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
|
2018-08-23 11:58:39 -04:00
|
|
|
import { areValidActorHandles, isValidActorHandle } from '../../helpers/custom-validators/activitypub/actor'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { WEBSERVER } from '../../initializers/constants'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { ActorFollowModel } from '../../models/actor/actor-follow'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { areValidationErrors } from './shared'
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2020-07-23 15:30:04 -04:00
|
|
|
const userSubscriptionListValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
query('search')
|
|
|
|
.optional()
|
|
|
|
.not().isEmpty(),
|
2020-07-23 15:30:04 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
const userSubscriptionAddValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
body('uri')
|
|
|
|
.custom(isValidActorHandle).withMessage('Should have a valid URI to follow (username@domain)'),
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-08-23 11:58:39 -04:00
|
|
|
const areSubscriptionsExistValidator = [
|
|
|
|
query('uris')
|
2022-08-17 09:44:32 -04:00
|
|
|
.customSanitizer(arrayify)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(areValidActorHandles).withMessage('Should have a valid array of URIs'),
|
2018-08-23 11:58:39 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
const userSubscriptionGetValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
param('uri')
|
|
|
|
.custom(isValidActorHandle),
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
let [ name, host ] = req.params.uri.split('@')
|
2019-04-11 05:33:44 -04:00
|
|
|
if (host === WEBSERVER.HOST) host = null
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.User
|
2022-07-26 08:46:15 -04:00
|
|
|
const subscription = await ActorFollowModel.loadByActorAndTargetNameAndHostForAPI({
|
|
|
|
actorId: user.Account.Actor.id,
|
|
|
|
targetName: name,
|
|
|
|
targetHost: host,
|
|
|
|
state: 'accepted'
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2022-11-15 09:00:19 -05:00
|
|
|
if (!subscription?.ActorFollowing.VideoChannel) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: `Subscription ${req.params.uri} not found.`
|
|
|
|
})
|
2018-08-16 09:25:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.subscription = subscription
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-08-23 11:58:39 -04:00
|
|
|
areSubscriptionsExistValidator,
|
2020-07-23 15:30:04 -04:00
|
|
|
userSubscriptionListValidator,
|
2018-08-16 09:25:20 -04:00
|
|
|
userSubscriptionAddValidator,
|
2018-08-21 04:34:18 -04:00
|
|
|
userSubscriptionGetValidator
|
2018-08-16 09:25:20 -04:00
|
|
|
}
|