mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
export default async function addcustomsmtp(request) {
|
|
if (!request?.user) {
|
|
throw new Parse.Error(Parse.Error.INVALID_SESSION_TOKEN, 'User is not authenticated.');
|
|
}
|
|
const host = request.params.host;
|
|
const port = request.params.port;
|
|
const username = request.params.username;
|
|
const password = request.params.password;
|
|
if (host && port && username && password) {
|
|
try {
|
|
const extUserCls = new Parse.Query('contracts_Users');
|
|
extUserCls.equalTo('UserId', request.user);
|
|
const extUser = await extUserCls.first({ useMasterKey: true });
|
|
if (extUser) {
|
|
const extUserCls = new Parse.Object('contracts_Users');
|
|
extUserCls.id = extUser.id;
|
|
extUserCls.set('SmtpConfig', { host, port, username, password });
|
|
extUserCls.set('active_mail_adapter', 'smtp');
|
|
const updateExtUser = await extUserCls.save(null, { useMasterKey: true });
|
|
// console.log('updateExtUser ', updateExtUser);
|
|
return updateExtUser.updatedAt;
|
|
}
|
|
return extUser;
|
|
} catch (err) {
|
|
console.log('Err in add custom smtp', err);
|
|
const code = err.code || 400;
|
|
const msg = err.message || 'Something went wrong.';
|
|
throw new Parse.Error(code, msg);
|
|
}
|
|
} else {
|
|
throw new Parse.Error(Parse.Error.INVALID_QUERY, 'Please provide all parameters.');
|
|
}
|
|
}
|