PeerTube/server/helpers/custom-validators/activitypub/video-comments.ts

60 lines
1.7 KiB
TypeScript
Raw Normal View History

2020-01-07 14:56:07 +01:00
import validator from 'validator'
import { ACTIVITY_PUB } from '../../../initializers/constants'
2018-01-26 11:20:46 +01:00
import { exists, isArray, isDateValid } from '../misc'
import { isActivityPubUrlValid } from './misc'
2018-05-11 15:41:54 +02:00
function sanitizeAndCheckVideoCommentObject (comment: any) {
if (!comment) return false
if (!isCommentTypeValid(comment)) return false
2018-05-11 15:41:54 +02:00
normalizeComment(comment)
if (comment.type === 'Tombstone') {
return isActivityPubUrlValid(comment.id) &&
isDateValid(comment.published) &&
isDateValid(comment.deleted) &&
isActivityPubUrlValid(comment.url)
}
2018-05-11 15:41:54 +02:00
return isActivityPubUrlValid(comment.id) &&
isCommentContentValid(comment.content) &&
isActivityPubUrlValid(comment.inReplyTo) &&
isDateValid(comment.published) &&
2018-01-26 11:20:46 +01:00
isActivityPubUrlValid(comment.url) &&
isArray(comment.to) &&
2018-04-04 09:52:45 +02:00
(
comment.to.indexOf(ACTIVITY_PUB.PUBLIC) !== -1 ||
comment.cc.indexOf(ACTIVITY_PUB.PUBLIC) !== -1
) // Only accept public comments
}
// ---------------------------------------------------------------------------
export {
2018-05-11 15:41:54 +02:00
sanitizeAndCheckVideoCommentObject
}
// ---------------------------------------------------------------------------
function isCommentContentValid (content: any) {
return exists(content) && validator.isLength('' + content, { min: 1 })
}
2018-05-11 15:41:54 +02:00
function normalizeComment (comment: any) {
if (!comment) return
2018-05-11 15:55:39 +02:00
if (typeof comment.url !== 'string') {
if (typeof comment.url === 'object') comment.url = comment.url.href || comment.url.url
else comment.url = comment.id
2018-05-11 15:41:54 +02:00
}
}
function isCommentTypeValid (comment: any): boolean {
if (comment.type === 'Note') return true
if (comment.type === 'Tombstone' && comment.formerType === 'Note') return true
return false
}