Delegated Administration: Extension Hooks
If you're a user assigned the Delegated Admin - Administrator role, you can manage the different Extension Hooks and queries that allow you to customize the behavior of the Delegated Administration extension.
To access the configuration area:
Log in to the Delegated Administration Dashboard.
Click on your name in the top-right corner. You'll see a dropdown menu; click on the Configure option.
The Configuration page to which you're redirected is where you can manage your Hooks and queries.
Extension Hooks Context
The context (ctx) object will expose a few helpers and information about the current request. The following methods and properties are available in every Extension Hook:
Logging
Caching
Custom Data
Payload and Request
Remote Calls
Logging
To add a message to the Webtask logs (which you can view using the Realtime Webtask Logs extension), call the log method:
function(ctx, callback) {
ctx.log('Logging action:', ctx.payload.action);
return callback();
}
Was this helpful?
To learn more about the Realtime Webtask Log extension, read Realtime Webtask Logs.
Caching
To cache something (such as a long list of departments), you can store it on the context's global object. This object will be available until the Webtask container recycles.
function(ctx, callback) {
ctx.global.departments = [ 'IT', 'HR', 'Finance' ];
return callback();
}
Was this helpful?
Custom data
You can store custom data within the extension. This field is limited to 400kb of data.
var data = {
departments: [ 'IT', 'HR', 'Finance' ]
};
ctx.write(data)
.then(function() {
// ...
})
.catch(function(err) {
// ...
});
Was this helpful?
To read the data:
ctx.read()
.then(function(data) {
// ...
})
.catch(function(err) {
// ...
});
Was this helpful?
Payload and request
Each Extension Hook exposes the current payload or request with specific information. The request will always contain information about the user that is logged into the Users Dashboard:
function(ctx, callback) {
ctx.log('Current User:', ctx.request.user);
return callback();
}
Was this helpful?
Remote calls
If you want to call an external service (such as an API) to validate data or to load memberships, you can do this using the request
module.
function(ctx, callback) {
var request = require('request');
request('http://api.mycompany.com/departments', function (error, response, body) {
if (error) {
return callback(error);
}
// ...
});
}
Was this helpful?
Hook contract
ctx
: The context objectpayload
: The payload objectaction
: The current action (for example,delete:user
) that is being executeduser
: The user on which the action is being executed
callback(error)
: The callback to which you can return an error if access is denied
Sample use
Kelly manages the Finance department, and she should only be able to access users within her department.
function(ctx, callback) {
if (ctx.payload.action === 'delete:user') {
return callback(new Error('You are not allowed to delete users.'));
}
// Get the department from the current user's metadata.
var department = ctx.request.user.app_metadata && ctx.request.user.app_metadata.department;
if (!department || !department.length) {
return callback(new Error('The current user is not part of any department.'));
}
// The IT department can access all users.
if (department === 'IT') {
return callback();
}
ctx.log('Verifying access:', ctx.payload.user.app_metadata.department, department);
if (!ctx.payload.user.app_metadata.department || ctx.payload.user.app_metadata.department !== department) {
return callback(new Error('You can only access users within your own department.'));
}
return callback();
}
Was this helpful?
If this hook is not configured, all users will be accessible.
Supported action names:
read:user
delete:user
reset:password
change:password
change:username
change:email
read:devices
read:logs
remove:multifactor-provider
block:user
unblock:user
send:verification-email
Available Extension Hooks
The following Extension Hooks are available for use with the Delegated Administration Application: