-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
154 lines (149 loc) · 4.14 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
153
154
const axios = require('axios')
if (process.env.NODE_ENV !== 'production') {
require('dotenv').load();
}
module.exports = function () {
this.addSubs = () => []
this.removeSubs = () => []
this.querySubs = () => []
return {
connect: ({ addSubs, removeSubs, querySubs }) => {
/*
accepts { addSubs: fn, removeSubs: fn, querySubs: fn }
*/
this.addSubs = addSubs
this.removeSubs = removeSubs
this.querySubs = querySubs
return Promise.resolve()
/*
returns Promise.resolve()
*/
},
addSubs: (webhooks) => {
/*
accepts [{
client_id: 'zapier',
resource_id: 'khan',
event_id: 'added_friend',
url_endpoint: 'https://hooks.zapier.com/<unique_path>'
}]
*/
return this.addSubs(webhooks)
/*
returns Promise.resolve({
success: [{
client_id: 'zapier',
resource_id: 'khan',
event_id: 'added_friend',
url_endpoint: 'https://hooks.zapier.com/<unique_path>'
}],
error: []
})
*/
},
removeSubs: (webhooks) => {
/*
accepts [{
client_id: 'zapier',
resource_id: 'khan',
event_id: 'added_friend',
url_endpoint: 'https://hooks.zapier.com/<unique_path>'
}]
*/
return this.removeSubs(webhooks)
/*
returns Promise.resolve({
success: [{
client_id: 'zapier',
resource_id: 'khan',
event_id: 'added_friend',
url_endpoint: 'https://hooks.zapier.com/<unique_path>'
}],
error: []
})
*/
},
querySubs: (resource_id, event_id) => {
/*
accepts (resource_id, event_id)
*/
return this.querySubs(resource_id, event_id)
/*
returns [{
client_id: 'zapier',
resource_id: 'khan',
event_id: 'added_friend',
url_endpoint: 'https://hooks.zapier.com/<unique_path>'
}]
*/
},
emit: (resource_id, event_id, payload, headers) => {
const p = new Promise((res, rej) => {
/*
accepts (resource_id, event_id, payload, headers)
*/
this.querySubs(resource_id, event_id)
.then((results) => {
const all = results.map((sub) => {
return axios.post(sub.url_endpoint, payload, headers)
.then((data) => {
return Promise.resolve({
status: data.status,
data: sub
})
})
.catch((err) => {
return Promise.reject({
status: data.status,
data: sub,
error: err
})
})
})
return Promise.all(all)
})
.then((webhook_statuses) => {
let success = []
let gone = []
let error = []
webhook_statuses.forEach((result) => {
if (result.status === 200) {
success.push(result)
} else if (result.status === 410) {
gone.push(result)
} else {
error.push(result)
}
})
if (gone.length > 0) {
this.removeSubs(gone.map(g => g.data))
}
res({
success: success,
gone: gone,
error: error
})
})
.catch((err) => {
console.log(err)
})
/*
STEP 1: Query for matches using this.querySubs()
STEP 2: Send POST/endpoint for each match
STEP 3A: Collect all that respond with 200 status
STEP 3B: Collect all that respond with 410 status and delete webhook with this.removeSubs()
STEP 3C: Collect all that respond with 4** status
STEP 4: Return the 3 arrays of statuses
*/
/*
returns Promise.resolve({
success: [],
gone: [],
error: []
})
*/
})
return p
}
}
}()