2021-07-29 04:27:24 -04:00
|
|
|
import { omit } from 'lodash'
|
|
|
|
import { pick } from '@shared/core-utils'
|
2021-07-13 08:23:01 -04:00
|
|
|
import {
|
2021-07-16 08:27:30 -04:00
|
|
|
HttpStatusCode,
|
2021-07-13 08:23:01 -04:00
|
|
|
MyUser,
|
|
|
|
ResultList,
|
2021-12-17 05:58:15 -05:00
|
|
|
ScopedToken,
|
2021-07-13 08:23:01 -04:00
|
|
|
User,
|
|
|
|
UserAdminFlag,
|
|
|
|
UserCreateResult,
|
|
|
|
UserRole,
|
|
|
|
UserUpdate,
|
|
|
|
UserUpdateMe,
|
|
|
|
UserVideoQuota,
|
|
|
|
UserVideoRate
|
|
|
|
} from '@shared/models'
|
|
|
|
import { unwrapBody } from '../requests'
|
|
|
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
|
|
|
|
|
|
|
export class UsersCommand extends AbstractCommand {
|
|
|
|
|
|
|
|
askResetPassword (options: OverrideCommandOptions & {
|
|
|
|
email: string
|
|
|
|
}) {
|
|
|
|
const { email } = options
|
|
|
|
const path = '/api/v1/users/ask-reset-password'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: { email },
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
resetPassword (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
verificationString: string
|
|
|
|
password: string
|
|
|
|
}) {
|
|
|
|
const { userId, verificationString, password } = options
|
|
|
|
const path = '/api/v1/users/' + userId + '/reset-password'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: { password, verificationString },
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
askSendVerifyEmail (options: OverrideCommandOptions & {
|
|
|
|
email: string
|
|
|
|
}) {
|
|
|
|
const { email } = options
|
|
|
|
const path = '/api/v1/users/ask-send-verify-email'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: { email },
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
verifyEmail (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
verificationString: string
|
|
|
|
isPendingEmail?: boolean // default false
|
|
|
|
}) {
|
|
|
|
const { userId, verificationString, isPendingEmail = false } = options
|
|
|
|
const path = '/api/v1/users/' + userId + '/verify-email'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: {
|
|
|
|
verificationString,
|
|
|
|
isPendingEmail
|
|
|
|
},
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
banUser (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
reason?: string
|
|
|
|
}) {
|
|
|
|
const { userId, reason } = options
|
|
|
|
const path = '/api/v1/users' + '/' + userId + '/block'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: { reason },
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
unbanUser (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
}) {
|
|
|
|
const { userId } = options
|
|
|
|
const path = '/api/v1/users' + '/' + userId + '/unblock'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
getMyScopedTokens (options: OverrideCommandOptions = {}) {
|
|
|
|
const path = '/api/v1/users/scoped-tokens'
|
|
|
|
|
|
|
|
return this.getRequestBody<ScopedToken>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
renewMyScopedTokens (options: OverrideCommandOptions = {}) {
|
|
|
|
const path = '/api/v1/users/scoped-tokens'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
create (options: OverrideCommandOptions & {
|
|
|
|
username: string
|
|
|
|
password?: string
|
|
|
|
videoQuota?: number
|
|
|
|
videoQuotaDaily?: number
|
|
|
|
role?: UserRole
|
|
|
|
adminFlags?: UserAdminFlag
|
|
|
|
}) {
|
|
|
|
const {
|
|
|
|
username,
|
|
|
|
adminFlags,
|
|
|
|
password = 'password',
|
|
|
|
videoQuota = 42000000,
|
|
|
|
videoQuotaDaily = -1,
|
|
|
|
role = UserRole.USER
|
|
|
|
} = options
|
|
|
|
|
|
|
|
const path = '/api/v1/users'
|
|
|
|
|
|
|
|
return unwrapBody<{ user: UserCreateResult }>(this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: {
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
role,
|
|
|
|
adminFlags,
|
|
|
|
email: username + '@example.com',
|
|
|
|
videoQuota,
|
|
|
|
videoQuotaDaily
|
|
|
|
},
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})).then(res => res.user)
|
|
|
|
}
|
|
|
|
|
2021-10-19 09:02:43 -04:00
|
|
|
async generate (username: string, role?: UserRole) {
|
2021-07-13 08:23:01 -04:00
|
|
|
const password = 'password'
|
2021-10-19 09:02:43 -04:00
|
|
|
const user = await this.create({ username, password, role })
|
2021-07-13 08:23:01 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const token = await this.server.login.getAccessToken({ username, password })
|
2021-07-13 08:23:01 -04:00
|
|
|
|
|
|
|
const me = await this.getMyInfo({ token })
|
|
|
|
|
|
|
|
return {
|
|
|
|
token,
|
|
|
|
userId: user.id,
|
2021-12-13 09:29:13 -05:00
|
|
|
userChannelId: me.videoChannels[0].id,
|
|
|
|
userChannelName: me.videoChannels[0].name
|
2021-07-13 08:23:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 09:02:43 -04:00
|
|
|
async generateUserAndToken (username: string, role?: UserRole) {
|
2021-07-13 08:23:01 -04:00
|
|
|
const password = 'password'
|
2021-10-19 09:02:43 -04:00
|
|
|
await this.create({ username, password, role })
|
2021-07-13 08:23:01 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
return this.server.login.getAccessToken({ username, password })
|
2021-07-13 08:23:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
register (options: OverrideCommandOptions & {
|
|
|
|
username: string
|
|
|
|
password?: string
|
|
|
|
displayName?: string
|
|
|
|
channel?: {
|
|
|
|
name: string
|
|
|
|
displayName: string
|
|
|
|
}
|
|
|
|
}) {
|
|
|
|
const { username, password = 'password', displayName, channel } = options
|
|
|
|
const path = '/api/v1/users/register'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: {
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
email: username + '@example.com',
|
|
|
|
displayName,
|
|
|
|
channel
|
|
|
|
},
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
getMyInfo (options: OverrideCommandOptions = {}) {
|
|
|
|
const path = '/api/v1/users/me'
|
|
|
|
|
|
|
|
return this.getRequestBody<MyUser>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getMyQuotaUsed (options: OverrideCommandOptions = {}) {
|
|
|
|
const path = '/api/v1/users/me/video-quota-used'
|
|
|
|
|
|
|
|
return this.getRequestBody<UserVideoQuota>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getMyRating (options: OverrideCommandOptions & {
|
|
|
|
videoId: number | string
|
|
|
|
}) {
|
|
|
|
const { videoId } = options
|
|
|
|
const path = '/api/v1/users/me/videos/' + videoId + '/rating'
|
|
|
|
|
|
|
|
return this.getRequestBody<UserVideoRate>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteMe (options: OverrideCommandOptions = {}) {
|
|
|
|
const path = '/api/v1/users/me'
|
|
|
|
|
|
|
|
return this.deleteRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
updateMe (options: OverrideCommandOptions & UserUpdateMe) {
|
|
|
|
const path = '/api/v1/users/me'
|
|
|
|
|
|
|
|
const toSend: UserUpdateMe = omit(options, 'url', 'accessToken')
|
|
|
|
|
|
|
|
return this.putBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: toSend,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
updateMyAvatar (options: OverrideCommandOptions & {
|
|
|
|
fixture: string
|
|
|
|
}) {
|
|
|
|
const { fixture } = options
|
|
|
|
const path = '/api/v1/users/me/avatar/pick'
|
|
|
|
|
|
|
|
return this.updateImageRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fixture,
|
|
|
|
fieldname: 'avatarfile',
|
|
|
|
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
get (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
withStats?: boolean // default false
|
|
|
|
}) {
|
|
|
|
const { userId, withStats } = options
|
|
|
|
const path = '/api/v1/users/' + userId
|
|
|
|
|
|
|
|
return this.getRequestBody<User>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query: { withStats },
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
list (options: OverrideCommandOptions & {
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
|
|
|
search?: string
|
|
|
|
blocked?: boolean
|
|
|
|
} = {}) {
|
|
|
|
const path = '/api/v1/users'
|
|
|
|
|
|
|
|
return this.getRequestBody<ResultList<User>>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query: pick(options, [ 'start', 'count', 'sort', 'search', 'blocked' ]),
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
remove (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
}) {
|
|
|
|
const { userId } = options
|
|
|
|
const path = '/api/v1/users/' + userId
|
|
|
|
|
|
|
|
return this.deleteRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
update (options: OverrideCommandOptions & {
|
|
|
|
userId: number
|
|
|
|
email?: string
|
|
|
|
emailVerified?: boolean
|
|
|
|
videoQuota?: number
|
|
|
|
videoQuotaDaily?: number
|
|
|
|
password?: string
|
|
|
|
adminFlags?: UserAdminFlag
|
|
|
|
pluginAuth?: string
|
|
|
|
role?: UserRole
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/users/' + options.userId
|
|
|
|
|
|
|
|
const toSend: UserUpdate = {}
|
|
|
|
if (options.password !== undefined && options.password !== null) toSend.password = options.password
|
|
|
|
if (options.email !== undefined && options.email !== null) toSend.email = options.email
|
|
|
|
if (options.emailVerified !== undefined && options.emailVerified !== null) toSend.emailVerified = options.emailVerified
|
|
|
|
if (options.videoQuota !== undefined && options.videoQuota !== null) toSend.videoQuota = options.videoQuota
|
|
|
|
if (options.videoQuotaDaily !== undefined && options.videoQuotaDaily !== null) toSend.videoQuotaDaily = options.videoQuotaDaily
|
|
|
|
if (options.role !== undefined && options.role !== null) toSend.role = options.role
|
|
|
|
if (options.adminFlags !== undefined && options.adminFlags !== null) toSend.adminFlags = options.adminFlags
|
|
|
|
if (options.pluginAuth !== undefined) toSend.pluginAuth = options.pluginAuth
|
|
|
|
|
|
|
|
return this.putBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: toSend,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|