2017-12-14 17:38:41 +01:00
|
|
|
import { Account } from '../actors'
|
2018-08-14 14:59:53 +02:00
|
|
|
import { VideoChannel } from '../videos/channel/video-channel.model'
|
2017-10-27 16:55:03 +02:00
|
|
|
import { UserRole } from './user-role'
|
2018-04-19 11:01:34 +02:00
|
|
|
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
2018-12-26 10:36:24 +01:00
|
|
|
import { UserNotificationSetting } from './user-notification-setting.model'
|
2019-04-15 10:49:46 +02:00
|
|
|
import { UserAdminFlag } from './user-flag.model'
|
2020-01-03 14:17:57 +01:00
|
|
|
import { VideoPlaylistType } from '@shared/models'
|
2017-06-16 10:36:18 +02:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
export interface User {
|
|
|
|
id: number
|
|
|
|
username: string
|
|
|
|
email: string
|
2019-06-11 11:54:33 +02:00
|
|
|
pendingEmail: string | null
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2018-11-21 08:48:29 +01:00
|
|
|
emailVerified: boolean
|
2018-04-19 11:01:34 +02:00
|
|
|
nsfwPolicy: NSFWPolicyType
|
2018-12-18 11:32:37 +01:00
|
|
|
|
2019-04-15 10:49:46 +02:00
|
|
|
adminFlags?: UserAdminFlag
|
|
|
|
|
2017-12-19 10:45:49 +01:00
|
|
|
autoPlayVideo: boolean
|
2019-09-24 08:48:01 +02:00
|
|
|
autoPlayNextVideo: boolean
|
2019-12-11 20:20:42 +01:00
|
|
|
autoPlayNextVideoPlaylist: boolean
|
2018-12-18 11:32:37 +01:00
|
|
|
webTorrentEnabled: boolean
|
|
|
|
videosHistoryEnabled: boolean
|
2019-08-28 14:40:06 +02:00
|
|
|
videoLanguages: string[]
|
2018-12-18 11:32:37 +01:00
|
|
|
|
2017-06-16 10:36:18 +02:00
|
|
|
role: UserRole
|
2019-04-15 10:49:46 +02:00
|
|
|
roleLabel: string
|
|
|
|
|
2017-09-04 20:07:54 +02:00
|
|
|
videoQuota: number
|
2018-08-28 09:01:35 +02:00
|
|
|
videoQuotaDaily: number
|
2019-08-28 14:40:06 +02:00
|
|
|
videoQuotaUsed?: number
|
|
|
|
videoQuotaUsedDaily?: number
|
2020-07-07 14:34:16 +02:00
|
|
|
|
2020-03-27 15:19:03 +01:00
|
|
|
videosCount?: number
|
2020-07-07 14:34:16 +02:00
|
|
|
|
|
|
|
abusesCount?: number
|
|
|
|
abusesAcceptedCount?: number
|
|
|
|
abusesCreatedCount?: number
|
|
|
|
|
2020-03-27 15:19:03 +01:00
|
|
|
videoCommentsCount? : number
|
2019-07-10 14:06:19 +02:00
|
|
|
|
|
|
|
theme: string
|
|
|
|
|
2017-12-04 10:34:40 +01:00
|
|
|
account: Account
|
2018-12-26 10:36:24 +01:00
|
|
|
notificationSettings?: UserNotificationSetting
|
2017-10-24 19:41:09 +02:00
|
|
|
videoChannels?: VideoChannel[]
|
2018-08-08 17:36:10 +02:00
|
|
|
|
|
|
|
blocked: boolean
|
|
|
|
blockedReason?: string
|
2018-08-14 17:56:51 +02:00
|
|
|
|
2019-08-28 14:40:06 +02:00
|
|
|
noInstanceConfigWarningModal: boolean
|
|
|
|
noWelcomeModal: boolean
|
|
|
|
|
|
|
|
createdAt: Date
|
2020-05-05 09:44:53 +02:00
|
|
|
|
|
|
|
pluginAuth: string | null
|
2020-05-07 10:39:09 +02:00
|
|
|
|
|
|
|
lastLoginDate: Date | null
|
2017-06-10 22:15:25 +02:00
|
|
|
}
|
2020-01-02 13:07:18 +01:00
|
|
|
|
2020-01-03 14:17:57 +01:00
|
|
|
export interface MyUserSpecialPlaylist {
|
|
|
|
id: number
|
|
|
|
name: string
|
|
|
|
type: VideoPlaylistType
|
|
|
|
}
|
|
|
|
|
2020-01-02 13:07:18 +01:00
|
|
|
export interface MyUser extends User {
|
2020-01-03 14:17:57 +01:00
|
|
|
specialPlaylists: MyUserSpecialPlaylist[]
|
2020-01-02 13:07:18 +01:00
|
|
|
}
|