]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-moderation/abuse.service.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / abuse.service.ts
CommitLineData
67ed6552
C
1import { omit } from 'lodash-es'
2import { SortMeta } from 'primeng/api'
3import { Observable } from 'rxjs'
e8bffe96 4import { catchError } from 'rxjs/operators'
d592e0a9 5import { HttpClient, HttpParams } from '@angular/common/http'
63c4db6d 6import { Injectable } from '@angular/core'
67ed6552 7import { RestExtractor, RestPagination, RestService } from '@app/core'
94148c90
C
8import {
9 AbuseCreate,
10 AbuseFilter,
11 AbuseMessage,
12 AbusePredefinedReasonsString,
13 AbuseState,
14 AbuseUpdate,
15 AdminAbuse,
16 ResultList,
17 UserAbuse
18} from '@shared/models'
19import { environment } from '../../../environments/environment'
11ac88de
C
20
21@Injectable()
d95d1559
C
22export class AbuseService {
23 private static BASE_ABUSE_URL = environment.apiUrl + '/api/v1/abuses'
94148c90 24 private static BASE_MY_ABUSE_URL = environment.apiUrl + '/api/v1/users/me/abuses'
11ac88de 25
df98563e 26 constructor (
d592e0a9
C
27 private authHttp: HttpClient,
28 private restService: RestService,
11ac88de 29 private restExtractor: RestExtractor
8ca56654 30 ) { }
11ac88de 31
441e453a 32 getAdminAbuses (options: {
9df52d66
C
33 pagination: RestPagination
34 sort: SortMeta
844db39e 35 search?: string
441e453a 36 }): Observable<ResultList<AdminAbuse>> {
844db39e 37 const { pagination, sort, search } = options
8ca56654 38 const url = AbuseService.BASE_ABUSE_URL
d592e0a9
C
39
40 let params = new HttpParams()
41 params = this.restService.addRestGetParams(params, pagination, sort)
42
feb34f6b 43 if (search) {
94148c90 44 params = this.buildParamsFromSearch(search, params)
feb34f6b 45 }
844db39e 46
441e453a 47 return this.authHttp.get<ResultList<AdminAbuse>>(url, { params })
8ca56654
C
48 .pipe(
49 catchError(res => this.restExtractor.handleError(res))
50 )
11ac88de
C
51 }
52
94148c90 53 getUserAbuses (options: {
9df52d66
C
54 pagination: RestPagination
55 sort: SortMeta
94148c90
C
56 search?: string
57 }): Observable<ResultList<UserAbuse>> {
58 const { pagination, sort, search } = options
59 const url = AbuseService.BASE_MY_ABUSE_URL
60
61 let params = new HttpParams()
62 params = this.restService.addRestGetParams(params, pagination, sort)
63
64 if (search) {
65 params = this.buildParamsFromSearch(search, params)
66 }
67
68 return this.authHttp.get<ResultList<UserAbuse>>(url, { params })
69 .pipe(
70 catchError(res => this.restExtractor.handleError(res))
71 )
72 }
73
d95d1559
C
74 reportVideo (parameters: AbuseCreate) {
75 const url = AbuseService.BASE_ABUSE_URL
1ebddadd 76
9df52d66 77 const body = omit(parameters, [ 'id' ])
11ac88de
C
78
79 return this.authHttp.post(url, body)
e8bffe96 80 .pipe(catchError(res => this.restExtractor.handleError(res)))
11ac88de 81 }
efc9e845 82
441e453a 83 updateAbuse (abuse: AdminAbuse, abuseUpdate: AbuseUpdate) {
d95d1559 84 const url = AbuseService.BASE_ABUSE_URL + '/' + abuse.id
efc9e845
C
85
86 return this.authHttp.put(url, abuseUpdate)
e8bffe96 87 .pipe(catchError(res => this.restExtractor.handleError(res)))
efc9e845
C
88 }
89
441e453a 90 removeAbuse (abuse: AdminAbuse) {
d95d1559 91 const url = AbuseService.BASE_ABUSE_URL + '/' + abuse.id
efc9e845
C
92
93 return this.authHttp.delete(url)
e8bffe96 94 .pipe(catchError(res => this.restExtractor.handleError(res)))
441e453a
C
95 }
96
97 addAbuseMessage (abuse: UserAbuse, message: string) {
98 const url = AbuseService.BASE_ABUSE_URL + '/' + abuse.id + '/messages'
99
100 return this.authHttp.post(url, { message })
e8bffe96 101 .pipe(catchError(res => this.restExtractor.handleError(res)))
441e453a
C
102 }
103
104 listAbuseMessages (abuse: UserAbuse) {
105 const url = AbuseService.BASE_ABUSE_URL + '/' + abuse.id + '/messages'
106
107 return this.authHttp.get<ResultList<AbuseMessage>>(url)
108 .pipe(
109 catchError(res => this.restExtractor.handleError(res))
110 )
111 }
112
113 deleteAbuseMessage (abuse: UserAbuse, abuseMessage: AbuseMessage) {
114 const url = AbuseService.BASE_ABUSE_URL + '/' + abuse.id + '/messages/' + abuseMessage.id
115
116 return this.authHttp.delete(url)
e8bffe96 117 .pipe(catchError(res => this.restExtractor.handleError(res)))
8ca56654
C
118 }
119
120 getPrefefinedReasons (type: AbuseFilter) {
121 let reasons: { id: AbusePredefinedReasonsString, label: string, description?: string, help?: string }[] = [
122 {
123 id: 'violentOrRepulsive',
66357162
C
124 label: $localize`Violent or repulsive`,
125 help: $localize`Contains offensive, violent, or coarse language or iconography.`
8ca56654
C
126 },
127 {
128 id: 'hatefulOrAbusive',
66357162
C
129 label: $localize`Hateful or abusive`,
130 help: $localize`Contains abusive, racist or sexist language or iconography.`
8ca56654
C
131 },
132 {
133 id: 'spamOrMisleading',
66357162 134 label: $localize`Spam, ad or false news`,
9df52d66 135 // eslint-disable-next-line max-len
66357162 136 help: $localize`Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.`
8ca56654
C
137 },
138 {
139 id: 'privacy',
66357162 140 label: $localize`Privacy breach or doxxing`,
9df52d66 141 // eslint-disable-next-line max-len
66357162 142 help: $localize`Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).`
8ca56654
C
143 },
144 {
145 id: 'rights',
66357162
C
146 label: $localize`Copyright`,
147 help: $localize`Infringes your copyright wrt. the regional laws with which the server must comply.`
8ca56654
C
148 },
149 {
150 id: 'serverRules',
66357162 151 label: $localize`Breaks server rules`,
9df52d66 152 // eslint-disable-next-line max-len
66357162 153 description: $localize`Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.`
8ca56654
C
154 }
155 ]
156
157 if (type === 'video') {
158 reasons = reasons.concat([
159 {
160 id: 'thumbnails',
66357162
C
161 label: $localize`Thumbnails`,
162 help: $localize`The above can only be seen in thumbnails.`
8ca56654
C
163 },
164 {
165 id: 'captions',
66357162
C
166 label: $localize`Captions`,
167 help: $localize`The above can only be seen in captions (please describe which).`
8ca56654
C
168 }
169 ])
170 }
171
172 return reasons
173 }
174
94148c90
C
175 private buildParamsFromSearch (search: string, params: HttpParams) {
176 const filters = this.restService.parseQueryStringFilter(search, {
177 id: { prefix: '#' },
178 state: {
179 prefix: 'state:',
180 handler: v => {
181 if (v === 'accepted') return AbuseState.ACCEPTED
182 if (v === 'pending') return AbuseState.PENDING
183 if (v === 'rejected') return AbuseState.REJECTED
184
185 return undefined
186 }
187 },
188 videoIs: {
189 prefix: 'videoIs:',
190 handler: v => {
191 if (v === 'deleted') return v
192 if (v === 'blacklisted') return v
193
194 return undefined
195 }
196 },
197 searchReporter: { prefix: 'reporter:' },
198 searchReportee: { prefix: 'reportee:' },
199 predefinedReason: { prefix: 'tag:' }
200 })
201
202 return this.restService.addObjectParams(params, filters)
203 }
8ca56654 204}