59 lines
1.7 KiB
JavaScript
59 lines
1.7 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 currentUserId = ctx.req.accessToken.userId;
|
|
|
|
let myOptions = {};
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const isSubordinate = await models.Worker.isSubordinate(ctx, workerId, myOptions);
|
|
const isTeamBoss = await models.Account.hasRole(currentUserId, 'teamBoss', myOptions);
|
|
const isHimself = currentUserId == workerId;
|
|
|
|
if (isSubordinate === false || (isSubordinate && isHimself && !isTeamBoss))
|
|
throw new UserError(`You don't have enough privileges`);
|
|
|
|
const timed = new Date(args.timed);
|
|
|
|
return models.WorkerTimeControl.create({
|
|
userFk: workerId,
|
|
direction: args.direction,
|
|
timed: timed,
|
|
manual: true
|
|
}, myOptions);
|
|
};
|
|
};
|