oneuptime/CommonServer/Services/UserSmsService.ts

165 lines
4.9 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';
import DatabaseService, { OnCreate, OnDelete } from './DatabaseService';
2023-06-15 14:07:34 +00:00
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';
import LIMIT_MAX from 'Common/Types/Database/LimitMax';
import UserNotificationRuleService from './UserNotificationRuleService';
import DeleteBy from '../Types/Database/DeleteBy';
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 onBeforeDelete(
deleteBy: DeleteBy<Model>
): Promise<OnDelete<Model>> {
const itemsToDelete: Array<Model> = await this.findBy({
query: deleteBy.query,
select: {
_id: true,
projectId: true,
},
skip: 0,
limit: LIMIT_MAX,
props: {
isRoot: true,
},
});
for (const item of itemsToDelete) {
await UserNotificationRuleService.deleteBy({
query: {
userSmsId: item.id!,
projectId: item.projectId!,
},
limit: LIMIT_MAX,
skip: 0,
props: {
isRoot: true,
},
});
}
return {
deleteBy,
carryForward: null,
};
}
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.
2023-06-20 14:41:54 +00:00
if (!createBy.props.isRoot && createBy.data.isVerified) {
throw new BadDataException('isVerified cannot be set to true');
}
2023-06-15 14:07:34 +00:00
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> {
2023-06-21 13:20:00 +00:00
if (!createdItem.isVerified) {
this.sendVerificationCode(createdItem);
}
2023-06-15 14:07:34 +00:00
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 {
2023-07-30 15:00:25 +00:00
// send verification sms.
2023-06-15 14:07:34 +00:00
SmsService.sendSms(
2023-07-04 11:26:49 +00:00
{
to: item.phone!,
2023-07-12 11:15:44 +00:00
message:
'This message is from OneUptime. Your verification code is ' +
item.verificationCode,
2023-07-04 11:26:49 +00:00
},
2023-06-15 14:07:34 +00:00
{
projectId: item.projectId,
isSensitive: true,
}
2023-06-16 11:33:16 +00:00
).catch((err: Error) => {
2023-06-15 14:07:34 +00:00
logger.error(err);
});
}
2023-06-14 13:56:47 +00:00
}
export default new Service();