1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00
Peertube/client/src/app/core/users/user.model.ts
Chocobozzz dd4027a10f
Improve NSFW system
* Add NSFW flags to videos so the publisher can add more NSFW context
 * Add NSFW summary to videos, similar to content warning system so the
   publisher has a free text to describe NSFW aspect of its video
 * Add additional "warn" NSFW policy: the video thumbnail is not blurred
   and we display a tag below the video miniature, the video player
   includes the NSFW warning (with context if available) and it also
   prevent autoplay
 * "blur" NSFW settings inherits "warn" policy and also blur the video
   thumbnail
 * Add NSFW flag settings to users so they can have more granular
   control about what content they want to hide, warn or display
2025-04-30 15:54:11 +02:00

119 lines
2.6 KiB
TypeScript

import { Account } from '@app/shared/shared-main/account/account.model'
import { hasUserRight, objectKeysTyped } from '@peertube/peertube-core-utils'
import {
ActorImage,
HTMLServerConfig,
NSFWPolicyType,
User as UserServerModel,
UserAdminFlag,
UserAdminFlagType,
UserNotificationSetting,
UserRightType,
UserRole,
UserRoleType,
VideoChannel
} from '@peertube/peertube-models'
export class User implements UserServerModel {
id: number
username: string
email: string
pendingEmail: string | null
emailVerified: boolean
emailPublic: boolean
nsfwPolicy: NSFWPolicyType
nsfwFlagsDisplayed: number
nsfwFlagsHidden: number
nsfwFlagsWarned: number
nsfwFlagsBlurred: number
adminFlags?: UserAdminFlagType
autoPlayVideo: boolean
autoPlayNextVideo: boolean
autoPlayNextVideoPlaylist: boolean
p2pEnabled: boolean
videosHistoryEnabled: boolean
videoLanguages: string[]
role: {
id: UserRoleType
label: string
}
videoQuota: number
videoQuotaDaily: number
videoQuotaUsed?: number
videoQuotaUsedDaily?: number
videosCount?: number
videoCommentsCount?: number
abusesCount?: number
abusesAcceptedCount?: number
abusesCreatedCount?: number
theme: string
account: Account
notificationSettings?: UserNotificationSetting
videoChannels?: VideoChannel[]
blocked: boolean
blockedReason?: string
noInstanceConfigWarningModal: boolean
noWelcomeModal: boolean
noAccountSetupWarningModal: boolean
pluginAuth: string | null
lastLoginDate: Date | null
twoFactorEnabled: boolean
createdAt: Date
constructor (hash: Partial<UserServerModel>) {
const { account, ...mergeProps }: Partial<UserServerModel> = hash
Object.assign(this, mergeProps)
if (account !== undefined) {
this.account = new Account(account)
}
}
hasRight (right: UserRightType) {
return hasUserRight(this.role.id, right)
}
patch (obj: UserServerModel) {
for (const key of objectKeysTyped(obj)) {
;(this as any)[key] = obj[key]
}
if (obj.account !== undefined) {
this.account = new Account(obj.account)
}
}
updateAccountAvatar (newAccountAvatars?: ActorImage[]) {
if (newAccountAvatars) this.account.updateAvatar(newAccountAvatars)
else this.account.resetAvatar()
}
hasUploadDisabled () {
return this.videoQuota === 0 || this.videoQuotaDaily === 0
}
isAutoBlocked (serverConfig: HTMLServerConfig) {
if (serverConfig.autoBlacklist.videos.ofUsers.enabled !== true) return false
return this.role.id === UserRole.USER && this.adminFlags !== UserAdminFlag.BYPASS_VIDEO_AUTO_BLACKLIST
}
}