This repository was archived by the owner on Apr 3, 2025. It is now read-only.
forked from assistify/rcapps-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissue.ts
74 lines (67 loc) · 2.51 KB
/
issue.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { IHttp, IModify, IPersistence, IRead } from '@rocket.chat/apps-engine/definition/accessors';
import { IMessage } from '@rocket.chat/apps-engine/definition/messages';
import { SlashCommandContext } from '@rocket.chat/apps-engine/definition/slashcommands';
import { GitLabApp } from '../GitLabApp';
import { sendNotification } from './send';
export async function searchIssues(app: GitLabApp, context: SlashCommandContext, read: IRead, modify: IModify, http: IHttp, persis: IPersistence): Promise<void> {
const [, , query, scope] = context.getArguments();
if (!query) {
throw new Error('Invalid search query');
}
const issues = await app.issue.searchIssues(query, scope, context, read, http, persis);
if (!issues) {
throw new Error('No issues found');
}
await Promise.all(issues.map(async (issue) => {
const attachments = {
text: issue.description,
title: {
value: issue.title,
link: issue.web_url,
},
fields: [{
title: 'Status',
value: issue.state,
short: false,
}, {
title: 'Assignee',
value: issue.assignee ? issue.assignee.name : 'Not assigned',
short: false,
}],
};
const message: IMessage = {
attachments: [attachments],
sender: context.getSender(),
room: context.getRoom(),
groupable: false,
};
await sendNotification(message, modify);
}));
}
export async function createIssue(app: GitLabApp, context: SlashCommandContext, read: IRead, modify: IModify, http: IHttp, persis: IPersistence): Promise<void> {
const [, project, title, description, label] = context.getArguments();
if (!project) {
const text = 'Invalid Project name';
const message: IMessage = {
sender: context.getSender(),
room: context.getRoom(),
groupable: false,
};
await sendNotification(message, modify);
}
if (!title) {
const text = 'Issue title cannot be empty';
const message: IMessage = {
sender: context.getSender(),
room: context.getRoom(),
groupable: false,
};
await sendNotification(message, modify);
}
const issue = {
title,
description,
label,
};
const response = await app.issue.createIssue(project, issue, context, read, http, persis);
}