aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/account/actor-image.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/account/actor-image.ts')
-rw-r--r--server/models/account/actor-image.ts86
1 files changed, 86 insertions, 0 deletions
diff --git a/server/models/account/actor-image.ts b/server/models/account/actor-image.ts
new file mode 100644
index 000000000..c532bd08d
--- /dev/null
+++ b/server/models/account/actor-image.ts
@@ -0,0 +1,86 @@
1import { remove } from 'fs-extra'
2import { join } from 'path'
3import { AfterDestroy, AllowNull, Column, CreatedAt, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
4import { MActorImageFormattable } from '@server/types/models'
5import { ActorImageType } from '@shared/models'
6import { ActorImage } from '../../../shared/models/actors/actor-image.model'
7import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
8import { logger } from '../../helpers/logger'
9import { CONFIG } from '../../initializers/config'
10import { LAZY_STATIC_PATHS } from '../../initializers/constants'
11import { throwIfNotValid } from '../utils'
12
13@Table({
14 tableName: 'actorImage',
15 indexes: [
16 {
17 fields: [ 'filename' ],
18 unique: true
19 }
20 ]
21})
22export class ActorImageModel extends Model {
23
24 @AllowNull(false)
25 @Column
26 filename: string
27
28 @AllowNull(true)
29 @Is('ActorImageFileUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'fileUrl', true))
30 @Column
31 fileUrl: string
32
33 @AllowNull(false)
34 @Column
35 onDisk: boolean
36
37 @AllowNull(false)
38 @Column
39 type: ActorImageType
40
41 @CreatedAt
42 createdAt: Date
43
44 @UpdatedAt
45 updatedAt: Date
46
47 @AfterDestroy
48 static removeFilesAndSendDelete (instance: ActorImageModel) {
49 logger.info('Removing actor image file %s.', instance.filename)
50
51 // Don't block the transaction
52 instance.removeImage()
53 .catch(err => logger.error('Cannot remove actor image file %s.', instance.filename, err))
54 }
55
56 static loadByName (filename: string) {
57 const query = {
58 where: {
59 filename
60 }
61 }
62
63 return ActorImageModel.findOne(query)
64 }
65
66 toFormattedJSON (this: MActorImageFormattable): ActorImage {
67 return {
68 path: this.getStaticPath(),
69 createdAt: this.createdAt,
70 updatedAt: this.updatedAt
71 }
72 }
73
74 getStaticPath () {
75 return join(LAZY_STATIC_PATHS.AVATARS, this.filename)
76 }
77
78 getPath () {
79 return join(CONFIG.STORAGE.ACTOR_IMAGES, this.filename)
80 }
81
82 removeImage () {
83 const imagePath = join(CONFIG.STORAGE.ACTOR_IMAGES, this.filename)
84 return remove(imagePath)
85 }
86}