]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/users/user.service.ts
Redirect to local route when getting peertube account
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / users / user.service.ts
CommitLineData
791645e6
C
1import { from, Observable } from 'rxjs'
2import { catchError, concatMap, map, toArray } from 'rxjs/operators'
74d63469 3import { HttpClient, HttpParams } from '@angular/common/http'
63c4db6d 4import { Injectable } from '@angular/core'
e724fa93 5import { ResultList, User, UserCreate, UserRole, UserUpdate, UserUpdateMe, UserVideoQuota } from '../../../../../shared'
63c4db6d 6import { environment } from '../../../environments/environment'
e724fa93 7import { RestExtractor, RestPagination, RestService } from '../rest'
5fcbd898 8import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
e724fa93
C
9import { SortMeta } from 'primeng/api'
10import { BytesPipe } from 'ngx-pipes'
11import { I18n } from '@ngx-translate/i18n-polyfill'
1d5342ab 12import { UserRegister } from '@shared/models/users/user-register.model'
629d8d6f
C
13
14@Injectable()
e2a2d6c8 15export class UserService {
63c4db6d 16 static BASE_USERS_URL = environment.apiUrl + '/api/v1/users/'
629d8d6f 17
e724fa93
C
18 private bytesPipe = new BytesPipe()
19
df98563e 20 constructor (
d592e0a9 21 private authHttp: HttpClient,
e724fa93
C
22 private restExtractor: RestExtractor,
23 private restService: RestService,
24 private i18n: I18n
25 ) { }
629d8d6f 26
a890d1e0 27 changePassword (currentPassword: string, newPassword: string) {
8094a898
C
28 const url = UserService.BASE_USERS_URL + 'me'
29 const body: UserUpdateMe = {
a890d1e0 30 currentPassword,
629d8d6f 31 password: newPassword
df98563e 32 }
629d8d6f 33
de59c48f 34 return this.authHttp.put(url, body)
db400f44
C
35 .pipe(
36 map(this.restExtractor.extractDataBool),
e4f0e92e 37 catchError(err => this.restExtractor.handleError(err))
db400f44 38 )
629d8d6f 39 }
af5e743b 40
ed56ad11 41 updateMyProfile (profile: UserUpdateMe) {
8094a898 42 const url = UserService.BASE_USERS_URL + 'me'
af5e743b 43
ed56ad11 44 return this.authHttp.put(url, profile)
db400f44
C
45 .pipe(
46 map(this.restExtractor.extractDataBool),
e4f0e92e 47 catchError(err => this.restExtractor.handleError(err))
db400f44 48 )
af5e743b 49 }
a184c71b 50
92b9d60c
C
51 deleteMe () {
52 const url = UserService.BASE_USERS_URL + 'me'
53
54 return this.authHttp.delete(url)
55 .pipe(
56 map(this.restExtractor.extractDataBool),
57 catchError(err => this.restExtractor.handleError(err))
58 )
59 }
60
c5911fd3
C
61 changeAvatar (avatarForm: FormData) {
62 const url = UserService.BASE_USERS_URL + 'me/avatar/pick'
63
5fcbd898 64 return this.authHttp.post<{ avatar: Avatar }>(url, avatarForm)
e4f0e92e 65 .pipe(catchError(err => this.restExtractor.handleError(err)))
c5911fd3
C
66 }
67
1d5342ab 68 signup (userCreate: UserRegister) {
d592e0a9 69 return this.authHttp.post(UserService.BASE_USERS_URL + 'register', userCreate)
db400f44
C
70 .pipe(
71 map(this.restExtractor.extractDataBool),
e4f0e92e 72 catchError(err => this.restExtractor.handleError(err))
db400f44 73 )
a184c71b 74 }
c5911fd3 75
ce5496d6
C
76 getMyVideoQuotaUsed () {
77 const url = UserService.BASE_USERS_URL + '/me/video-quota-used'
c5911fd3 78
5fcbd898 79 return this.authHttp.get<UserVideoQuota>(url)
e4f0e92e 80 .pipe(catchError(err => this.restExtractor.handleError(err)))
c5911fd3 81 }
ecb4e35f
C
82
83 askResetPassword (email: string) {
84 const url = UserService.BASE_USERS_URL + '/ask-reset-password'
85
86 return this.authHttp.post(url, { email })
db400f44
C
87 .pipe(
88 map(this.restExtractor.extractDataBool),
e4f0e92e 89 catchError(err => this.restExtractor.handleError(err))
db400f44 90 )
ecb4e35f
C
91 }
92
93 resetPassword (userId: number, verificationString: string, password: string) {
94 const url = `${UserService.BASE_USERS_URL}/${userId}/reset-password`
95 const body = {
96 verificationString,
97 password
98 }
99
100 return this.authHttp.post(url, body)
db400f44
C
101 .pipe(
102 map(this.restExtractor.extractDataBool),
103 catchError(res => this.restExtractor.handleError(res))
104 )
ecb4e35f 105 }
d9eaee39
JM
106
107 verifyEmail (userId: number, verificationString: string) {
108 const url = `${UserService.BASE_USERS_URL}/${userId}/verify-email`
109 const body = {
110 verificationString
111 }
112
113 return this.authHttp.post(url, body)
114 .pipe(
115 map(this.restExtractor.extractDataBool),
116 catchError(res => this.restExtractor.handleError(res))
117 )
118 }
119
120 askSendVerifyEmail (email: string) {
121 const url = UserService.BASE_USERS_URL + '/ask-send-verify-email'
122
123 return this.authHttp.post(url, { email })
124 .pipe(
125 map(this.restExtractor.extractDataBool),
126 catchError(err => this.restExtractor.handleError(err))
127 )
128 }
74d63469
GR
129
130 autocomplete (search: string): Observable<string[]> {
131 const url = UserService.BASE_USERS_URL + 'autocomplete'
132 const params = new HttpParams().append('search', search)
133
134 return this.authHttp
135 .get<string[]>(url, { params })
136 .pipe(catchError(res => this.restExtractor.handleError(res)))
137 }
e724fa93
C
138
139 /* ###### Admin methods ###### */
140
141 addUser (userCreate: UserCreate) {
142 return this.authHttp.post(UserService.BASE_USERS_URL, userCreate)
143 .pipe(
144 map(this.restExtractor.extractDataBool),
145 catchError(err => this.restExtractor.handleError(err))
146 )
147 }
148
149 updateUser (userId: number, userUpdate: UserUpdate) {
150 return this.authHttp.put(UserService.BASE_USERS_URL + userId, userUpdate)
151 .pipe(
152 map(this.restExtractor.extractDataBool),
153 catchError(err => this.restExtractor.handleError(err))
154 )
155 }
156
fc2ec87a
JM
157 updateUsers (users: User[], userUpdate: UserUpdate) {
158 return from(users)
159 .pipe(
160 concatMap(u => this.authHttp.put(UserService.BASE_USERS_URL + u.id, userUpdate)),
161 toArray(),
162 catchError(err => this.restExtractor.handleError(err))
163 )
164 }
165
e724fa93
C
166 getUser (userId: number) {
167 return this.authHttp.get<User>(UserService.BASE_USERS_URL + userId)
168 .pipe(catchError(err => this.restExtractor.handleError(err)))
169 }
170
24b9417c 171 getUsers (pagination: RestPagination, sort: SortMeta, search?: string): Observable<ResultList<User>> {
e724fa93
C
172 let params = new HttpParams()
173 params = this.restService.addRestGetParams(params, pagination, sort)
174
24b9417c
C
175 if (search) params = params.append('search', search)
176
e724fa93
C
177 return this.authHttp.get<ResultList<User>>(UserService.BASE_USERS_URL, { params })
178 .pipe(
179 map(res => this.restExtractor.convertResultListDateToHuman(res)),
180 map(res => this.restExtractor.applyToResultListData(res, this.formatUser.bind(this))),
181 catchError(err => this.restExtractor.handleError(err))
182 )
183 }
184
791645e6
C
185 removeUser (usersArg: User | User[]) {
186 const users = Array.isArray(usersArg) ? usersArg : [ usersArg ]
187
188 return from(users)
189 .pipe(
190 concatMap(u => this.authHttp.delete(UserService.BASE_USERS_URL + u.id)),
191 toArray(),
192 catchError(err => this.restExtractor.handleError(err))
193 )
e724fa93
C
194 }
195
791645e6 196 banUsers (usersArg: User | User[], reason?: string) {
e724fa93 197 const body = reason ? { reason } : {}
791645e6 198 const users = Array.isArray(usersArg) ? usersArg : [ usersArg ]
e724fa93 199
791645e6
C
200 return from(users)
201 .pipe(
202 concatMap(u => this.authHttp.post(UserService.BASE_USERS_URL + u.id + '/block', body)),
203 toArray(),
204 catchError(err => this.restExtractor.handleError(err))
205 )
e724fa93
C
206 }
207
791645e6
C
208 unbanUsers (usersArg: User | User[]) {
209 const users = Array.isArray(usersArg) ? usersArg : [ usersArg ]
210
211 return from(users)
212 .pipe(
213 concatMap(u => this.authHttp.post(UserService.BASE_USERS_URL + u.id + '/unblock', {})),
214 toArray(),
215 catchError(err => this.restExtractor.handleError(err))
216 )
e724fa93
C
217 }
218
219 private formatUser (user: User) {
220 let videoQuota
221 if (user.videoQuota === -1) {
222 videoQuota = this.i18n('Unlimited')
223 } else {
224 videoQuota = this.bytesPipe.transform(user.videoQuota, 0)
225 }
226
227 const videoQuotaUsed = this.bytesPipe.transform(user.videoQuotaUsed, 0)
228
229 const roleLabels: { [ id in UserRole ]: string } = {
230 [UserRole.USER]: this.i18n('User'),
231 [UserRole.ADMINISTRATOR]: this.i18n('Administrator'),
232 [UserRole.MODERATOR]: this.i18n('Moderator')
233 }
234
235 return Object.assign(user, {
236 roleLabel: roleLabels[user.role],
237 videoQuota,
238 videoQuotaUsed
239 })
240 }
629d8d6f 241}