salix/modules/account/back/methods/user-account/sync.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-10-31 20:16:58 +00:00
2020-09-21 11:24:43 +00:00
module.exports = Self => {
Self.remoteMethod('sync', {
description: 'Synchronizes the user with the other user databases',
accepts: [
{
arg: 'userName',
type: 'string',
description: 'The user name',
required: true
}, {
arg: 'password',
type: 'string',
description: 'The password'
}, {
arg: 'force',
type: 'boolean',
description: 'Whether to force synchronization'
2020-09-21 11:24:43 +00:00
}
],
http: {
path: `/:userName/sync`,
2020-09-21 11:24:43 +00:00
verb: 'PATCH'
}
});
Self.sync = async function(userName, password, force) {
2020-09-21 11:24:43 +00:00
let $ = Self.app.models;
let user = await $.Account.findOne({
2020-09-21 14:09:34 +00:00
fields: ['id'],
2020-09-21 11:24:43 +00:00
where: {name: userName}
});
2020-09-21 14:09:34 +00:00
let isSync = !await $.UserSync.exists(userName);
2020-09-21 11:24:43 +00:00
if (!force && isSync && user) return;
await $.AccountConfig.syncUser(userName, password);
await $.UserSync.destroyById(userName);
2020-09-21 11:24:43 +00:00
};
};
2020-10-31 20:16:58 +00:00