Skip to content

Commit c0398b0

Browse files
committed
Add eventbrite query node.
1 parent a8b27a3 commit c0398b0

File tree

3 files changed

+222
-1
lines changed

3 files changed

+222
-1
lines changed

eventbrite/eventbrite.html

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<!--
2+
Copyright 2014 IBM Corp.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
16+
17+
<script type="text/x-red" data-template-name="eventbrite-credentials">
18+
<div class="form-row">
19+
<label for="node-config-input-appKey"><i class="fa fa-bookmark"></i>App Key</label>
20+
<input class="input-append-left" type="text" id="node-config-input-appKey" style="width: 40%;" >
21+
</div>
22+
<div class="form-row">
23+
<label for="node-config-input-apiUserKey"><i class="fa fa-bookmark"></i>API User Key</label>
24+
<input class="input-append-left" type="password" id="node-config-input-apiUserKey" style="width: 40%;" >
25+
</div>
26+
<div class="form-tips">
27+
To obtain these credentials, visit the <a href="https://www.eventbrite.com/myaccount/apps/">Eventbrite My Applications</a>, login or sign up, then click "Create a new app". After entering the necessary details copy the App Key from the application list and click "API User Key" to obtain that key.
28+
</div>
29+
</script>
30+
31+
<script type="text/javascript">
32+
(function() {
33+
RED.nodes.registerType('eventbrite-credentials',{
34+
category: 'config',
35+
defaults: { },
36+
credentials: {
37+
appKey: {type:"text",required:true},
38+
apiUserKey: {type: "password",required:true},
39+
},
40+
label: function() {
41+
return 'Eventbrite' + (this.appKey ? ' '+this.appKey : '');
42+
},
43+
exportable: false,
44+
});
45+
})();
46+
</script>
47+
48+
<script type="text/x-red" data-template-name="eventbrite">
49+
<div class="form-row">
50+
<label for="node-input-eventbrite"><i class="fa fa-user"></i> Eventbrite</label>
51+
<input type="text" id="node-input-eventbrite">
52+
</div>
53+
<div class="form-row">
54+
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
55+
<input type="text" id="node-input-name" placeholder="Name">
56+
</div>
57+
</script>
58+
59+
<script type="text/x-red" data-help-name="eventbrite">
60+
<p>Eventbrite query node. Generates a message containing the events for the user associated with the API User Key.</p>
61+
</script>
62+
63+
<script type="text/javascript">
64+
RED.nodes.registerType('eventbrite',{
65+
category: 'social',
66+
color:"#C0DEED",
67+
defaults: {
68+
eventbrite: {type:"eventbrite-credentials",required:true},
69+
name: {value:"Eventbrite"}
70+
},
71+
inputs:1,
72+
outputs:1,
73+
icon: "eventbrite.png",
74+
align: "right",
75+
label: function() {
76+
return this.name||'Eventbrite';
77+
}
78+
});
79+
</script>

