mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-22 21:31:35 +03:00
More SMS work.
This commit is contained in:
parent
200acde9c8
commit
2b6925205f
23
meshsms.js
23
meshsms.js
@ -43,7 +43,6 @@ module.exports.CreateMeshSMS = function (parent) {
|
|||||||
// Send an SMS message
|
// Send an SMS message
|
||||||
obj.sendSMS = function (to, msg, func) {
|
obj.sendSMS = function (to, msg, func) {
|
||||||
parent.debug('email', 'Sending SMS to: ' + to + ': ' + msg);
|
parent.debug('email', 'Sending SMS to: ' + to + ': ' + msg);
|
||||||
console.log({ from: parent.config.sms.from, to: to, body: msg });
|
|
||||||
if (parent.config.sms.provider == 'twilio') {
|
if (parent.config.sms.provider == 'twilio') {
|
||||||
obj.provider.messages.create({
|
obj.provider.messages.create({
|
||||||
from: parent.config.sms.from,
|
from: parent.config.sms.from,
|
||||||
@ -78,7 +77,7 @@ module.exports.CreateMeshSMS = function (parent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get the english email
|
// Get the english email
|
||||||
if ((htmlfile == null) || (txtfile == null)) {
|
if (txtfile == null) {
|
||||||
var pathTxt = obj.parent.path.join(emailsPath, 'sms-messages.txt');
|
var pathTxt = obj.parent.path.join(emailsPath, 'sms-messages.txt');
|
||||||
if (obj.parent.fs.existsSync(pathTxt)) {
|
if (obj.parent.fs.existsSync(pathTxt)) {
|
||||||
txtfile = obj.parent.fs.readFileSync(pathTxt).toString();
|
txtfile = obj.parent.fs.readFileSync(pathTxt).toString();
|
||||||
@ -89,8 +88,8 @@ module.exports.CreateMeshSMS = function (parent) {
|
|||||||
if (txtfile == null) { return null; }
|
if (txtfile == null) { return null; }
|
||||||
|
|
||||||
// Decode the TXT file
|
// Decode the TXT file
|
||||||
lines = txtfile.split('\r\n').join('\n').split('\n')
|
var lines = txtfile.split('\r\n').join('\n').split('\n')
|
||||||
if (lines.length >= templateNumber) return null;
|
if (lines.length <= templateNumber) return null;
|
||||||
|
|
||||||
return lines[templateNumber];
|
return lines[templateNumber];
|
||||||
}
|
}
|
||||||
@ -99,22 +98,16 @@ module.exports.CreateMeshSMS = function (parent) {
|
|||||||
obj.sendPhoneCheck = function (domain, phoneNumber, verificationCode, language, func) {
|
obj.sendPhoneCheck = function (domain, phoneNumber, verificationCode, language, func) {
|
||||||
parent.debug('email', "Sending verification SMS to " + phoneNumber);
|
parent.debug('email', "Sending verification SMS to " + phoneNumber);
|
||||||
|
|
||||||
var template = getTemplate(0, domain, language);
|
var sms = getTemplate(0, domain, language);
|
||||||
if ((template == null) || (template.htmlSubject == null) || (template.txtSubject == null)) {
|
if (sms == null) { parent.debug('email', "Error: Failed to get SMS template"); return; } // No SMS template found
|
||||||
parent.debug('email', "Error: Failed to get SMS template"); // No SMS template found
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Setup the template
|
// Setup the template
|
||||||
template.split("[[0]]").join(domain.title ? domain.title : 'MeshCentral');
|
sms = sms.split('[[0]]').join(domain.title ? domain.title : 'MeshCentral');
|
||||||
template.split("[[1]]").join(verificationCode);
|
sms = sms.split('[[1]]').join(verificationCode);
|
||||||
|
|
||||||
// Send the SMS
|
// Send the SMS
|
||||||
obj.sendSMS(phoneNumber, template, func);
|
obj.sendSMS(phoneNumber, sms, func);
|
||||||
};
|
};
|
||||||
|
|
||||||
return obj;
|
return obj;
|
||||||
};
|
};
|
||||||
|
|
||||||
// +18632703894
|
|
||||||
// SMS 5032700426 "This is a test"
|
|
||||||
|
24
meshuser.js
24
meshuser.js
@ -3713,24 +3713,20 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
if (parent.parent.smsserver == null) return;
|
if (parent.parent.smsserver == null) return;
|
||||||
if (common.validateString(command.phone, 1, 18) == false) break; // Check phone length
|
if (common.validateString(command.phone, 1, 18) == false) break; // Check phone length
|
||||||
if (command.phone.match(/^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/) == false) break; // Check phone
|
if (command.phone.match(/^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/) == false) break; // Check phone
|
||||||
var code = getRandomEightDigitInteger();
|
const code = getRandomEightDigitInteger();
|
||||||
//console.log(code);
|
|
||||||
|
|
||||||
// TODO: We need to tie this cookie to this session and limit how many times we can guess the code
|
// TODO: We need limit how many times we can guess the code
|
||||||
const phoneCookie = parent.parent.encodeCookie({ a: 'verifyPhone', c: code, p: command.phone });
|
const phoneCookie = parent.parent.encodeCookie({ a: 'verifyPhone', c: code, p: command.phone, s: ws.sessionId });
|
||||||
|
|
||||||
ws.send(JSON.stringify({ action: 'verifyPhone', cookie: phoneCookie, success: true })); // DEBUG
|
|
||||||
/*
|
|
||||||
parent.parent.smsserver.sendPhoneCheck(domain, command.phone, code, parent.getLanguageCodes(req), function (success) {
|
parent.parent.smsserver.sendPhoneCheck(domain, command.phone, code, parent.getLanguageCodes(req), function (success) {
|
||||||
ws.send(JSON.stringify({ action: 'verifyPhone', cookie: phoneCookie, success: success }));
|
ws.send(JSON.stringify({ action: 'verifyPhone', cookie: phoneCookie, success: success }));
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'confirmPhone': {
|
case 'confirmPhone': {
|
||||||
if ((parent.parent.smsserver == null) || (typeof command.cookie != 'string') || (typeof command.code != 'number')) break; // Input checks
|
if ((parent.parent.smsserver == null) || (typeof command.cookie != 'string') || (typeof command.code != 'number')) break; // Input checks
|
||||||
var cookie = parent.parent.decodeCookie(command.cookie);
|
var cookie = parent.parent.decodeCookie(command.cookie);
|
||||||
if (cookie == null) break; // Invalid cookie
|
if (cookie == null) break; // Invalid cookie
|
||||||
|
if (cookie.s != ws.sessionId) break; // Invalid session
|
||||||
if (cookie.c != command.code) { ws.send(JSON.stringify({ action: 'verifyPhone', cookie: command.cookie, success: true })); break; } // Code does not match
|
if (cookie.c != command.code) { ws.send(JSON.stringify({ action: 'verifyPhone', cookie: command.cookie, success: true })); break; } // Code does not match
|
||||||
|
|
||||||
// Set the user's phone
|
// Set the user's phone
|
||||||
@ -3758,6 +3754,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 'smsuser': { // Send a SMS message to a user
|
||||||
|
if (parent.parent.smsserver == null) break;
|
||||||
|
if ((user.siteadmin & 2) == 0) break;
|
||||||
|
if (common.validateString(command.userid, 1, 2048) == false) break;
|
||||||
|
if (common.validateString(command.msg, 1, 160) == false) break;
|
||||||
|
var smsuser = parent.users[command.userid];
|
||||||
|
if ((smsuser == null) || (smsuser.phone == null)) break;
|
||||||
|
parent.parent.smsserver.sendSMS(smsuser.phone, command.msg, function (success) {
|
||||||
|
// TODO
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
case 'getClip': {
|
case 'getClip': {
|
||||||
if (common.validateString(command.nodeid, 1, 1024) == false) break; // Check nodeid
|
if (common.validateString(command.nodeid, 1, 1024) == false) break; // Check nodeid
|
||||||
|
|
||||||
|
BIN
public/images/phone12.png
Normal file
BIN
public/images/phone12.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 191 B |
@ -9799,6 +9799,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((user.otpsecret > 0) || (user.otphkeys > 0)) { username += ' <img src="images/key12.png" height=12 width=11 title="' + "2nd factor authentication enabled" + '" style="margin-top:2px" />'; }
|
if ((user.otpsecret > 0) || (user.otphkeys > 0)) { username += ' <img src="images/key12.png" height=12 width=11 title="' + "2nd factor authentication enabled" + '" style="margin-top:2px" />'; }
|
||||||
|
if (user.phone != null) { username += ' <img src="images/phone12.png" height=12 width=7 title="' + "Verified phone number" + '" style="margin-top:2px" />'; }
|
||||||
if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' <img src="images/padlock12.png" height=12 width=8 title="' + "Account is locked" + '" style="margin-top:2px" />'; }
|
if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' <img src="images/padlock12.png" height=12 width=8 title="' + "Account is locked" + '" style="margin-top:2px" />'; }
|
||||||
|
|
||||||
x += '<tr tabindex=0 onmouseover=userMouseHover(this,1) onmouseout=userMouseHover(this,0) onkeypress="if (event.key==\'Enter\') gotoUser(\'' + encodeURIComponent(user._id) + '\')"><td>';
|
x += '<tr tabindex=0 onmouseover=userMouseHover(this,1) onmouseout=userMouseHover(this,0) onkeypress="if (event.key==\'Enter\') gotoUser(\'' + encodeURIComponent(user._id) + '\')"><td>';
|
||||||
@ -9907,6 +9908,16 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function showSendSMS(userid) {
|
||||||
|
if (xxdialogMode) return;
|
||||||
|
setDialogMode(2, "Send SMS", 3, showSendSMSEx, '<textarea id=d2smsText maxlength=160 style=background-color:#fcf3cf;width:100%;height:100px;resize:none onKeyUp=showSendSMSValidate()></textarea><span style=font-size:10px><span>', decodeURIComponent(userid));
|
||||||
|
Q('d2smsText').focus();
|
||||||
|
showSendSMSValidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showSendSMSValidate() { QE('idx_dlgOkButton', Q('d2smsText').value.length > 0); }
|
||||||
|
function showSendSMSEx(b, tag) { if (Q('d2smsText').value.length > 0) { meshserver.send({ action: 'smsuser', userid: tag, msg: Q('d2smsText').value }); } }
|
||||||
|
|
||||||
function showUserAlertDialog(e, userid) {
|
function showUserAlertDialog(e, userid) {
|
||||||
if (xxdialogMode) return;
|
if (xxdialogMode) return;
|
||||||
haltEvent(e);
|
haltEvent(e);
|
||||||
@ -10657,6 +10668,7 @@
|
|||||||
|
|
||||||
// Add action buttons
|
// Add action buttons
|
||||||
x += '<input type=button value=\"' + "Notes" + '\" title=\"' + "View notes about this user" + '\" onclick=showNotes(false,"' + userid + '") />';
|
x += '<input type=button value=\"' + "Notes" + '\" title=\"' + "View notes about this user" + '\" onclick=showNotes(false,"' + userid + '") />';
|
||||||
|
if (user.phone && (features & 0x02000000)) { x += '<input type=button value=\"' + "SMS" + '\" title=\"' + "Send a SMS message to this user" + '\" onclick=showSendSMS("' + encodeURIComponent(userid) + '") />'; }
|
||||||
if (!self && (activeSessions > 0)) { x += '<input type=button value=\"' + "Notify" + '\" title=\"' + "Send user notification" + '\" onclick=showUserAlertDialog(event,"' + userid + '") />'; }
|
if (!self && (activeSessions > 0)) { x += '<input type=button value=\"' + "Notify" + '\" title=\"' + "Send user notification" + '\" onclick=showUserAlertDialog(event,"' + userid + '") />'; }
|
||||||
|
|
||||||
// Setup the panel
|
// Setup the panel
|
||||||
|
Loading…
Reference in New Issue
Block a user