-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.js
More file actions
73 lines (68 loc) · 2.53 KB
/
index.js
File metadata and controls
73 lines (68 loc) · 2.53 KB
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
/**
* Copyright (c) Since 2007 PrestaShop.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
const RuleComputer = require('./src/rule-computer');
const IssueDataProvider = require('./src/issue-data-provider');
const IssueCommentsDataProvider = require('./src/issue-comments-data-provider');
const PullRequestDataProvider = require('./src/pull-request-data-provider');
const ProjectCardDataProvider = require('./src/project-card-data-provider');
const ConfigProvider = require('./src/config-provider');
const ProjectDataProvider = require('./src/project-data-provider');
const RuleApplier = require('./src/rule-applier');
let config = require('./config');
if (process.env.NODE_ENV === 'test') {
// eslint-disable-next-line global-require, prefer-destructuring
config = require('./tests/config').config;
}
/**
* This is the main entrypoint to your Probot app
* @param {import('probot').Application} app
*/
module.exports = (app) => {
app.log('IssueBot app loaded!');
app.on('*', async (context) => {
const projectDataProvider = new ProjectDataProvider(config, context.github, context.log);
const issueDataProvider = new IssueDataProvider(config, context.github, context.log);
const issueCommentsDataProvider = new IssueCommentsDataProvider(config, context.github, context.log);
const configProvider = new ConfigProvider(
config,
context.github,
issueDataProvider,
projectDataProvider,
context.log,
);
const pullRequestDataProvider = new PullRequestDataProvider(config, context.github, context.log);
const projectCardDataProvider = new ProjectCardDataProvider(config, context.github, context.log);
const ruleComputer = new RuleComputer(
config,
issueDataProvider,
issueCommentsDataProvider,
pullRequestDataProvider,
projectCardDataProvider,
configProvider,
context.log,
);
const ruleApplier = new RuleApplier(
config,
issueDataProvider,
pullRequestDataProvider,
projectCardDataProvider,
configProvider,
context.github,
context.log,
);
const rulePromise = ruleComputer.findRules(context);
const rules = await rulePromise;
if (rules) {
rules.forEach((rule) => {
context.log.info(`[Index] Received webhook matches rule ${rule} requirements`);
});
ruleApplier.applyRules(rules, context);
} else {
context.log.info(`[Index] No rule applies to received webhook: ${context.name}`);
}
});
};