oneuptime/CommonServer/Services/UserSmsService.ts

115 lines
3.5 KiB
TypeScript
Raw Normal View History

2023-06-14 13:56:47 +00:00
import PostgresDatabase from '../Infrastructure/PostgresDatabase';
import Model from 'Model/Models/UserSMS';
2023-06-15 14:07:34 +00:00
import DatabaseService, { OnCreate } from './DatabaseService';
import CreateBy from '../Types/Database/CreateBy';
import ProjectService from './ProjectService';
import Project from 'Model/Models/Project';
import BadDataException from 'Common/Types/Exception/BadDataException';
import SmsService from './SmsService';
import logger from '../Utils/Logger';
import ObjectID from 'Common/Types/ObjectID';
import Text from 'Common/Types/Text';
2023-06-14 13:56:47 +00:00
export class Service extends DatabaseService<Model> {
public constructor(postgresDatabase?: PostgresDatabase) {
super(Model, postgresDatabase);
}
2023-06-15 14:07:34 +00:00
protected override async onBeforeCreate(
createBy: CreateBy<Model>
): Promise<OnCreate<Model>> {
// check if this project has SMS and Call mEnabled.
const project: Project | null = await ProjectService.findOneById({
id: createBy.data.projectId!,
props: {
isRoot: true,
},
select: {
enableSmsNotifications: true,
smsOrCallCurrentBalanceInUSDCents: true,
},
});
if (!project) {
throw new BadDataException('Project not found');
}
if (!project.enableSmsNotifications) {
throw new BadDataException(
'SMS notifications are disabled for this project. Please enable them in Project Settings > Notification Settings.'
);
}
if (project?.smsOrCallCurrentBalanceInUSDCents! <= 100) {
throw new BadDataException(
'Your SMS balance is low. Please recharge your SMS balance in Project Settings > Notification Settings.'
);
}
return { carryForward: null, createBy };
}
protected override async onCreateSuccess(
_onCreate: OnCreate<Model>,
createdItem: Model
): Promise<Model> {
this.sendVerificationCode(createdItem);
return createdItem;
}
public async resendVerificationCode(itemId: ObjectID): Promise<void> {
const item: Model | null = await this.findOneById({
id: itemId,
props: {
isRoot: true,
},
select: {
phone: true,
verificationCode: true,
isVerified: true,
},
});
if (!item) {
throw new BadDataException(
'Item with ID ' + itemId.toString() + ' not found'
);
}
if (item.isVerified) {
throw new BadDataException('Phone Number already verified');
}
// generate new verification code
item.verificationCode = Text.generateRandomNumber(6);
await this.updateOneById({
id: item.id!,
props: {
isRoot: true,
},
data: {
verificationCode: item.verificationCode,
},
});
this.sendVerificationCode(item);
}
public sendVerificationCode(item: Model): void {
// send verifiction sms.
SmsService.sendSms(
item.phone!,
'Your verification code is ' + item.verificationCode,
{
projectId: item.projectId,
isSensitive: true,
}
).catch((err) => {
logger.error(err);
});
}
2023-06-14 13:56:47 +00:00
}
export default new Service();