* [messaging] improve full-sync fetching strategy * fix * rebase * fix * fix * fix rebase * fix * fix * fix * fix * fix * remove deletion * fix setPop with memory storage * fix pgBoss and remove unnecessary job * fix throw * fix * add timeout to ongoing sync
192 lines
6.3 KiB
TypeScript
192 lines
6.3 KiB
TypeScript
import { FeatureFlagKeys } from 'src/engine/core-modules/feature-flag/feature-flag.entity';
|
|
import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity';
|
|
import {
|
|
RelationMetadataType,
|
|
RelationOnDeleteAction,
|
|
} from 'src/engine/metadata-modules/relation-metadata/relation-metadata.entity';
|
|
import { messageChannelStandardFieldIds } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids';
|
|
import { standardObjectIds } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-object-ids';
|
|
import { FieldMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/field-metadata.decorator';
|
|
import { Gate } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/gate.decorator';
|
|
import { IsNullable } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/is-nullable.decorator';
|
|
import { IsSystem } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/is-system.decorator';
|
|
import { ObjectMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/object-metadata.decorator';
|
|
import { RelationMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/relation-metadata.decorator';
|
|
import { BaseObjectMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/standard-objects/base.object-metadata';
|
|
import { ConnectedAccountObjectMetadata } from 'src/modules/connected-account/standard-objects/connected-account.object-metadata';
|
|
import { MessageChannelMessageAssociationObjectMetadata } from 'src/modules/messaging/standard-objects/message-channel-message-association.object-metadata';
|
|
|
|
export enum MessageChannelSyncStatus {
|
|
PENDING = 'PENDING',
|
|
ONGOING = 'ONGOING',
|
|
SUCCEEDED = 'SUCCEEDED',
|
|
FAILED = 'FAILED',
|
|
}
|
|
|
|
@ObjectMetadata({
|
|
standardId: standardObjectIds.messageChannel,
|
|
namePlural: 'messageChannels',
|
|
labelSingular: 'Message Channel',
|
|
labelPlural: 'Message Channels',
|
|
description: 'Message Channels',
|
|
icon: 'IconMessage',
|
|
})
|
|
@IsSystem()
|
|
export class MessageChannelObjectMetadata extends BaseObjectMetadata {
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.visibility,
|
|
type: FieldMetadataType.SELECT,
|
|
label: 'Visibility',
|
|
description: 'Visibility',
|
|
icon: 'IconEyeglass',
|
|
options: [
|
|
{ value: 'metadata', label: 'Metadata', position: 0, color: 'green' },
|
|
{ value: 'subject', label: 'Subject', position: 1, color: 'blue' },
|
|
{
|
|
value: 'share_everything',
|
|
label: 'Share Everything',
|
|
position: 2,
|
|
color: 'orange',
|
|
},
|
|
],
|
|
defaultValue: "'share_everything'",
|
|
})
|
|
visibility: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.handle,
|
|
type: FieldMetadataType.TEXT,
|
|
label: 'Handle',
|
|
description: 'Handle',
|
|
icon: 'IconAt',
|
|
})
|
|
handle: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.connectedAccount,
|
|
type: FieldMetadataType.RELATION,
|
|
label: 'Connected Account',
|
|
description: 'Connected Account',
|
|
icon: 'IconUserCircle',
|
|
joinColumn: 'connectedAccountId',
|
|
})
|
|
connectedAccount: ConnectedAccountObjectMetadata;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.type,
|
|
type: FieldMetadataType.SELECT,
|
|
label: 'Type',
|
|
description: 'Channel Type',
|
|
icon: 'IconMessage',
|
|
options: [
|
|
{ value: 'email', label: 'Email', position: 0, color: 'green' },
|
|
{ value: 'sms', label: 'SMS', position: 1, color: 'blue' },
|
|
],
|
|
defaultValue: "'email'",
|
|
})
|
|
type: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.isContactAutoCreationEnabled,
|
|
type: FieldMetadataType.BOOLEAN,
|
|
label: 'Is Contact Auto Creation Enabled',
|
|
description: 'Is Contact Auto Creation Enabled',
|
|
icon: 'IconUserCircle',
|
|
defaultValue: true,
|
|
})
|
|
isContactAutoCreationEnabled: boolean;
|
|
|
|
@FieldMetadata({
|
|
standardId:
|
|
messageChannelStandardFieldIds.messageChannelMessageAssociations,
|
|
type: FieldMetadataType.RELATION,
|
|
label: 'Message Channel Association',
|
|
description: 'Messages from the channel.',
|
|
icon: 'IconMessage',
|
|
})
|
|
@RelationMetadata({
|
|
type: RelationMetadataType.ONE_TO_MANY,
|
|
inverseSideTarget: () => MessageChannelMessageAssociationObjectMetadata,
|
|
onDelete: RelationOnDeleteAction.CASCADE,
|
|
})
|
|
@IsNullable()
|
|
messageChannelMessageAssociations: MessageChannelMessageAssociationObjectMetadata[];
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.syncExternalId,
|
|
type: FieldMetadataType.TEXT,
|
|
label: 'Last sync external ID',
|
|
description: 'Last sync external ID',
|
|
icon: 'IconHistory',
|
|
})
|
|
@Gate({
|
|
featureFlag: FeatureFlagKeys.IsFullSyncV2Enabled,
|
|
})
|
|
syncExternalId: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.syncedAt,
|
|
type: FieldMetadataType.DATE_TIME,
|
|
label: 'Last sync date',
|
|
description: 'Last sync date',
|
|
icon: 'IconHistory',
|
|
})
|
|
@Gate({
|
|
featureFlag: FeatureFlagKeys.IsFullSyncV2Enabled,
|
|
})
|
|
@IsNullable()
|
|
syncedAt: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.syncStatus,
|
|
type: FieldMetadataType.SELECT,
|
|
label: 'Last sync status',
|
|
description: 'Last sync status',
|
|
icon: 'IconHistory',
|
|
options: [
|
|
{
|
|
value: MessageChannelSyncStatus.PENDING,
|
|
label: 'Pending',
|
|
position: 0,
|
|
color: 'blue',
|
|
},
|
|
{
|
|
value: MessageChannelSyncStatus.ONGOING,
|
|
label: 'Ongoing',
|
|
position: 1,
|
|
color: 'yellow',
|
|
},
|
|
{
|
|
value: MessageChannelSyncStatus.SUCCEEDED,
|
|
label: 'Succeeded',
|
|
position: 2,
|
|
color: 'green',
|
|
},
|
|
{
|
|
value: MessageChannelSyncStatus.FAILED,
|
|
label: 'Failed',
|
|
position: 3,
|
|
color: 'red',
|
|
},
|
|
],
|
|
})
|
|
@Gate({
|
|
featureFlag: FeatureFlagKeys.IsFullSyncV2Enabled,
|
|
})
|
|
@IsNullable()
|
|
syncStatus: MessageChannelSyncStatus;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageChannelStandardFieldIds.ongoingSyncStartedAt,
|
|
type: FieldMetadataType.DATE_TIME,
|
|
label: 'Ongoing sync started at',
|
|
description: 'Ongoing sync started at',
|
|
icon: 'IconHistory',
|
|
})
|
|
@Gate({
|
|
featureFlag: FeatureFlagKeys.IsFullSyncV2Enabled,
|
|
})
|
|
@IsNullable()
|
|
ongoingSyncStartedAt: string;
|
|
}
|