| 12345678910111213141516171819202122232425262728293031323334353637 |
- import { Service } from '@tsed/di';
- import { WebClient, LogLevel } from '@slack/web-api';
- import { generateInputSectionBlock } from '@growi/slack';
- import { GrowiCommandsMappings } from '../interfaces/growi-commands-mappings';
- @Service()
- export class RegisterService implements GrowiCommandsMappings {
- async execSlashCommand(body:{[key:string]:string}):Promise<void> {
- // tmp use process.env
- const client = new WebClient(process.env.SLACK_BOT_USER_OAUTH_TOKEN, { logLevel: LogLevel.DEBUG });
- await client.views.open({
- trigger_id: body.trigger_id,
- view: {
- type: 'modal',
- title: {
- type: 'plain_text',
- text: 'Register Credentials',
- },
- submit: {
- type: 'plain_text',
- text: 'Submit',
- },
- close: {
- type: 'plain_text',
- text: 'Close',
- },
- blocks: [
- generateInputSectionBlock('growiDomain', 'GROWI domain', 'contents_input', false, 'https://example.com'),
- generateInputSectionBlock('growiAccessToken', 'GROWI ACCESS_TOKEN', 'contents_input', false, 'jBMZvpk.....'),
- generateInputSectionBlock('proxyToken', 'PROXY ACCESS_TOKEM', 'contents_input', false, 'jBMZvpk.....'),
- ],
- },
- });
- }
- }
|