You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
// sms.js
|
|
// Copyright (C) 2022 DTP Technologies, LLC
|
|
// License: Apache-2.0
|
|
|
|
'use strict';
|
|
|
|
// const mongoose = require('mongoose');
|
|
|
|
const libphonenumber = require('libphonenumber-js');
|
|
|
|
const { SiteService } = require('../../lib/site-lib');
|
|
|
|
class SmsService extends SiteService {
|
|
|
|
constructor (dtp) {
|
|
super(dtp, module.exports);
|
|
}
|
|
|
|
async start ( ) {
|
|
await super.start();
|
|
}
|
|
|
|
async stop ( ) {
|
|
this.log.info(`stopping ${module.exports.name} service`);
|
|
await super.stop();
|
|
}
|
|
|
|
async send (message) {
|
|
this.log.info('sending SMS', message);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {*} phoneNumber
|
|
* @returns
|
|
*/
|
|
async checkPhoneNumber (phoneNumber) {
|
|
const { parsePhoneNumber } = libphonenumber;
|
|
|
|
const phoneCheck = parsePhoneNumber(phoneNumber, 'US');
|
|
if (!phoneCheck.isValid() || !phoneCheck.number) {
|
|
throw new Error('Invalid phone number');
|
|
}
|
|
|
|
return phoneCheck; // in case caller wants full data
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
slug: 'sms',
|
|
name: 'sms',
|
|
className: 'SmsService',
|
|
create: (dtp) => { return new SmsService(dtp); },
|
|
};
|