2023-06-07 13:59:44 +00:00
|
|
|
import { Column, Entity, Index, JoinColumn, ManyToOne } from 'typeorm';
|
|
|
|
import BaseModel from 'Common/Models/BaseModel';
|
|
|
|
import Project from './Project';
|
|
|
|
import CrudApiEndpoint from 'Common/Types/Database/CrudApiEndpoint';
|
|
|
|
import SmsStatus from 'Common/Types/SmsStatus';
|
|
|
|
import Route from 'Common/Types/API/Route';
|
2023-08-21 10:40:35 +00:00
|
|
|
import TableColumnType from 'Common/Types/BaseDatabase/TableColumnType';
|
2023-06-07 13:59:44 +00:00
|
|
|
import TableColumn from 'Common/Types/Database/TableColumn';
|
|
|
|
import ColumnType from 'Common/Types/Database/ColumnType';
|
|
|
|
import ObjectID from 'Common/Types/ObjectID';
|
|
|
|
import ColumnLength from 'Common/Types/Database/ColumnLength';
|
|
|
|
import TableAccessControl from 'Common/Types/Database/AccessControl/TableAccessControl';
|
|
|
|
import Permission from 'Common/Types/Permission';
|
|
|
|
import ColumnAccessControl from 'Common/Types/Database/AccessControl/ColumnAccessControl';
|
|
|
|
import TenantColumn from 'Common/Types/Database/TenantColumn';
|
|
|
|
import TableMetadata from 'Common/Types/Database/TableMetadata';
|
|
|
|
import EnableWorkflow from 'Common/Types/Model/EnableWorkflow';
|
|
|
|
import IconProp from 'Common/Types/Icon/IconProp';
|
|
|
|
import EnableDocumentation from 'Common/Types/Model/EnableDocumentation';
|
|
|
|
import Phone from 'Common/Types/Phone';
|
|
|
|
|
|
|
|
@EnableDocumentation()
|
|
|
|
@TenantColumn('projectId')
|
|
|
|
@TableAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
delete: [],
|
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@CrudApiEndpoint(new Route('/sms-log'))
|
|
|
|
@Entity({
|
|
|
|
name: 'SmsLog',
|
|
|
|
})
|
|
|
|
@EnableWorkflow({
|
|
|
|
create: true,
|
|
|
|
delete: false,
|
|
|
|
update: false,
|
|
|
|
read: true,
|
|
|
|
})
|
|
|
|
@TableMetadata({
|
|
|
|
tableName: 'SmsLog',
|
|
|
|
singularName: 'SMS Log',
|
|
|
|
pluralName: 'SMS Logs',
|
|
|
|
icon: IconProp.SMS,
|
|
|
|
tableDescription:
|
|
|
|
'Logs of all the SMS sent out to all users and subscribers for this project.',
|
|
|
|
})
|
|
|
|
export default class SmsLog extends BaseModel {
|
|
|
|
@ColumnAccessControl({
|
2023-06-16 11:33:16 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
|
|
|
update: [],
|
|
|
|
})
|
|
|
|
@TableColumn({
|
|
|
|
manyToOneRelationColumn: 'projectId',
|
|
|
|
type: TableColumnType.Entity,
|
|
|
|
modelType: Project,
|
|
|
|
title: 'Project',
|
|
|
|
description:
|
|
|
|
'Relation to Project Resource in which this object belongs',
|
|
|
|
})
|
|
|
|
@ManyToOne(
|
|
|
|
(_type: string) => {
|
|
|
|
return Project;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eager: false,
|
|
|
|
nullable: true,
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
orphanedRowAction: 'nullify',
|
|
|
|
}
|
|
|
|
)
|
|
|
|
@JoinColumn({ name: 'projectId' })
|
|
|
|
public project?: Project = undefined;
|
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-16 11:33:16 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
|
|
|
update: [],
|
|
|
|
})
|
|
|
|
@Index()
|
|
|
|
@TableColumn({
|
|
|
|
type: TableColumnType.ObjectID,
|
|
|
|
required: true,
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: true,
|
2023-06-07 13:59:44 +00:00
|
|
|
title: 'Project ID',
|
|
|
|
description:
|
|
|
|
'ID of your OneUptime Project in which this object belongs',
|
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
type: ColumnType.ObjectID,
|
|
|
|
nullable: false,
|
|
|
|
transformer: ObjectID.getDatabaseTransformer(),
|
|
|
|
})
|
|
|
|
public projectId?: ObjectID = undefined;
|
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Index()
|
|
|
|
@TableColumn({
|
|
|
|
required: true,
|
|
|
|
type: TableColumnType.Phone,
|
|
|
|
title: 'To Number',
|
|
|
|
description: 'Phone Number SMS was sent to',
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: false,
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
nullable: false,
|
|
|
|
type: ColumnType.Phone,
|
|
|
|
length: ColumnLength.Phone,
|
2023-06-09 11:25:17 +00:00
|
|
|
transformer: Phone.getDatabaseTransformer(),
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
public toNumber?: Phone = undefined;
|
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Index()
|
|
|
|
@TableColumn({
|
|
|
|
required: true,
|
|
|
|
type: TableColumnType.Phone,
|
|
|
|
title: 'From Number',
|
|
|
|
description: 'Phone Number SMS was sent from',
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: false,
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
nullable: false,
|
|
|
|
type: ColumnType.Phone,
|
|
|
|
length: ColumnLength.Phone,
|
2023-06-09 11:25:17 +00:00
|
|
|
transformer: Phone.getDatabaseTransformer(),
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
public fromNumber?: Phone = undefined;
|
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@TableColumn({
|
|
|
|
required: true,
|
|
|
|
type: TableColumnType.LongText,
|
|
|
|
title: 'SMS Text',
|
|
|
|
description: 'Text content of the message',
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: false,
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
nullable: false,
|
|
|
|
type: ColumnType.LongText,
|
|
|
|
length: ColumnLength.LongText,
|
|
|
|
})
|
|
|
|
public smsText?: string = undefined;
|
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@TableColumn({
|
|
|
|
required: false,
|
|
|
|
type: TableColumnType.LongText,
|
2023-06-08 11:05:43 +00:00
|
|
|
title: 'Status Message',
|
|
|
|
description: 'Status Message (if any)',
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: false,
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
nullable: true,
|
|
|
|
type: ColumnType.LongText,
|
|
|
|
length: ColumnLength.LongText,
|
|
|
|
})
|
2023-06-08 11:05:43 +00:00
|
|
|
public statusMessage?: string = undefined;
|
2023-06-07 13:59:44 +00:00
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@TableColumn({
|
|
|
|
required: true,
|
|
|
|
type: TableColumnType.ShortText,
|
|
|
|
title: 'Status of the SMS',
|
|
|
|
description: 'Status of the SMS sent',
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: false,
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
nullable: false,
|
|
|
|
type: ColumnType.ShortText,
|
|
|
|
length: ColumnLength.ShortText,
|
|
|
|
})
|
|
|
|
public status?: SmsStatus = undefined;
|
|
|
|
|
|
|
|
@ColumnAccessControl({
|
2023-06-07 18:51:41 +00:00
|
|
|
create: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
read: [
|
|
|
|
Permission.ProjectOwner,
|
|
|
|
Permission.ProjectAdmin,
|
|
|
|
Permission.ProjectMember,
|
|
|
|
Permission.CanReadSmsLog,
|
|
|
|
],
|
2023-06-07 18:51:41 +00:00
|
|
|
update: [],
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@TableColumn({
|
|
|
|
required: true,
|
|
|
|
type: TableColumnType.Number,
|
|
|
|
title: 'SMS Cost',
|
|
|
|
description: 'SMS Cost in USD Cents',
|
2023-06-12 13:15:13 +00:00
|
|
|
canReadOnRelationQuery: false,
|
2023-06-09 11:25:17 +00:00
|
|
|
isDefaultValueColumn: true,
|
2023-06-07 13:59:44 +00:00
|
|
|
})
|
|
|
|
@Column({
|
|
|
|
nullable: false,
|
2023-06-09 11:25:17 +00:00
|
|
|
default: 0,
|
2023-06-07 13:59:44 +00:00
|
|
|
type: ColumnType.Number,
|
|
|
|
})
|
|
|
|
public smsCostInUSDCents?: number = undefined;
|
|
|
|
}
|