-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
83 lines (66 loc) · 2.33 KB
/
index.js
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
75
76
77
78
79
80
81
82
83
const db = require('./lib/schema').models;
module.exports = (robot) => {
robot.log('Yay, the app was loaded!')
robot.on('issues.opened', async context => {
let username = context.payload.sender.login
, repositoryName = context.payload.repository.full_name;
if (username !== "the-welcome-bot[bot]")
checkUser(context, username, repositoryName, "issueOpen")
})
robot.on('issue_comment.created', async context => {
let username = context.payload.comment.user.login
, repositoryName = context.payload.repository.full_name;
if (username !== "the-welcome-bot[bot]")
checkUser(context, username, repositoryName, "issueComment")
})
robot.on('pull_request.opened', async context => {
let username = context.payload.sender.login
, repositoryName = context.payload.repository.full_name;
if (username !== "the-welcome-bot[bot]")
checkUser(context, username, repositoryName, "prOpen")
})
function checkUser(context, username, repositoryName, eventType) {
db.User.findOne({
where: {
username: username,
repositoryName: repositoryName
}
}).then(function (user) {
if (user === null) {
db.User.create({
username: username,
repositoryName: repositoryName
}).then(async user => {
try {
const config = await context.config('config.yml');
let message;
if (config) {
switch (eventType) {
case "issueOpen":
message = config.issueOpen || config.welcomeMessage;
case "issueComment":
message = config.issueComment || config.welcomeMessage;
case "prOpen":
message = config.prOpen || config.welcomeMessage;
}
}
if (message) {
return context.github.issues.createComment(context.issue({body: message}))
} else {
return context.github.issues.createComment(context.issue({body: "Hello World! Welcome to this project."}))
}
} catch (err) {
if (err.code !== 404) {
throw err;
}
}
})
.catch(function (err) {
console.log(err);
})
}
}).catch(function (err) {
console.log(err);
})
}
}