-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.js
152 lines (128 loc) · 4.6 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*eslint-env node*/
'use strict';
var SlackNotifier = require('./lib/slack-notifier');
var DeployPluginBase = require('ember-cli-deploy-plugin');
var moment = require('moment');
module.exports = {
name: 'ember-cli-deploy-slack',
createDeployPlugin: function(options) {
var DeployPlugin = DeployPluginBase.extend({
name: options.name,
defaultConfig: {
enabled: true,
willDeploy: function(/* context */) {
return function(/* slack */){
return {
slackStartDeployDate: new Date()
};
}
},
didDeploy: function(/* context */) {
return function(slack){
var startDeployDate = this.context.slackStartDeployDate;
var endDeployDate = new Date();
var duration = moment.duration(endDeployDate - startDeployDate);
var value = duration.minutes() + ' min, ' + duration.seconds() + ' s, ' + duration.milliseconds() + ' ms.';
return slack.notify({
attachments: [{
"fallback":"Deployment finished! New revision was successfully uploaded.",
"pretext":"Deployment finished! New revision was successfully uploaded.",
"color":"good",
"fields":[
{
"title":"Stats",
"value":"Deploying revision took "+value,
"short":false
}
]
}]
});
};
},
didFail: function(/* context */) {
return function(slack) {
var message = "Ember-cli-deploy tried to deploy a revision but failed.";
return slack.notify({
attachments: [{
"fallback": "Deployment failed!",
"pretext": "Deployment failed!",
"color": "danger",
"fields":[
{
"title": "Failure",
"value": message,
"short": false
}
]
}]
});
};
}
},
willDeploy: function(/* context */) {
return this._executeSlackNotificationHook('willDeploy');
},
willBuild: function(/* context */) {
return this._executeSlackNotificationHook('willBuild');
},
build: function(/* context */) {
return this._executeSlackNotificationHook('build');
},
didBuild: function(/* context */) {
return this._executeSlackNotificationHook('didBuild');
},
willUpload: function(/* context */) {
return this._executeSlackNotificationHook('willUpload');
},
upload: function(/* context */) {
return this._executeSlackNotificationHook('upload');
},
didUpload: function(/* context */) {
return this._executeSlackNotificationHook('didUpload');
},
willActivate: function(/* context */) {
return this._executeSlackNotificationHook('willActivate');
},
activate: function(/* context */) {
return this._executeSlackNotificationHook('activate');
},
didActivate: function(/* context */) {
return this._executeSlackNotificationHook('didActivate');
},
didDeploy: function(/* context */) {
return this._executeSlackNotificationHook('didDeploy');
},
didFail: function(/* context */) {
return this._executeSlackNotificationHook('didFail');
},
_executeSlackNotificationHook: function(hookName) {
var slack = this._initSlackNotifier();
var slackHook = this.readConfig(hookName);
if (slackHook) {
return slackHook.call(this, slack);
}
},
_initSlackNotifier: function() {
var webhookURL = this.readConfig('webhookURL');
var enabled = !!this.readConfig('enabled');
if (!webhookURL && enabled) {
var message = 'Ember-CLI-Deploy: You have to pass a `webhookURL` config-option to ember-cli-deploy-slack';
throw new Error(message);
}
var channel = this.readConfig('channel');
var username = this.readConfig('username');
var iconURL = this.readConfig('iconURL');
var iconEmoji = this.readConfig('iconEmoji');
return this.readConfig('slackNotifier') || new SlackNotifier({
enabled: enabled,
webhookURL: webhookURL,
channel: channel,
username: username,
iconURL: iconURL,
iconEmoji: iconEmoji
});
}
});
return new DeployPlugin();
}
};