forked from irritanterik/homey-http-request-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
105 lines (102 loc) · 3.6 KB
/
api.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
const Homey = require('homey')
const Util = require('./lib/util.js')
var apiAuthorizationPublic = !(Homey.ManagerSettings.get('httpSettings') === null ? true : Homey.ManagerSettings.get('httpSettings').apiAuthorization)
module.exports = [
{
description: 'HTTP Get trigger card',
method: 'GET',
path: '/:event',
public: apiAuthorizationPublic,
fn: async function (args, callback) {
Util.debugLog('received event GET', args.params)
const triggerCard = await Homey.app.triggerHttpGet
triggerCard.trigger(
{'value': 'null', 'value_num': 0},
{'event': args.params.event}
)
callback(null, 'OK')
}
}, {
description: 'HTTP Get trigger card (whitelist)',
method: 'GET',
path: '/whitelist/:event',
public: true,
fn: async function (args, callback) {
Util.debugLog('received whitelist event GET', args.params)
// temp v2 workaround
// if (args.req === {}) return callback(`missing request IP`)
// if (!onWhitelist(args.req.remoteAddress)) return callback(`not on whitelist`)
const triggerCard = await Homey.app.triggerHttpGet
triggerCard.trigger(
{'value': 'null', 'value_num': 0},
{'event': args.params.event}
)
callback(null, 'OK')
}
}, {
description: 'HTTP Get trigger card with value (whitelist)',
method: 'GET',
path: '/whitelist/:event/:value',
public: true,
fn: async function (args, callback) {
Util.debugLog('received whitelist event GET with value', args)
// temp v2 workaround
// if (!onWhitelist(args.req.remoteAddress)) return callback(`not on whitelist`)
const triggerCard = await Homey.app.triggerHttpGet
triggerCard.trigger(
{'value': args.params.value, 'value_num': parseFloat(args.params.value) || 0},
{'event': args.params.event}
)
callback(null, 'OK')
}
}, {
description: 'HTTP POST trigger card with jsonPath',
method: 'POST',
path: '/whitelist/:event',
public: true,
fn: async function (args, callback) {
Util.debugLog('received whitelist event POST', args.params)
// temp v2 workaround
// if (!onWhitelist(args.req.remoteAddress)) return callback(`not on whitelist`)
const triggerCard = await Homey.app.triggerHttpPostVariable
triggerCard.trigger(
{'json': JSON.stringify(args.body)},
{'event': args.params.event}
)
callback(null, 'OK')
}
}, {
description: 'HTTP Get trigger card with value',
method: 'GET',
path: '/:event/:value',
public: apiAuthorizationPublic,
fn: async function (args, callback) {
Util.debugLog('received event GET with value', args.params)
let triggerCard = await Homey.app.triggerHttpGet
triggerCard.trigger(
{'value': args.params.value, 'value_num': parseFloat(args.params.value) || 0},
{'event': args.params.event}
)
callback(null, 'OK')
}
}, {
description: 'HTTP POST trigger card with jsonPath',
method: 'POST',
path: '/:event',
public: apiAuthorizationPublic,
fn: async function (args, callback) {
Util.debugLog('received event POST', args.params)
const triggerCard = await Homey.app.triggerHttpPostVariable
triggerCard.trigger(
{'json': JSON.stringify(args.body)},
{'event': args.params.event}
)
callback(null, 'OK')
}
}
]
// function onWhitelist (remoteAddress) {
// let ipv4 = remoteAddress.match(/\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/g)[0]
// let whitelist = Homey.ManagerSettings.get('httpWhitelist') || []
// return (whitelist.indexOf(ipv4) !== -1)
// }