eventbrite/eventbrite.js

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
/**
2+
* Copyright 2014 IBM Corp.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
**/
16+
17+
module.exports = function(RED) {
18+
"use strict";
19+
var request = require('request');
20+
var time = require('time');
21+
22+
function EventbriteNode(n) {
23+
RED.nodes.createNode(this, n);
24+
}
25+
RED.nodes.registerType("eventbrite-credentials",EventbriteNode,{
26+
credentials: {
27+
appKey: { type:"text" },
28+
apiUserKey: { type: "password" },
29+
}
30+
});
31+
32+
EventbriteNode.prototype.request = function(req, cb) {
33+
if (typeof req !== 'object') {
34+
req = { url: "https://www.eventbrite.com/json/" + req };
35+
}
36+
req.method = req.method || 'GET';
37+
req.json = req.json || true;
38+
req.qs = req.qs || {};
39+
req.qs.app_key = this.credentials.appKey;
40+
req.qs.user_key = this.credentials.apiUserKey;
41+
request(req, function(err, result, data) { cb(err, data); });
42+
};
43+
EventbriteNode.prototype.userListTickets = function(cb) {
44+
this.request('user_list_tickets', function(err, data) {
45+
if (err || data.error) {
46+
return cb(err, data);
47+
}
48+
/* For response details see:
49+
* http://developer.eventbrite.com/doc/users/user_list_tickets/
50+
*/
51+
var res = [];
52+
var orders = flattenTrivialHashes(data.user_tickets[1].orders);
53+
for (var i = 0; i< orders.length; i++) {
54+
var o = orders[i];
55+
var ev = o.event;
56+
if (ev.hasOwnProperty('start_date') &&
57+
ev.hasOwnProperty('timezone')) {
58+
ev.start = new time.Date(ev.start_date, ev.timezone);
59+
}
60+
if (ev.hasOwnProperty('start_date') &&
61+
ev.hasOwnProperty('timezone')) {
62+
ev.end = new time.Date(ev.end_date, ev.timezone);
63+
}
64+
if (o.hasOwnProperty('created')) {
65+
// no timezone is specified but it appears to be
66+
// -0700
67+
o.ctime = new time.Date(o.created, o.timezone||'US/Pacific');
68+
}
69+
if (o.hasOwnProperty('modified')) {
70+
// no timezone is specified but it appears to be
71+
// -0700
72+
o.mtime = new time.Date(o.modified, o.timezone||'US/Pacific');
73+
}
74+
res.push(o);
75+
}
76+
cb(null, res);
77+
});
78+
};
79+
80+
/**
81+
* Flattens JSON generated from XML that contains:
82+
*
83+
* { "orders": [ { "order" : { k1: v1, k2: k2, ... } }, ... ] }
84+
*
85+
* to:
86+
*
87+
* { "orders": [ { k1: v1, k2: k2, ... }, ... ] }
88+
*/
89+
function flattenTrivialHashes(data) {
90+
if (data === null) {
91+
return data;
92+
} else if (Array.isArray(data)) {
93+
return data.map(flattenTrivialHashes);
94+
} else if (typeof data === 'object') {
95+
var k = Object.keys(data);
96+
if (k.length == 1) {
97+
return flattenTrivialHashes(data[k[0]]);
98+
} else {
99+
var res = {};
100+
for (var key in data) {
101+
if (data.hasOwnProperty(key)) {
102+
res[key] = flattenTrivialHashes(data[key]);
103+
}
104+
}
105+
return res;
106+
}
107+
} else {
108+
return data;
109+
}
110+
}
111+
function EventbriteQueryNode(n) {
112+
RED.nodes.createNode(this,n);
113+
this.eventbrite = RED.nodes.getNode(n.eventbrite);
114+
115+
var credentials = this.eventbrite.credentials;
116+
var node = this;
117+
if (credentials && credentials.appKey && credentials.apiUserKey) {
118+
this.on("input",function(msg) {
119+
node.status({fill:"blue",shape:"dot",text:"querying"});
120+
node.eventbrite.userListTickets(function(err, data) {
121+
if (err) {
122+
node.error("Error: " + err);
123+
node.status({fill:"red",shape:"ring",text:"failed"});
124+
return;
125+
}
126+
if (data.error) {
127+
node.status({fill:"red",shape:"ring",text:data.error.error_message});
128+
return;
129+
}
130+
node.status({});
131+
for (var i = 0; i < data.length; i++) {
132+
msg.payload = data[i];
133+
node.send(msg);
134+
}
135+
});
136+
});
137+
}
138+
}
139+
RED.nodes.registerType("eventbrite",EventbriteQueryNode);
140+
};

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"aws-sdk": "^2.0.15",
77
"dropbox":"^0.10.3",
88
"oauth":"~0.9.11",
9-
"request":"~2.40.0"
9+
"request":"~2.40.0",
10+
"time": "^0.11.0"
1011
},
1112
"repository" : {
1213
"type":"git",
@@ -22,6 +23,7 @@
2223
"pinboard": "pinboard/pinboard.js",
2324
"flickr": "flickr/flickr.js",
2425
"dropbox": "dropbox/dropbox.js",
26+
"eventbrite": "eventbrite/eventbrite.js",
2527
"swarm":"swarm/swarm.js"
2628
}
2729
},

0 commit comments

Comments
 (0)