52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
module.exports = Self => {
|
|
Self.remoteMethodCtx('addTimeEntry', {
|
|
description: 'Adds a new hour registry',
|
|
accessType: 'WRITE',
|
|
accepts: [{
|
|
arg: 'id',
|
|
type: 'number',
|
|
description: 'The worker id',
|
|
http: {source: 'path'}
|
|
},
|
|
{
|
|
arg: 'timed',
|
|
type: 'date',
|
|
required: true
|
|
},
|
|
{
|
|
arg: 'direction',
|
|
type: 'string',
|
|
required: true
|
|
}],
|
|
returns: [{
|
|
type: 'Object',
|
|
root: true
|
|
}],
|
|
http: {
|
|
path: `/:id/addTimeEntry`,
|
|
verb: 'POST'
|
|
}
|
|
});
|
|
|
|
Self.addTimeEntry = async(ctx, workerId, options) => {
|
|
const models = Self.app.models;
|
|
const args = ctx.args;
|
|
const userId = ctx.req.accessToken.userId;
|
|
const myOptions = {userId};
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const isSubordinate = await models.Worker.isSubordinate(ctx, workerId, myOptions);
|
|
const isTeamBoss = await models.ACL.checkAccessAcl(ctx, 'Worker', 'isTeamBoss', 'WRITE');
|
|
const isHimself = userId == workerId;
|
|
|
|
if (!isSubordinate || (isHimself && !isTeamBoss))
|
|
throw new UserError(`You don't have enough privileges`);
|
|
|
|
return Self.clockIn(workerId, args.timed, args.direction, null, myOptions);
|
|
};
|
|
};
|