PeerTube/server/helpers/custom-validators/activitypub/actor.ts

145 lines
4.6 KiB
TypeScript
Raw Normal View History

2020-01-07 14:56:07 +01:00
import validator from 'validator'
import { CONSTRAINTS_FIELDS } from '../../../initializers/constants'
2018-08-23 17:58:39 +02:00
import { exists, isArray } from '../misc'
2017-12-14 17:38:41 +01:00
import { isActivityPubUrlValid, isBaseActivityValid, setValidAttributedTo } from './misc'
import { isHostValid } from '../servers'
import { peertubeTruncate } from '@server/helpers/core-utils'
2017-12-14 11:18:49 +01:00
function isActorEndpointsObjectValid (endpointObject: any) {
2020-01-31 16:56:52 +01:00
if (endpointObject?.sharedInbox) {
return isActivityPubUrlValid(endpointObject.sharedInbox)
}
// Shared inbox is optional
return true
2017-12-14 11:18:49 +01:00
}
function isActorPublicKeyObjectValid (publicKeyObject: any) {
return isActivityPubUrlValid(publicKeyObject.id) &&
isActivityPubUrlValid(publicKeyObject.owner) &&
isActorPublicKeyValid(publicKeyObject.publicKeyPem)
}
function isActorTypeValid (type: string) {
return type === 'Person' || type === 'Application' || type === 'Group' || type === 'Service' || type === 'Organization'
2017-12-14 11:18:49 +01:00
}
function isActorPublicKeyValid (publicKey: string) {
return exists(publicKey) &&
typeof publicKey === 'string' &&
publicKey.startsWith('-----BEGIN PUBLIC KEY-----') &&
2020-02-28 16:03:39 +01:00
publicKey.includes('-----END PUBLIC KEY-----') &&
2018-01-03 11:10:40 +01:00
validator.isLength(publicKey, CONSTRAINTS_FIELDS.ACTORS.PUBLIC_KEY)
2017-12-14 11:18:49 +01:00
}
2019-08-30 09:40:21 +02:00
const actorNameAlphabet = '[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\\-_.:]'
const actorNameRegExp = new RegExp(`^${actorNameAlphabet}+$`)
2017-12-14 11:18:49 +01:00
function isActorPreferredUsernameValid (preferredUsername: string) {
2017-12-19 10:34:56 +01:00
return exists(preferredUsername) && validator.matches(preferredUsername, actorNameRegExp)
2017-12-14 17:38:41 +01:00
}
2017-12-14 11:18:49 +01:00
function isActorPrivateKeyValid (privateKey: string) {
return exists(privateKey) &&
typeof privateKey === 'string' &&
privateKey.startsWith('-----BEGIN RSA PRIVATE KEY-----') &&
2017-12-19 10:34:56 +01:00
// Sometimes there is a \n at the end, so just assert the string contains the end mark
2020-02-28 16:03:39 +01:00
privateKey.includes('-----END RSA PRIVATE KEY-----') &&
2018-01-03 11:10:40 +01:00
validator.isLength(privateKey, CONSTRAINTS_FIELDS.ACTORS.PRIVATE_KEY)
2017-12-14 11:18:49 +01:00
}
2018-01-03 16:38:50 +01:00
function isActorObjectValid (actor: any) {
return exists(actor) &&
isActivityPubUrlValid(actor.id) &&
isActorTypeValid(actor.type) &&
isActivityPubUrlValid(actor.inbox) &&
isActorPreferredUsernameValid(actor.preferredUsername) &&
isActivityPubUrlValid(actor.url) &&
isActorPublicKeyObjectValid(actor.publicKey) &&
isActorEndpointsObjectValid(actor.endpoints) &&
2018-03-19 10:23:42 +01:00
2019-08-30 09:40:21 +02:00
(!actor.outbox || isActivityPubUrlValid(actor.outbox)) &&
(!actor.following || isActivityPubUrlValid(actor.following)) &&
(!actor.followers || isActivityPubUrlValid(actor.followers)) &&
setValidAttributedTo(actor) &&
setValidDescription(actor) &&
2019-08-30 09:40:21 +02:00
// If this is a group (a channel), it should be attributed to an account
2017-12-14 17:38:41 +01:00
// In PeerTube we use this to attach a video channel to a specific account
2019-08-30 09:40:21 +02:00
(actor.type !== 'Group' || actor.attributedTo.length !== 0)
2017-12-14 11:18:49 +01:00
}
function isActorFollowingCountValid (value: string) {
return exists(value) && validator.isInt('' + value, { min: 0 })
}
function isActorFollowersCountValid (value: string) {
return exists(value) && validator.isInt('' + value, { min: 0 })
}
function isActorDeleteActivityValid (activity: any) {
return isBaseActivityValid(activity, 'Delete')
}
function sanitizeAndCheckActorObject (object: any) {
normalizeActor(object)
2018-03-19 10:23:42 +01:00
return isActorObjectValid(object)
2018-01-03 16:38:50 +01:00
}
2018-05-11 15:55:39 +02:00
function normalizeActor (actor: any) {
if (!actor) return
2018-05-11 15:55:39 +02:00
if (!actor.url) {
actor.url = actor.id
} else if (typeof actor.url !== 'string') {
2018-05-11 15:55:39 +02:00
actor.url = actor.url.href || actor.url.url
}
if (actor.summary && typeof actor.summary === 'string') {
actor.summary = peertubeTruncate(actor.summary, { length: CONSTRAINTS_FIELDS.USERS.DESCRIPTION.max })
2018-05-11 15:55:39 +02:00
if (actor.summary.length < CONSTRAINTS_FIELDS.USERS.DESCRIPTION.min) {
actor.summary = null
}
}
}
function isValidActorHandle (handle: string) {
if (!exists(handle)) return false
const parts = handle.split('@')
if (parts.length !== 2) return false
return isHostValid(parts[1])
}
2018-08-23 17:58:39 +02:00
function areValidActorHandles (handles: string[]) {
return isArray(handles) && handles.every(h => isValidActorHandle(h))
}
function setValidDescription (obj: any) {
if (!obj.summary) obj.summary = null
return true
}
2017-12-14 11:18:49 +01:00
// ---------------------------------------------------------------------------
export {
2018-05-11 15:55:39 +02:00
normalizeActor,
actorNameAlphabet,
2018-08-23 17:58:39 +02:00
areValidActorHandles,
2017-12-14 11:18:49 +01:00
isActorEndpointsObjectValid,
isActorPublicKeyObjectValid,
isActorTypeValid,
isActorPublicKeyValid,
isActorPreferredUsernameValid,
isActorPrivateKeyValid,
2018-01-03 16:38:50 +01:00
isActorObjectValid,
2017-12-14 11:18:49 +01:00
isActorFollowingCountValid,
isActorFollowersCountValid,
2017-12-14 17:38:41 +01:00
isActorDeleteActivityValid,
sanitizeAndCheckActorObject,
isValidActorHandle
2017-12-14 11:18:49 +01:00
}