import { UserAdminFlag } from '../../../../shared/models/users/user-flag.model'
import { UserRegister } from '../../../../shared/models/users/user-register.model'
import { MUser, MUserAccountDefault } from '@server/typings/models'
+import { Hooks } from '@server/lib/plugins/hooks'
const auditLogger = auditLoggerFactory('users')
usersRouter.post('/token',
loginRateLimiter,
token,
- success
+ tokenSuccess
)
// TODO: Once https://github.com/oauthjs/node-oauth2-server/pull/289 is merged, implement revoke token route
adminFlags: body.adminFlags || UserAdminFlag.NONE
}) as MUser
- const { user, account } = await createUserAccountAndChannelAndPlaylist({ userToCreate: userToCreate })
+ const { user, account, videoChannel } = await createUserAccountAndChannelAndPlaylist({ userToCreate: userToCreate })
auditLogger.create(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()))
logger.info('User %s with its channel and account created.', body.username)
+ Hooks.runAction('action:api.user.created', { body, user, account, videoChannel })
+
return res.json({
user: {
id: user.id,
emailVerified: CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION ? false : null
})
- const { user } = await createUserAccountAndChannelAndPlaylist({
+ const { user, account, videoChannel } = await createUserAccountAndChannelAndPlaylist({
userToCreate: userToCreate,
userDisplayName: body.displayName || undefined,
channelNames: body.channel
Notifier.Instance.notifyOnNewUserRegistration(user)
+ Hooks.runAction('action:api.user.registered', { body, user, account, videoChannel })
+
return res.type('json').status(204).end()
}
await changeUserBlock(res, user, false)
+ Hooks.runAction('action:api.user.unblocked', { user })
+
return res.status(204).end()
}
await changeUserBlock(res, user, true, reason)
+ Hooks.runAction('action:api.user.blocked', { user })
+
return res.status(204).end()
}
auditLogger.delete(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()))
+ Hooks.runAction('action:api.user.deleted', { user })
+
return res.sendStatus(204)
}
auditLogger.update(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()), oldUserAuditView)
+ Hooks.runAction('action:api.user.updated', { user })
+
// Don't need to send this update to followers, these attributes are not federated
return res.sendStatus(204)
return res.status(204).end()
}
-function success (req: express.Request, res: express.Response) {
- res.end()
+function tokenSuccess (req: express.Request) {
+ const username = req.body.username
+
+ Hooks.runAction('action:api.user.oauth2-got-token', { username, ip: req.ip })
}
async function changeUserBlock (res: express.Response, user: MUserAccountDefault, block: boolean, reason?: string) {
import {
cleanupTests,
flushAndRunMultipleServers,
- flushAndRunServer, killallServers, reRunServer,
+ killallServers,
+ reRunServer,
ServerInfo,
waitUntilLog
} from '../../../shared/extra-utils/server/servers'
import {
addVideoCommentReply,
- addVideoCommentThread, deleteVideoComment,
+ addVideoCommentThread,
+ blockUser,
+ createUser,
+ deleteVideoComment,
getPluginTestPath,
- installPlugin, removeVideo,
+ installPlugin, login,
+ registerUser, removeUser,
setAccessTokensToServers,
+ unblockUser, updateUser,
updateVideo,
uploadVideo,
- viewVideo
+ viewVideo,
+ userLogin
} from '../../../shared/extra-utils'
const expect = chai.expect
await reRunServer(servers[0])
})
- it('Should run action:application.listening', async function () {
- await checkHook('action:application.listening')
+ describe('Application hooks', function () {
+ it('Should run action:application.listening', async function () {
+ await checkHook('action:application.listening')
+ })
})
- it('Should run action:api.video.uploaded', async function () {
- const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' })
- videoUUID = res.body.video.uuid
+ describe('Videos hooks', function () {
+ it('Should run action:api.video.uploaded', async function () {
+ const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' })
+ videoUUID = res.body.video.uuid
- await checkHook('action:api.video.uploaded')
- })
+ await checkHook('action:api.video.uploaded')
+ })
- it('Should run action:api.video.updated', async function () {
- await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, { name: 'video updated' })
+ it('Should run action:api.video.updated', async function () {
+ await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, { name: 'video updated' })
- await checkHook('action:api.video.updated')
- })
+ await checkHook('action:api.video.updated')
+ })
- it('Should run action:api.video.viewed', async function () {
- await viewVideo(servers[0].url, videoUUID)
+ it('Should run action:api.video.viewed', async function () {
+ await viewVideo(servers[0].url, videoUUID)
- await checkHook('action:api.video.viewed')
+ await checkHook('action:api.video.viewed')
+ })
})
- it('Should run action:api.video-thread.created', async function () {
- const res = await addVideoCommentThread(servers[0].url, servers[0].accessToken, videoUUID, 'thread')
- threadId = res.body.comment.id
+ describe('Comments hooks', function () {
+ it('Should run action:api.video-thread.created', async function () {
+ const res = await addVideoCommentThread(servers[0].url, servers[0].accessToken, videoUUID, 'thread')
+ threadId = res.body.comment.id
- await checkHook('action:api.video-thread.created')
- })
+ await checkHook('action:api.video-thread.created')
+ })
- it('Should run action:api.video-comment-reply.created', async function () {
- await addVideoCommentReply(servers[0].url, servers[0].accessToken, videoUUID, threadId, 'reply')
+ it('Should run action:api.video-comment-reply.created', async function () {
+ await addVideoCommentReply(servers[0].url, servers[0].accessToken, videoUUID, threadId, 'reply')
- await checkHook('action:api.video-comment-reply.created')
- })
+ await checkHook('action:api.video-comment-reply.created')
+ })
- it('Should run action:api.video-comment.deleted', async function () {
- await deleteVideoComment(servers[0].url, servers[0].accessToken, videoUUID, threadId)
+ it('Should run action:api.video-comment.deleted', async function () {
+ await deleteVideoComment(servers[0].url, servers[0].accessToken, videoUUID, threadId)
- await checkHook('action:api.video-comment.deleted')
+ await checkHook('action:api.video-comment.deleted')
+ })
})
- it('Should run action:api.video.deleted', async function () {
- await removeVideo(servers[0].url, servers[0].accessToken, videoUUID)
+ describe('Users hooks', function () {
+ let userId: number
+
+ it('Should run action:api.user.registered', async function () {
+ await registerUser(servers[0].url, 'registered_user', 'super_password')
- await checkHook('action:api.video.deleted')
+ await checkHook('action:api.user.registered')
+ })
+
+ it('Should run action:api.user.created', async function () {
+ const res = await createUser({
+ url: servers[0].url,
+ accessToken: servers[0].accessToken,
+ username: 'created_user',
+ password: 'super_password'
+ })
+ userId = res.body.user.id
+
+ await checkHook('action:api.user.created')
+ })
+
+ it('Should run action:api.user.oauth2-got-token', async function () {
+ await userLogin(servers[0], { username: 'created_user', password: 'super_password' })
+
+ await checkHook('action:api.user.oauth2-got-token')
+ })
+
+ it('Should run action:api.user.blocked', async function () {
+ await blockUser(servers[0].url, userId, servers[0].accessToken)
+
+ await checkHook('action:api.user.blocked')
+ })
+
+ it('Should run action:api.user.unblocked', async function () {
+ await unblockUser(servers[0].url, userId, servers[0].accessToken)
+
+ await checkHook('action:api.user.unblocked')
+ })
+
+ it('Should run action:api.user.updated', async function () {
+ await updateUser({ url: servers[0].url, accessToken: servers[0].accessToken, userId, videoQuota: 50 })
+
+ await checkHook('action:api.user.updated')
+ })
+
+ it('Should run action:api.user.deleted', async function () {
+ await removeUser(servers[0].url, userId, servers[0].accessToken)
+
+ await checkHook('action:api.user.deleted')
+ })
})
after(async function () {