2018-09-15 20:23:05 +00:00
|
|
|
import * as plugins from './slack.plugins';
|
2019-09-18 13:47:51 +00:00
|
|
|
import { SlackAccount } from './slack.classes.slackaccount';
|
2017-09-17 12:53:00 +00:00
|
|
|
|
2017-09-17 13:25:00 +00:00
|
|
|
export interface IAttachmentField {
|
2018-09-15 20:23:05 +00:00
|
|
|
title: string;
|
|
|
|
value: string;
|
|
|
|
short?: boolean;
|
2017-09-17 13:25:00 +00:00
|
|
|
}
|
|
|
|
|
2017-09-17 12:53:00 +00:00
|
|
|
export interface IMessageOptions {
|
|
|
|
/**
|
|
|
|
* "Required plain-text summary of the attachment."
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
fallback?: string;
|
2017-09-17 12:53:00 +00:00
|
|
|
/**
|
|
|
|
* a side color
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
color?: string;
|
2017-09-17 12:53:00 +00:00
|
|
|
/**
|
|
|
|
* a message to show above
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
pretext?: string;
|
2017-09-17 13:25:00 +00:00
|
|
|
/**
|
|
|
|
* author name of the attachment
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
author_name?: string;
|
2017-09-17 13:25:00 +00:00
|
|
|
/**
|
|
|
|
* a link to the author
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
author_link?: string;
|
2017-09-17 13:25:00 +00:00
|
|
|
/**
|
|
|
|
* a string to the author
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
author_icon?: string;
|
2017-09-17 13:25:00 +00:00
|
|
|
/**
|
|
|
|
* a title for the attachment
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
title?: string;
|
2017-09-17 13:25:00 +00:00
|
|
|
/**
|
|
|
|
* a link for the title
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
title_link?: string;
|
2017-09-17 12:53:00 +00:00
|
|
|
/**
|
|
|
|
* the main text of the message
|
|
|
|
*/
|
2018-09-15 20:23:05 +00:00
|
|
|
text?: string;
|
|
|
|
fields?: IAttachmentField[];
|
|
|
|
image_url?: string;
|
|
|
|
thumb_url?: string;
|
|
|
|
footer?: string;
|
|
|
|
footer_icon?: string;
|
|
|
|
ts?: number;
|
2017-09-17 12:53:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class SlackMessage {
|
2019-09-18 14:47:31 +00:00
|
|
|
public slackAccountRef: SlackAccount;
|
|
|
|
public messageOptions: IMessageOptions;
|
|
|
|
public channel: string;
|
|
|
|
public ts: string;
|
|
|
|
|
|
|
|
public requestRunning = plugins.smartpromise.defer();
|
|
|
|
|
|
|
|
constructor(slackAccountArg: SlackAccount, messageOptionsArg: IMessageOptions) {
|
|
|
|
if (slackAccountArg) {
|
|
|
|
this.slackAccountRef = slackAccountArg;
|
2018-01-10 20:45:25 +00:00
|
|
|
}
|
2018-09-15 20:23:05 +00:00
|
|
|
this.messageOptions = messageOptionsArg;
|
2019-09-18 14:47:31 +00:00
|
|
|
this.requestRunning.resolve();
|
2018-01-10 20:45:25 +00:00
|
|
|
}
|
2019-09-18 10:26:31 +00:00
|
|
|
|
|
|
|
async updateAndSend(messageOptionsArg: IMessageOptions) {
|
|
|
|
this.messageOptions = messageOptionsArg;
|
2019-09-18 13:47:51 +00:00
|
|
|
await this.sendToRoom(this.channel, 'update');
|
2019-09-18 10:26:31 +00:00
|
|
|
}
|
|
|
|
|
2019-09-18 13:47:51 +00:00
|
|
|
async startThread(messageOptionsArg: IMessageOptions) {
|
|
|
|
this.messageOptions = messageOptionsArg;
|
2019-09-18 17:37:45 +00:00
|
|
|
this.sendToRoom(this.channel, 'threaded');
|
2019-09-18 13:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async sendToRoom(channelNameArg: string, modeArg: 'new' | 'update' | 'threaded' = 'new') {
|
|
|
|
this.channel = channelNameArg;
|
2019-09-18 14:47:31 +00:00
|
|
|
if (this.slackAccountRef) {
|
|
|
|
const response = await this.slackAccountRef.sendMessage({
|
2019-09-18 13:47:51 +00:00
|
|
|
channelArg: this.channel,
|
2019-09-18 14:47:31 +00:00
|
|
|
messageOptions: this.messageOptions,
|
2019-09-18 13:47:51 +00:00
|
|
|
mode: modeArg,
|
|
|
|
ts: this.ts
|
|
|
|
});
|
2019-09-18 14:47:31 +00:00
|
|
|
if (modeArg === 'new') {
|
|
|
|
this.ts = response.body.message.ts;
|
|
|
|
this.channel = response.body.channel;
|
|
|
|
}
|
2019-09-05 11:08:42 +00:00
|
|
|
} else {
|
|
|
|
throw new Error('you need to set a slackRef before sending the message!');
|
2018-01-10 20:45:25 +00:00
|
|
|
}
|
2017-09-17 12:53:00 +00:00
|
|
|
}
|
|
|
|
}
|