diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-18 10:00:19 +0200 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2020-05-01 16:41:02 +0200 |
commit | 844db39ee56ff0dd59a96acfc68f10f9ac53000b (patch) | |
tree | e9b33b09c08465e73819cf189a112ec17b044349 /server/models/video | |
parent | 36d0677ec95605eca0543712686c591fb8e6f3c1 (diff) | |
download | PeerTube-844db39ee56ff0dd59a96acfc68f10f9ac53000b.tar.gz PeerTube-844db39ee56ff0dd59a96acfc68f10f9ac53000b.tar.zst PeerTube-844db39ee56ff0dd59a96acfc68f10f9ac53000b.zip |
Add search for video, reporter and channel name fields
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-abuse.ts | 121 |
1 files changed, 95 insertions, 26 deletions
diff --git a/server/models/video/video-abuse.ts b/server/models/video/video-abuse.ts index ea943ffdf..5ead02eca 100644 --- a/server/models/video/video-abuse.ts +++ b/server/models/video/video-abuse.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { | 1 | import { |
2 | AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt, DefaultScope | 2 | AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt, Scopes |
3 | } from 'sequelize-typescript' | 3 | } from 'sequelize-typescript' |
4 | import { VideoAbuseObject } from '../../../shared/models/activitypub/objects' | 4 | import { VideoAbuseObject } from '../../../shared/models/activitypub/objects' |
5 | import { VideoAbuse } from '../../../shared/models/videos' | 5 | import { VideoAbuse } from '../../../shared/models/videos' |
@@ -21,34 +21,99 @@ import { VideoChannelModel } from './video-channel' | |||
21 | import { ActorModel } from '../activitypub/actor' | 21 | import { ActorModel } from '../activitypub/actor' |
22 | import { VideoBlacklistModel } from './video-blacklist' | 22 | import { VideoBlacklistModel } from './video-blacklist' |
23 | 23 | ||
24 | @DefaultScope(() => ({ | 24 | export enum ScopeNames { |
25 | include: [ | 25 | FOR_API = 'FOR_API' |
26 | { | 26 | } |
27 | model: AccountModel, | 27 | |
28 | required: true | 28 | @Scopes(() => ({ |
29 | }, | 29 | [ScopeNames.FOR_API]: (options: { |
30 | { | 30 | search?: string |
31 | model: VideoModel, | 31 | searchReporter?: string |
32 | required: false, | 32 | searchVideo?: string |
33 | searchVideoChannel?: string | ||
34 | serverAccountId: number | ||
35 | userAccountId: any | ||
36 | }) => { | ||
37 | const search = (sourceField, targetField) => sourceField ? ({ | ||
38 | [targetField]: { | ||
39 | [Op.iLike]: `%${sourceField}%` | ||
40 | } | ||
41 | }) : {} | ||
42 | |||
43 | let where = { | ||
44 | reporterAccountId: { | ||
45 | [Op.notIn]: literal('(' + buildBlockedAccountSQL(options.serverAccountId, options.userAccountId) + ')') | ||
46 | } | ||
47 | } | ||
48 | |||
49 | if (options.search) { | ||
50 | where = Object.assign(where, { | ||
51 | [Op.or]: [ | ||
52 | { | ||
53 | [Op.and]: [ | ||
54 | { videoId: { [Op.not]: null } }, | ||
55 | { '$Video.name$': { [Op.iLike]: `%${options.search}%` } } | ||
56 | ] | ||
57 | }, | ||
58 | { | ||
59 | [Op.and]: [ | ||
60 | { videoId: { [Op.not]: null } }, | ||
61 | { '$Video.VideoChannel.name$': { [Op.iLike]: `%${options.search}%` } } | ||
62 | ] | ||
63 | }, | ||
64 | { | ||
65 | [Op.and]: [ | ||
66 | { deletedVideo: { [Op.not]: null } }, | ||
67 | { deletedVideo: { name: { [Op.iLike]: `%${options.search}%` } } } | ||
68 | ] | ||
69 | }, | ||
70 | { | ||
71 | [Op.and]: [ | ||
72 | { deletedVideo: { [Op.not]: null } }, | ||
73 | { deletedVideo: { channel: { displayName: { [Op.iLike]: `%${options.search}%` } } } } | ||
74 | ] | ||
75 | }, | ||
76 | { '$Account.name$': { [Op.iLike]: `%${options.search}%` } } | ||
77 | ] | ||
78 | }) | ||
79 | } | ||
80 | |||
81 | console.log(where) | ||
82 | |||
83 | return { | ||
33 | include: [ | 84 | include: [ |
34 | { | 85 | { |
35 | model: ThumbnailModel | 86 | model: AccountModel, |
87 | required: true, | ||
88 | where: { ...search(options.searchReporter, 'name') } | ||
36 | }, | 89 | }, |
37 | { | 90 | { |
38 | model: VideoChannelModel.unscoped(), | 91 | model: VideoModel, |
92 | required: false, | ||
93 | where: { ...search(options.searchVideo, 'name') }, | ||
39 | include: [ | 94 | include: [ |
40 | { | 95 | { |
41 | model: ActorModel | 96 | model: ThumbnailModel |
97 | }, | ||
98 | { | ||
99 | model: VideoChannelModel.unscoped(), | ||
100 | where: { ...search(options.searchVideoChannel, 'name') }, | ||
101 | include: [ | ||
102 | { | ||
103 | model: ActorModel | ||
104 | } | ||
105 | ] | ||
106 | }, | ||
107 | { | ||
108 | attributes: [ 'id', 'reason', 'unfederated' ], | ||
109 | model: VideoBlacklistModel | ||
42 | } | 110 | } |
43 | ] | 111 | ] |
44 | }, | ||
45 | { | ||
46 | attributes: [ 'id', 'reason', 'unfederated' ], | ||
47 | model: VideoBlacklistModel | ||
48 | } | 112 | } |
49 | ] | 113 | ], |
114 | where | ||
50 | } | 115 | } |
51 | ] | 116 | } |
52 | })) | 117 | })) |
53 | @Table({ | 118 | @Table({ |
54 | tableName: 'videoAbuse', | 119 | tableName: 'videoAbuse', |
@@ -134,26 +199,30 @@ export class VideoAbuseModel extends Model<VideoAbuseModel> { | |||
134 | start: number | 199 | start: number |
135 | count: number | 200 | count: number |
136 | sort: string | 201 | sort: string |
202 | search?: string | ||
137 | serverAccountId: number | 203 | serverAccountId: number |
138 | user?: MUserAccountId | 204 | user?: MUserAccountId |
139 | }) { | 205 | }) { |
140 | const { start, count, sort, user, serverAccountId } = parameters | 206 | const { start, count, sort, search, user, serverAccountId } = parameters |
141 | const userAccountId = user ? user.Account.id : undefined | 207 | const userAccountId = user ? user.Account.id : undefined |
142 | 208 | ||
143 | const query = { | 209 | const query = { |
144 | offset: start, | 210 | offset: start, |
145 | limit: count, | 211 | limit: count, |
146 | order: getSort(sort), | 212 | order: getSort(sort), |
147 | where: { | ||
148 | reporterAccountId: { | ||
149 | [Op.notIn]: literal('(' + buildBlockedAccountSQL(serverAccountId, userAccountId) + ')') | ||
150 | } | ||
151 | }, | ||
152 | col: 'VideoAbuseModel.id', | 213 | col: 'VideoAbuseModel.id', |
153 | distinct: true | 214 | distinct: true |
154 | } | 215 | } |
155 | 216 | ||
156 | return VideoAbuseModel.findAndCountAll(query) | 217 | const filters = { |
218 | search, | ||
219 | serverAccountId, | ||
220 | userAccountId | ||
221 | } | ||
222 | |||
223 | return VideoAbuseModel | ||
224 | .scope({ method: [ ScopeNames.FOR_API, filters ] }) | ||
225 | .findAndCountAll(query) | ||
157 | .then(({ rows, count }) => { | 226 | .then(({ rows, count }) => { |
158 | return { total: count, data: rows } | 227 | return { total: count, data: rows } |
159 | }) | 228 | }) |