]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Meteor/meteorupdater.js
Revert "Added a check for any URL param. If found, strips them out before"
[quix0rs-gnu-social.git] / plugins / Meteor / meteorupdater.js
1 // Update the local timeline from a Meteor server
2 // XXX: If @a is subscribed to @b, @a should get @b's notices in @a's Personal timeline.
3 //      Do Replies timeline.
4
5 var MeteorUpdater = function()
6 {
7     return {
8
9         init: function(server, port, timeline)
10         {
11             Meteor.callbacks["process"] = function(data) {
12                 var d = JSON.parse(data);
13
14                 $user_url = $('address .url')[0].href+d['user']['screen_name'];
15
16                 if (timeline == 'public' ||
17                     $user_url+'/all' == window.location.href ||
18                     $user_url == window.location.href) {
19
20                     RealtimeUpdate.receive(d);
21                 }
22             };
23
24             Meteor.host = server;
25             Meteor.port = port;
26             Meteor.joinChannel(timeline, 0);
27             Meteor.connect();
28         }
29     }
30 }();
31