]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/utils/users/users.ts
Cleanup reset user password by admin
[github/Chocobozzz/PeerTube.git] / shared / utils / users / users.ts
CommitLineData
0e1dc3e7 1import * as request from 'supertest'
d175a6f7 2import { makePostBodyRequest, makePutBodyRequest, updateAvatarRequest } from '../requests/requests'
0e1dc3e7 3
9639bd17 4import { UserRole } from '../../index'
5import { NSFWPolicyType } from '../../models/videos/nsfw-policy.type'
757f0da3
C
6
7function createUser (
8 url: string,
9 accessToken: string,
10 username: string,
11 password: string,
12 videoQuota = 1000000,
bee0abff 13 videoQuotaDaily = -1,
757f0da3 14 role: UserRole = UserRole.USER,
f05a1c30 15 specialStatus = 200
757f0da3 16) {
0e1dc3e7
C
17 const path = '/api/v1/users'
18 const body = {
19 username,
20 password,
757f0da3 21 role,
5c98d3bf 22 email: username + '@example.com',
bee0abff
FA
23 videoQuota,
24 videoQuotaDaily
0e1dc3e7
C
25 }
26
27 return request(url)
28 .post(path)
29 .set('Accept', 'application/json')
30 .set('Authorization', 'Bearer ' + accessToken)
31 .send(body)
32 .expect(specialStatus)
33}
34
35function registerUser (url: string, username: string, password: string, specialStatus = 204) {
36 const path = '/api/v1/users/register'
37 const body = {
38 username,
39 password,
40 email: username + '@example.com'
41 }
42
43 return request(url)
44 .post(path)
45 .set('Accept', 'application/json')
46 .send(body)
47 .expect(specialStatus)
48}
49
26d21b78 50function getMyUserInformation (url: string, accessToken: string, specialStatus = 200) {
0e1dc3e7
C
51 const path = '/api/v1/users/me'
52
53 return request(url)
54 .get(path)
55 .set('Accept', 'application/json')
56 .set('Authorization', 'Bearer ' + accessToken)
26d21b78 57 .expect(specialStatus)
0e1dc3e7
C
58 .expect('Content-Type', /json/)
59}
60
92b9d60c
C
61function deleteMe (url: string, accessToken: string, specialStatus = 204) {
62 const path = '/api/v1/users/me'
63
64 return request(url)
65 .delete(path)
66 .set('Accept', 'application/json')
67 .set('Authorization', 'Bearer ' + accessToken)
68 .expect(specialStatus)
69}
70
ce5496d6
C
71function getMyUserVideoQuotaUsed (url: string, accessToken: string, specialStatus = 200) {
72 const path = '/api/v1/users/me/video-quota-used'
73
74 return request(url)
75 .get(path)
76 .set('Accept', 'application/json')
77 .set('Authorization', 'Bearer ' + accessToken)
78 .expect(specialStatus)
79 .expect('Content-Type', /json/)
80}
81
5c98d3bf
C
82function getUserInformation (url: string, accessToken: string, userId: number) {
83 const path = '/api/v1/users/' + userId
84
85 return request(url)
86 .get(path)
87 .set('Accept', 'application/json')
88 .set('Authorization', 'Bearer ' + accessToken)
89 .expect(200)
90 .expect('Content-Type', /json/)
91}
92
26d21b78 93function getMyUserVideoRating (url: string, accessToken: string, videoId: number | string, specialStatus = 200) {
0e1dc3e7
C
94 const path = '/api/v1/users/me/videos/' + videoId + '/rating'
95
96 return request(url)
97 .get(path)
98 .set('Accept', 'application/json')
99 .set('Authorization', 'Bearer ' + accessToken)
26d21b78 100 .expect(specialStatus)
0e1dc3e7
C
101 .expect('Content-Type', /json/)
102}
103
86d13ec2 104function getUsersList (url: string, accessToken: string) {
0e1dc3e7
C
105 const path = '/api/v1/users'
106
107 return request(url)
108 .get(path)
109 .set('Accept', 'application/json')
86d13ec2 110 .set('Authorization', 'Bearer ' + accessToken)
0e1dc3e7
C
111 .expect(200)
112 .expect('Content-Type', /json/)
113}
114
24b9417c 115function getUsersListPaginationAndSort (url: string, accessToken: string, start: number, count: number, sort: string, search?: string) {
0e1dc3e7
C
116 const path = '/api/v1/users'
117
118 return request(url)
119 .get(path)
120 .query({ start })
121 .query({ count })
122 .query({ sort })
24b9417c 123 .query({ search })
0e1dc3e7 124 .set('Accept', 'application/json')
86d13ec2 125 .set('Authorization', 'Bearer ' + accessToken)
0e1dc3e7
C
126 .expect(200)
127 .expect('Content-Type', /json/)
128}
129
26d21b78 130function removeUser (url: string, userId: number | string, accessToken: string, expectedStatus = 204) {
0e1dc3e7
C
131 const path = '/api/v1/users'
132
133 return request(url)
134 .delete(path + '/' + userId)
135 .set('Accept', 'application/json')
136 .set('Authorization', 'Bearer ' + accessToken)
137 .expect(expectedStatus)
138}
139
eacb25c4 140function blockUser (url: string, userId: number | string, accessToken: string, expectedStatus = 204, reason?: string) {
e6921918 141 const path = '/api/v1/users'
eacb25c4
C
142 let body: any
143 if (reason) body = { reason }
e6921918
C
144
145 return request(url)
146 .post(path + '/' + userId + '/block')
eacb25c4 147 .send(body)
e6921918
C
148 .set('Accept', 'application/json')
149 .set('Authorization', 'Bearer ' + accessToken)
150 .expect(expectedStatus)
151}
152
153function unblockUser (url: string, userId: number | string, accessToken: string, expectedStatus = 204) {
154 const path = '/api/v1/users'
155
156 return request(url)
157 .post(path + '/' + userId + '/unblock')
158 .set('Accept', 'application/json')
159 .set('Authorization', 'Bearer ' + accessToken)
160 .expect(expectedStatus)
161}
162
26d21b78
C
163function updateMyUser (options: {
164 url: string
8b9a525a
C
165 accessToken: string
166 currentPassword?: string
167 newPassword?: string
168 nsfwPolicy?: NSFWPolicyType
169 email?: string
26d21b78 170 autoPlayVideo?: boolean
8b9a525a 171 displayName?: string
2422c46b 172 description?: string
8b9a525a 173 videosHistoryEnabled?: boolean
26d21b78 174}) {
5c98d3bf 175 const path = '/api/v1/users/me'
0e1dc3e7
C
176
177 const toSend = {}
a890d1e0 178 if (options.currentPassword !== undefined && options.currentPassword !== null) toSend['currentPassword'] = options.currentPassword
26d21b78 179 if (options.newPassword !== undefined && options.newPassword !== null) toSend['password'] = options.newPassword
0883b324 180 if (options.nsfwPolicy !== undefined && options.nsfwPolicy !== null) toSend['nsfwPolicy'] = options.nsfwPolicy
26d21b78
C
181 if (options.autoPlayVideo !== undefined && options.autoPlayVideo !== null) toSend['autoPlayVideo'] = options.autoPlayVideo
182 if (options.email !== undefined && options.email !== null) toSend['email'] = options.email
2422c46b 183 if (options.description !== undefined && options.description !== null) toSend['description'] = options.description
ed56ad11 184 if (options.displayName !== undefined && options.displayName !== null) toSend['displayName'] = options.displayName
8b9a525a
C
185 if (options.videosHistoryEnabled !== undefined && options.videosHistoryEnabled !== null) {
186 toSend['videosHistoryEnabled'] = options.videosHistoryEnabled
187 }
26d21b78
C
188
189 return makePutBodyRequest({
190 url: options.url,
191 path,
192 token: options.accessToken,
193 fields: toSend,
194 statusCodeExpected: 204
195 })
5c98d3bf
C
196}
197
c5911fd3
C
198function updateMyAvatar (options: {
199 url: string,
200 accessToken: string,
201 fixture: string
202}) {
203 const path = '/api/v1/users/me/avatar/pick'
c5911fd3 204
4bbfc6c6 205 return updateAvatarRequest(Object.assign(options, { path }))
c5911fd3
C
206}
207
26d21b78
C
208function updateUser (options: {
209 url: string
210 userId: number,
211 accessToken: string,
212 email?: string,
fc2ec87a 213 emailVerified?: boolean,
26d21b78 214 videoQuota?: number,
bee0abff 215 videoQuotaDaily?: number,
b426edd4 216 password?: string,
26d21b78
C
217 role?: UserRole
218}) {
219 const path = '/api/v1/users/' + options.userId
5c98d3bf
C
220
221 const toSend = {}
b426edd4 222 if (options.password !== undefined && options.password !== null) toSend['password'] = options.password
26d21b78 223 if (options.email !== undefined && options.email !== null) toSend['email'] = options.email
fc2ec87a 224 if (options.emailVerified !== undefined && options.emailVerified !== null) toSend['emailVerified'] = options.emailVerified
26d21b78 225 if (options.videoQuota !== undefined && options.videoQuota !== null) toSend['videoQuota'] = options.videoQuota
bee0abff 226 if (options.videoQuotaDaily !== undefined && options.videoQuotaDaily !== null) toSend['videoQuotaDaily'] = options.videoQuotaDaily
26d21b78
C
227 if (options.role !== undefined && options.role !== null) toSend['role'] = options.role
228
229 return makePutBodyRequest({
230 url: options.url,
231 path,
232 token: options.accessToken,
233 fields: toSend,
234 statusCodeExpected: 204
235 })
0e1dc3e7
C
236}
237
f076daa7
C
238function askResetPassword (url: string, email: string) {
239 const path = '/api/v1/users/ask-reset-password'
240
241 return makePostBodyRequest({
242 url,
243 path,
244 fields: { email },
245 statusCodeExpected: 204
246 })
247}
248
249function resetPassword (url: string, userId: number, verificationString: string, password: string, statusCodeExpected = 204) {
250 const path = '/api/v1/users/' + userId + '/reset-password'
251
252 return makePostBodyRequest({
253 url,
254 path,
255 fields: { password, verificationString },
256 statusCodeExpected
257 })
258}
259
d9eaee39
JM
260function askSendVerifyEmail (url: string, email: string) {
261 const path = '/api/v1/users/ask-send-verify-email'
262
263 return makePostBodyRequest({
264 url,
265 path,
266 fields: { email },
267 statusCodeExpected: 204
268 })
269}
270
271function verifyEmail (url: string, userId: number, verificationString: string, statusCodeExpected = 204) {
272 const path = '/api/v1/users/' + userId + '/verify-email'
273
274 return makePostBodyRequest({
275 url,
276 path,
277 fields: { verificationString },
278 statusCodeExpected
279 })
280}
281
0e1dc3e7
C
282// ---------------------------------------------------------------------------
283
284export {
285 createUser,
286 registerUser,
5c98d3bf 287 getMyUserInformation,
26d21b78 288 getMyUserVideoRating,
92b9d60c 289 deleteMe,
ce5496d6 290 getMyUserVideoQuotaUsed,
0e1dc3e7
C
291 getUsersList,
292 getUsersListPaginationAndSort,
293 removeUser,
5c98d3bf
C
294 updateUser,
295 updateMyUser,
c5911fd3 296 getUserInformation,
e6921918
C
297 blockUser,
298 unblockUser,
f076daa7
C
299 askResetPassword,
300 resetPassword,
d9eaee39
JM
301 updateMyAvatar,
302 askSendVerifyEmail,
303 verifyEmail
0e1dc3e7 304}