-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.gs
43 lines (35 loc) · 1.22 KB
/
main.gs
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
var SLACK_INCOMMING_WEBHOOK_URL = '';
function doPost(e) {
var message = "";
if (e.parameter. text === "") {
return ContentService.createTextOutput("メッセージが入力されていません。「/2ch てすと」のような形での入力をお願いします。").setMimeType(ContentService.MimeType.JSON);
} else {
message = e.parameter.text;
notifyToSlack(message);
return ContentService.createTextOutput("").setMimeType(ContentService.MimeType.JSON);
}
}
function countUp() {
var postCount = PropertiesService.getScriptProperties().getProperty('POST_COUNT');
postCount++;
PropertiesService.getScriptProperties().setProperty("POST_COUNT", postCount);
return postCount;
}
function notifyToSlack(message) {
var count = countUp();
var today = new Date();
var name = count + " : 以下、VIPがお送りします : " + Utilities.formatDate(today, 'Asia/Tokyo', 'yyyy/MM/dd HH:mm:ss') + " ID:xxxxxxxx"
var jsonData =
{
"username" : name,
"text" : message
};
var payload = JSON.stringify(jsonData);
var options =
{
"method" : "post",
"contentType" : "application/json",
"payload" : payload
};
UrlFetchApp.fetch(SLACK_INCOMMING_WEBHOOK_URL, options);
}