2019-04-18 05:28:17 -04:00
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, Default, ForeignKey, Is, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { UserNotification, UserNotificationType } from '../../../shared'
|
|
|
|
import { getSort, throwIfNotValid } from '../utils'
|
|
|
|
import { isBooleanValid } from '../../helpers/custom-validators/misc'
|
|
|
|
import { isUserNotificationTypeValid } from '../../helpers/custom-validators/user-notifications'
|
|
|
|
import { UserModel } from './user'
|
|
|
|
import { VideoModel } from '../video/video'
|
|
|
|
import { VideoCommentModel } from '../video/video-comment'
|
2019-04-23 03:50:57 -04:00
|
|
|
import { FindOptions, ModelIndexesOptions, Op, WhereOptions } from 'sequelize'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { VideoChannelModel } from '../video/video-channel'
|
|
|
|
import { AccountModel } from './account'
|
|
|
|
import { VideoAbuseModel } from '../video/video-abuse'
|
|
|
|
import { VideoBlacklistModel } from '../video/video-blacklist'
|
2019-01-02 10:37:43 -05:00
|
|
|
import { VideoImportModel } from '../video/video-import'
|
2019-01-04 02:56:20 -05:00
|
|
|
import { ActorModel } from '../activitypub/actor'
|
|
|
|
import { ActorFollowModel } from '../activitypub/actor-follow'
|
2019-01-16 10:05:40 -05:00
|
|
|
import { AvatarModel } from '../avatar/avatar'
|
2019-01-21 07:52:46 -05:00
|
|
|
import { ServerModel } from '../server/server'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { UserNotificationIncludes, UserNotificationModelForApi } from '@server/types/models/user'
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
enum ScopeNames {
|
|
|
|
WITH_ALL = 'WITH_ALL'
|
|
|
|
}
|
|
|
|
|
2019-01-16 10:05:40 -05:00
|
|
|
function buildActorWithAvatarInclude () {
|
|
|
|
return {
|
|
|
|
attributes: [ 'preferredUsername' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorModel.unscoped(),
|
2019-01-16 10:05:40 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'filename' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AvatarModel.unscoped(),
|
2019-01-16 10:05:40 -05:00
|
|
|
required: false
|
2019-01-21 07:52:46 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'host' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ServerModel.unscoped(),
|
2019-01-21 07:52:46 -05:00
|
|
|
required: false
|
2019-01-16 10:05:40 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
function buildVideoInclude (required: boolean) {
|
|
|
|
return {
|
|
|
|
attributes: [ 'id', 'uuid', 'name' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoModel.unscoped(),
|
2019-01-02 10:37:43 -05:00
|
|
|
required
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-16 10:05:40 -05:00
|
|
|
function buildChannelInclude (required: boolean, withActor = false) {
|
2019-01-02 10:37:43 -05:00
|
|
|
return {
|
2019-01-04 02:56:20 -05:00
|
|
|
required,
|
2019-01-02 10:37:43 -05:00
|
|
|
attributes: [ 'id', 'name' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoChannelModel.unscoped(),
|
2019-01-16 10:05:40 -05:00
|
|
|
include: withActor === true ? [ buildActorWithAvatarInclude() ] : []
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-16 10:05:40 -05:00
|
|
|
function buildAccountInclude (required: boolean, withActor = false) {
|
2019-01-02 10:37:43 -05:00
|
|
|
return {
|
2019-01-04 02:56:20 -05:00
|
|
|
required,
|
2019-01-02 10:37:43 -05:00
|
|
|
attributes: [ 'id', 'name' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel.unscoped(),
|
2019-01-16 10:05:40 -05:00
|
|
|
include: withActor === true ? [ buildActorWithAvatarInclude() ] : []
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
@Scopes(() => ({
|
2018-12-26 04:36:24 -05:00
|
|
|
[ScopeNames.WITH_ALL]: {
|
|
|
|
include: [
|
2019-01-02 10:37:43 -05:00
|
|
|
Object.assign(buildVideoInclude(false), {
|
2019-01-16 10:05:40 -05:00
|
|
|
include: [ buildChannelInclude(true, true) ]
|
2019-01-02 10:37:43 -05:00
|
|
|
}),
|
2019-01-16 10:05:40 -05:00
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
{
|
2019-01-02 10:37:43 -05:00
|
|
|
attributes: [ 'id', 'originCommentId' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoCommentModel.unscoped(),
|
2018-12-26 04:36:24 -05:00
|
|
|
required: false,
|
|
|
|
include: [
|
2019-01-16 10:05:40 -05:00
|
|
|
buildAccountInclude(true, true),
|
2019-01-02 10:37:43 -05:00
|
|
|
buildVideoInclude(true)
|
2018-12-26 04:36:24 -05:00
|
|
|
]
|
|
|
|
},
|
2019-01-16 10:05:40 -05:00
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoAbuseModel.unscoped(),
|
2018-12-26 04:36:24 -05:00
|
|
|
required: false,
|
2019-01-02 10:37:43 -05:00
|
|
|
include: [ buildVideoInclude(true) ]
|
2018-12-26 04:36:24 -05:00
|
|
|
},
|
2019-01-16 10:05:40 -05:00
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoBlacklistModel.unscoped(),
|
2018-12-26 04:36:24 -05:00
|
|
|
required: false,
|
2019-01-02 10:37:43 -05:00
|
|
|
include: [ buildVideoInclude(true) ]
|
|
|
|
},
|
2019-01-16 10:05:40 -05:00
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
{
|
|
|
|
attributes: [ 'id', 'magnetUri', 'targetUrl', 'torrentName' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoImportModel.unscoped(),
|
2019-01-02 10:37:43 -05:00
|
|
|
required: false,
|
|
|
|
include: [ buildVideoInclude(false) ]
|
2019-01-04 02:56:20 -05:00
|
|
|
},
|
2019-01-16 10:05:40 -05:00
|
|
|
|
2019-01-04 02:56:20 -05:00
|
|
|
{
|
2019-04-09 04:42:07 -04:00
|
|
|
attributes: [ 'id', 'state' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorFollowModel.unscoped(),
|
2019-01-04 02:56:20 -05:00
|
|
|
required: false,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'preferredUsername' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorModel.unscoped(),
|
2019-01-04 02:56:20 -05:00
|
|
|
required: true,
|
|
|
|
as: 'ActorFollower',
|
2019-01-16 10:05:40 -05:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'name' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel.unscoped(),
|
2019-01-16 10:05:40 -05:00
|
|
|
required: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'filename' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AvatarModel.unscoped(),
|
2019-01-16 10:05:40 -05:00
|
|
|
required: false
|
2019-01-21 07:52:46 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'host' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ServerModel.unscoped(),
|
2019-01-21 07:52:46 -05:00
|
|
|
required: false
|
2019-01-16 10:05:40 -05:00
|
|
|
}
|
|
|
|
]
|
2019-01-04 02:56:20 -05:00
|
|
|
},
|
|
|
|
{
|
2019-08-30 10:50:12 -04:00
|
|
|
attributes: [ 'preferredUsername', 'type' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorModel.unscoped(),
|
2019-01-04 02:56:20 -05:00
|
|
|
required: true,
|
|
|
|
as: 'ActorFollowing',
|
|
|
|
include: [
|
|
|
|
buildChannelInclude(false),
|
2019-08-30 10:50:12 -04:00
|
|
|
buildAccountInclude(false),
|
|
|
|
{
|
|
|
|
attributes: [ 'host' ],
|
|
|
|
model: ServerModel.unscoped(),
|
|
|
|
required: false
|
|
|
|
}
|
2019-01-04 02:56:20 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2019-01-16 10:05:40 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
buildAccountInclude(false, true)
|
2019-04-23 03:50:57 -04:00
|
|
|
]
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
2018-12-26 04:36:24 -05:00
|
|
|
@Table({
|
|
|
|
tableName: 'userNotification',
|
|
|
|
indexes: [
|
|
|
|
{
|
2019-01-16 10:05:40 -05:00
|
|
|
fields: [ 'userId' ]
|
2018-12-26 04:36:24 -05:00
|
|
|
},
|
|
|
|
{
|
2019-01-16 10:05:40 -05:00
|
|
|
fields: [ 'videoId' ],
|
|
|
|
where: {
|
|
|
|
videoId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'commentId' ],
|
|
|
|
where: {
|
|
|
|
commentId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoAbuseId' ],
|
|
|
|
where: {
|
|
|
|
videoAbuseId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoBlacklistId' ],
|
|
|
|
where: {
|
|
|
|
videoBlacklistId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoImportId' ],
|
|
|
|
where: {
|
|
|
|
videoImportId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'accountId' ],
|
|
|
|
where: {
|
|
|
|
accountId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'actorFollowId' ],
|
|
|
|
where: {
|
|
|
|
actorFollowId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
] as (ModelIndexesOptions & { where?: WhereOptions })[]
|
2018-12-26 04:36:24 -05:00
|
|
|
})
|
|
|
|
export class UserNotificationModel extends Model<UserNotificationModel> {
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(null)
|
|
|
|
@Is('UserNotificationType', value => throwIfNotValid(value, isUserNotificationTypeValid, 'type'))
|
|
|
|
@Column
|
|
|
|
type: UserNotificationType
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is('UserNotificationRead', value => throwIfNotValid(value, isBooleanValid, 'read'))
|
|
|
|
@Column
|
|
|
|
read: boolean
|
|
|
|
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
@ForeignKey(() => UserModel)
|
|
|
|
@Column
|
|
|
|
userId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => UserModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
User: UserModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
Video: VideoModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoCommentModel)
|
|
|
|
@Column
|
|
|
|
commentId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoCommentModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
Comment: VideoCommentModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoAbuseModel)
|
|
|
|
@Column
|
|
|
|
videoAbuseId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoAbuseModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoAbuse: VideoAbuseModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoBlacklistModel)
|
|
|
|
@Column
|
|
|
|
videoBlacklistId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoBlacklistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoBlacklist: VideoBlacklistModel
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
@ForeignKey(() => VideoImportModel)
|
|
|
|
@Column
|
|
|
|
videoImportId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoImportModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoImport: VideoImportModel
|
|
|
|
|
2019-01-04 02:56:20 -05:00
|
|
|
@ForeignKey(() => AccountModel)
|
|
|
|
@Column
|
|
|
|
accountId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => AccountModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
Account: AccountModel
|
|
|
|
|
|
|
|
@ForeignKey(() => ActorFollowModel)
|
|
|
|
@Column
|
|
|
|
actorFollowId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => ActorFollowModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
ActorFollow: ActorFollowModel
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
static listForApi (userId: number, start: number, count: number, sort: string, unread?: boolean) {
|
2020-01-09 03:01:08 -05:00
|
|
|
const where = { userId }
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
const query: FindOptions = {
|
2018-12-26 04:36:24 -05:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
|
|
|
order: getSort(sort),
|
2020-01-09 03:01:08 -05:00
|
|
|
where
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
if (unread !== undefined) query.where['read'] = !unread
|
|
|
|
|
2020-01-09 03:01:08 -05:00
|
|
|
return Promise.all([
|
|
|
|
UserNotificationModel.count({ where })
|
|
|
|
.then(count => count || 0),
|
|
|
|
|
|
|
|
count === 0
|
|
|
|
? []
|
|
|
|
: UserNotificationModel.scope(ScopeNames.WITH_ALL).findAll(query)
|
|
|
|
]).then(([ total, data ]) => ({ total, data }))
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static markAsRead (userId: number, notificationIds: number[]) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
userId,
|
|
|
|
id: {
|
2020-01-28 08:45:17 -05:00
|
|
|
[Op.in]: notificationIds
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserNotificationModel.update({ read: true }, query)
|
|
|
|
}
|
|
|
|
|
2019-01-08 05:26:41 -05:00
|
|
|
static markAllAsRead (userId: number) {
|
|
|
|
const query = { where: { userId } }
|
|
|
|
|
|
|
|
return UserNotificationModel.update({ read: true }, query)
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
toFormattedJSON (this: UserNotificationModelForApi): UserNotification {
|
2019-01-16 10:05:40 -05:00
|
|
|
const video = this.Video
|
2020-01-31 10:56:52 -05:00
|
|
|
? Object.assign(this.formatVideo(this.Video), { channel: this.formatActor(this.Video.VideoChannel) })
|
2019-01-16 10:05:40 -05:00
|
|
|
: undefined
|
2019-01-02 10:37:43 -05:00
|
|
|
|
|
|
|
const videoImport = this.VideoImport ? {
|
|
|
|
id: this.VideoImport.id,
|
|
|
|
video: this.VideoImport.Video ? this.formatVideo(this.VideoImport.Video) : undefined,
|
|
|
|
torrentName: this.VideoImport.torrentName,
|
|
|
|
magnetUri: this.VideoImport.magnetUri,
|
|
|
|
targetUrl: this.VideoImport.targetUrl
|
2018-12-26 04:36:24 -05:00
|
|
|
} : undefined
|
|
|
|
|
|
|
|
const comment = this.Comment ? {
|
|
|
|
id: this.Comment.id,
|
2019-01-02 10:37:43 -05:00
|
|
|
threadId: this.Comment.getThreadId(),
|
2019-01-16 10:05:40 -05:00
|
|
|
account: this.formatActor(this.Comment.Account),
|
2019-01-02 10:37:43 -05:00
|
|
|
video: this.formatVideo(this.Comment.Video)
|
2018-12-26 04:36:24 -05:00
|
|
|
} : undefined
|
|
|
|
|
|
|
|
const videoAbuse = this.VideoAbuse ? {
|
|
|
|
id: this.VideoAbuse.id,
|
2019-01-02 10:37:43 -05:00
|
|
|
video: this.formatVideo(this.VideoAbuse.Video)
|
2018-12-26 04:36:24 -05:00
|
|
|
} : undefined
|
|
|
|
|
|
|
|
const videoBlacklist = this.VideoBlacklist ? {
|
|
|
|
id: this.VideoBlacklist.id,
|
2019-01-02 10:37:43 -05:00
|
|
|
video: this.formatVideo(this.VideoBlacklist.Video)
|
2018-12-26 04:36:24 -05:00
|
|
|
} : undefined
|
|
|
|
|
2019-01-16 10:05:40 -05:00
|
|
|
const account = this.Account ? this.formatActor(this.Account) : undefined
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2019-08-30 10:50:12 -04:00
|
|
|
const actorFollowingType = {
|
|
|
|
Application: 'instance' as 'instance',
|
|
|
|
Group: 'channel' as 'channel',
|
|
|
|
Person: 'account' as 'account'
|
|
|
|
}
|
2019-01-04 02:56:20 -05:00
|
|
|
const actorFollow = this.ActorFollow ? {
|
|
|
|
id: this.ActorFollow.id,
|
2019-04-08 11:26:01 -04:00
|
|
|
state: this.ActorFollow.state,
|
2019-01-04 02:56:20 -05:00
|
|
|
follower: {
|
2019-01-16 10:05:40 -05:00
|
|
|
id: this.ActorFollow.ActorFollower.Account.id,
|
2019-01-04 02:56:20 -05:00
|
|
|
displayName: this.ActorFollow.ActorFollower.Account.getDisplayName(),
|
2019-01-16 10:05:40 -05:00
|
|
|
name: this.ActorFollow.ActorFollower.preferredUsername,
|
2019-08-09 05:32:40 -04:00
|
|
|
avatar: this.ActorFollow.ActorFollower.Avatar ? { path: this.ActorFollow.ActorFollower.Avatar.getStaticPath() } : undefined,
|
2019-01-21 07:52:46 -05:00
|
|
|
host: this.ActorFollow.ActorFollower.getHost()
|
2019-01-04 02:56:20 -05:00
|
|
|
},
|
|
|
|
following: {
|
2019-08-30 10:50:12 -04:00
|
|
|
type: actorFollowingType[this.ActorFollow.ActorFollowing.type],
|
2019-01-04 02:56:20 -05:00
|
|
|
displayName: (this.ActorFollow.ActorFollowing.VideoChannel || this.ActorFollow.ActorFollowing.Account).getDisplayName(),
|
2019-08-30 10:50:12 -04:00
|
|
|
name: this.ActorFollow.ActorFollowing.preferredUsername,
|
|
|
|
host: this.ActorFollow.ActorFollowing.getHost()
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
} : undefined
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
type: this.type,
|
|
|
|
read: this.read,
|
|
|
|
video,
|
2019-01-02 10:37:43 -05:00
|
|
|
videoImport,
|
2018-12-26 04:36:24 -05:00
|
|
|
comment,
|
|
|
|
videoAbuse,
|
|
|
|
videoBlacklist,
|
2019-01-04 02:56:20 -05:00
|
|
|
account,
|
|
|
|
actorFollow,
|
2018-12-26 04:36:24 -05:00
|
|
|
createdAt: this.createdAt.toISOString(),
|
|
|
|
updatedAt: this.updatedAt.toISOString()
|
|
|
|
}
|
|
|
|
}
|
2019-01-02 10:37:43 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
formatVideo (this: UserNotificationModelForApi, video: UserNotificationIncludes.VideoInclude) {
|
2019-01-02 10:37:43 -05:00
|
|
|
return {
|
|
|
|
id: video.id,
|
|
|
|
uuid: video.uuid,
|
|
|
|
name: video.name
|
|
|
|
}
|
|
|
|
}
|
2019-01-16 10:05:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
formatActor (
|
|
|
|
this: UserNotificationModelForApi,
|
|
|
|
accountOrChannel: UserNotificationIncludes.AccountIncludeActor | UserNotificationIncludes.VideoChannelIncludeActor
|
|
|
|
) {
|
2019-01-16 10:05:40 -05:00
|
|
|
const avatar = accountOrChannel.Actor.Avatar
|
2019-08-09 05:32:40 -04:00
|
|
|
? { path: accountOrChannel.Actor.Avatar.getStaticPath() }
|
2019-01-16 10:05:40 -05:00
|
|
|
: undefined
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: accountOrChannel.id,
|
|
|
|
displayName: accountOrChannel.getDisplayName(),
|
|
|
|
name: accountOrChannel.Actor.preferredUsername,
|
2019-01-21 07:52:46 -05:00
|
|
|
host: accountOrChannel.Actor.getHost(),
|
2019-01-16 10:05:40 -05:00
|
|
|
avatar
|
|
|
|
}
|
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|