-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtoolbarevent.js
1261 lines (1103 loc) · 41.4 KB
/
toolbarevent.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
chrome.runtime.onInstalled.addListener(function(details) {
if(details.reason === 'install') {
chrome.tabs.create({url: 'http://help.stumbleupon.com/customer/en/portal/articles/665207-stumblebar-faq'});
}
})
/**
* @class A class used to manage messaging to and from the background
*/
ToolbarEvent = {};
/**
* @typedef {Object} browser.runtime.MessageSender
* @property {tabs.Tab} tab Optional tabs.Tab. The tabs.Tab which opened the connection. This property will only be present when the connection was opened from a tab (including content scripts).
* @property {Number} frameId Optional integer. The frame that opened the connection. Zero for top-level frames, positive for child frames. This will only be set when tab is set.
* @property {String} id Optional string. The ID of the extension that sent the message, if the message was sent by an extension. Note that this is the extension's internal ID, not the ID in the manifest.json applications key.
* @property {String} url Optional string. The URL of the page or frame hosting the script that sent the message. If the sender is a script running in an extension page (such as a background page, an options page, or a browser action or page action popup), the URL will be in the form "moz-extension://<extension-internal-id>/path/to/page.html". If the sender is a background script and you haven't included a background page, it will be "moz-extension://<extension-internal-id>/_blank.html". If the sender is a script running in a web page (including content scripts as well as normal page scripts), then url will be the web page URL. If the script is running in an iframe, url will be the iframe's URL.
* @property {String} tlsChannelId Optional string. The TLS channel ID of the page or frame that opened the connection, if requested by the extension, and if available.
* @see {@link https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/runtime/MessageSender}
*/
/**
* @typedef {Object} MessageRequest
* @property {String} action -- a string that must map to a method of this class
* @property {Object} url
* @property {Object} data
*/
/**
* route messages to handlers defined in this class and return the data via the provided callback
* @param request {MessageRequest}
* @property {browser.runtime.MessageSender} sender -- provided by browser
* @property {Function} sendResponse -- callback (technically optional, but required for this application)
* @returns {boolean}
*/
ToolbarEvent.handleRequest = function(request, sender, sendResponse) {
var shouldLog = !(request && request.action == 'mouse');
shouldLog && debug("ToolbarEvent.handleRequest", request);
var action = request.action;
var requestedAction = request.action,
action = requestedAction && requestedAction.replace(/-[a-z]/g, function (x) {
return x[1].toUpperCase();
});
if (!action || !ToolbarEvent[action]) {
return false;
}
ToolbarEvent[action](request, sender)
.then(function(response) {
if (response && response !== true) {
shouldLog && debug("ToolbarEvent.sendResponse", request, response);
try {
sendResponse(response);
} catch (e) {
if (((Page.tab[sender.tab.id] || {}).status || {}).state == 'incog') {
warning(e);
return; // Sometimes we get incognito races. They are safe to ignore.
}
}
}
})
.catch(function(err) {
debug(err);
ToolbarEvent._error(request, sender, err, sender.tab.id);
});
return true;
}
/*************** START SHARE *****************/
/**
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
*/
ToolbarEvent.share = function handleShare(request, sender) {
return ToolbarEvent
._sanity()
.then(function() {
return ToolbarEvent.api.getContacts();
})
.then(function(contacts) {
return ToolbarEvent._buildResponse({share: { contacts: contacts}}, false);
});
}
ToolbarEvent.shareToExternal = function(request, sender) {
debug(request);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || (request.data.contentId) || Page.getUrlId(sender.tab.id); }) // Find urlid by tab
.then(function(urlid) { return urlid || (Page.getUrlByHref(request.url.url, config.mode) || {}).urlid; }) // Find urlid by url in page cache
.then(function(urlid) { return urlid || ToolbarEvent.api.getUrlByHref(request.url.url).then(function(url) { return url.urlid; }).catch(function(e) { return false; }); }) // Find urlid by url in SU
.then(function(urlid) { return urlid || ToolbarEvent._discover(request, sender).then(function(url) { return url.publicid; }); }) // Discover url if we don't have an urlid
.then(function(urlid) { return urlid && (Page.getUrlByUrlid(urlid, config.mode) || ToolbarEvent.api.getUrlByUrlid(urlid)); }) // Get the SU Url Object
.then(function(SUurl) { // SHARE IT!!!!
var shareableUrl = (request.data.value === 'mix') ? SUurl.url : config.suPages.stumble
.form({
baseProto: config.baseProto,
baseUrl: config.baseUrl,
urlid: SUurl.urlid,
code: SUurl.tracking_code,
slug: SUurl.url.replace(/^.*:\/\//, '').replace(/[?#:].*/g, '')
});
var shareToUrl = config.externalShare[request.data.value].eform({
title: SUurl.title,
url: shareableUrl,
rawurl: SUurl.url
});
debug('Share '+shareableUrl+' to '+request.data.value+" => "+shareToUrl);
browser.tabs.create({
url: shareToUrl
});
});
}
/**
* after the share save, marke the page state, return a convo object to the ui.
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
*/
ToolbarEvent.saveShare = function handleSaveShare(request, sender) {
// Handle external sharing
request.data.external.forEach(function(site) {
browser.tabs.query({active: true, currentWindow: true}, function(tabs) {
var url = (request && request.url && request.url.url) || (Page.tab[sender.tab.id] && Page.tab[sender.tab.id].url && Page.tab[sender.tab.id].url.url) || (tabs[0] && tabs[0].url);
var data = {value: site, contentId: request.data.contentId}
ToolbarEvent.shareToExternal({url: {url: url}, data: data}, sender);
});
})
// Bail if no internal sharing
if (!request.data.suUserIds.length && !request.data.emails.length)
return ToolbarEvent._buildResponse({shareSent: true}, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return request.data.contentId || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
return urlid || ToolbarEvent._discover(request, sender)
.then(function(url) { return url.publicid; });
})
.then(function(urlid) {
request.data.contentId = urlid;
return ToolbarEvent.api.saveShare(request.data)
.then(function(convo) {
Page.state[sender.tab.id] = { convo: convo.id };
ToolbarEvent._notify("Sent");
return ToolbarEvent._buildResponse({newConvo: { convo: convo}}, false);
});
});
}
/*************** END SHARE *****************/
/*************** START RATINGS *****************/
/**
* Marks the current site as spam
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.reportSpam = function(request, sender) {
request.url.userRating = { type: -1, subtype: -5 };
ToolbarEvent._buildResponse(request, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to dislike url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "reportSpam", "nourl"));
}
// No need to dislike, reportSpam auto-dislikes
return urlid;
})
.then(function(urlid) {
ToolbarEvent._notify("Marked as Spam");
if (!sender.tab.incognito)
Page.note(sender.tab.id, Object.assign(Page.getUrlByUrlid(urlid, config.mode), { userRating: request.url.userRating }), true);
return ToolbarEvent.api.reportSpam(urlid);
});
}
/**
* Blocks the current site
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.blockSite = function(request, sender) {
request.url.userRating = { type: -1, subtype: 0 };
ToolbarEvent._buildResponse(request, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to dislike url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "block", "nourl"));
}
ToolbarEvent.api.dislike(urlid);
return urlid;
})
.then(function(urlid) {
ToolbarEvent._notify("Domain Blocked");
if (!sender.tab.incognito)
Page.note(sender.tab.id, Object.assign(Page.getUrlByUrlid(urlid, config.mode), { userRating: request.url.userRating }), true);
return ToolbarEvent.api.blockSite(urlid);
})
}
/**
* Marks the current url as Not Available
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.miscat = function(request, sender) {
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to dislike url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "miscat", "nourl"));
}
ToolbarEvent.api.dislike(urlid);
return urlid;
})
.then(function(urlid) { return ToolbarEvent.api.reportMiscat(urlid, request.data.interest, request.data.details); })
.then(function(info) {
ToolbarEvent._notify('Misclassification reported');
return ToolbarEvent._buildResponse({ });
})
}
/**
* Marks the current url as Not Available
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.reportInfo = function(request, sender) {
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to dislike url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "reportInfo", "nourl"));
}
return urlid;
})
.then(function(urlid) { return ToolbarEvent.api.reportInfo(urlid); })
.then(function(info) { return ToolbarEvent._buildResponse({ miscatInfo: info }); });
}
/**
* Marks the current url as Not Available
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.reportMissing = function(request, sender) {
request.url.userRating = { type: -1, subtype: -6 };
ToolbarEvent._buildResponse(request, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to dislike url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "reportMissing", "nourl"));
}
ToolbarEvent.api.dislike(urlid);
return urlid;
})
.then(function(urlid) {
ToolbarEvent._notify("Reported Missing");
if (!sender.tab.incognito)
Page.note(sender.tab.id, Object.assign(Page.getUrlByUrlid(urlid, config.mode), { userRating: request.url.userRating }), true);
return ToolbarEvent.api.reportMissing(urlid);
})
}
/**
* Dislikes the current url
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.dislike = function(request, sender) {
if ((request.action == 'dislike' && request.url && request.url.userRating && request.url.userRating.type) == -1)
return ToolbarEvent.unrate(request, sender);
var oldRating = request.url.userRating || { type: 0, subtype: 0 };
request.url.userRating = { type: -1, subtype: 0 };
ToolbarEvent._buildResponse(request, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id); })
.then(function(urlid) { return urlid || (Page.getUrlByHref(request.url.url, config.mode) || {}).urlid; })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to dislike url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "dislike", "nourl"));
}
return urlid;
})
.then(function(urlid) {
return ToolbarEvent.api.dislike(urlid)
.then(function() {
if (!sender.tab.incognito)
Page.note(sender.tab.id, Object.assign(Page.getUrlByUrlid(urlid, config.mode), { userRating: request.url.userRating }), true);
});
})
.catch(function(e) {
request.url.userRating = oldRating;
ToolbarEvent._buildResponse(request, sender.tab.id);
return Promise.reject(e);
})
}
/**
* Unrates the current url
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.unrate = function(request, sender) {
var oldRating = request.url.userRating || { type: 0, subtype: 0 };
request.url.userRating = { type: 0, subtype: 0 };
ToolbarEvent._buildResponse(request, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id); })
.then(function(urlid) { return urlid || (Page.getUrlByHref(request.url.url, config.mode) || {}).urlid; })
.then(function(urlid) {
if (!urlid) {
debug("Attempt to unrate url that doesn't exist", request);
return Promise.reject(new ToolbarError("TBEV", "unrate", "nourl"));
}
return urlid;
})
.then(function(urlid) {
return ToolbarEvent.api.unrate(urlid)
.then(function() {
if (!sender.tab.incognito)
Page.note(sender.tab.id, Object.assign(Page.getUrlByUrlid(urlid, config.mode), { userRating: request.url.userRating }), true);
});
})
.catch(function(e) {
request.url.userRating = oldRating;
ToolbarEvent._buildResponse(request, sender.tab.id);
return Promise.reject(e);
})
}
/**
* Likes the current url
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.like = function(request, sender) {
if ((request.url && request.url.userRating && request.url.userRating.type) == 1)
return ToolbarEvent.unrate(request, sender);
var oldRating = request.url.userRating || { type: 0, subtype: 0 };
request.url.userRating = { type: 1, subtype: 0 };
ToolbarEvent._buildResponse(request, sender.tab.id);
return ToolbarEvent
._sanity()
.then(function() { return (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id); }) // Find urlid by tab
.then(function(urlid) { return urlid || (Page.getUrlByHref(request.url.url, config.mode) || {}).urlid; }) // Find urlid by url in page cache
.then(function(urlid) { return urlid || ToolbarEvent.api.getUrlByHref(request.url.url).then(function(url) { return url.urlid; }).catch(function(e) { return false; }); }) // Find urlid by url in SU
.then(function(urlid) { return urlid && ToolbarEvent.api.like(urlid).then(function() { return urlid; }); }) // Like urlid if we have one
.then(function(urlid) { return urlid || ToolbarEvent._discover(request, sender).then(function(url) { return url.publicid; }); }) // Discover url if we don't have an urlid
.then(function(urlid) { // Note the like
if (!sender.tab.incognito && Page.getUrlByUrlid(urlid, config.mode))
Page.note(sender.tab.id, Object.assign(Page.getUrlByUrlid(urlid, config.mode), { userRating: request.url.userRating }), true);
return urlid;
})
.catch(function(e) {
request.url.userRating = oldRating;
ToolbarEvent._buildResponse(request, sender.tab.id);
return Promise.reject(e);
})
}
/*************** END RATINGS *****************/
/*************** START LISTS *****************/
/**
* Adds an item to a list
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.addToList = function(request, sender) {
return ToolbarEvent
._sanity()
.then(function() { return request.data.urlid || Page.getUrlId(sender.tab.id) })
.then(function(urlid) {
request.nolike = false;
return urlid || ToolbarEvent._discover(request, sender)
.then(function(url) { return url.publicid; });
})
.then(function(urlid) {
return ToolbarEvent.api.addToList(request.data.listid || request.data.list.id, urlid);
})
.then(function(item) {
ToolbarEvent._notify("Added to " + (request.data.listname || request.data.list.name), sender.tab.id) + " List";
return ToolbarEvent._buildResponse({ listitem: item, list: request.data.list });
});
}
/**
* Adds a list
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.addList = function(request, sender) {
return ToolbarEvent
.api.addList(request.data.name, request.data.description || '', request.data.visibility)
.then(function(list) {
// This message isn't needed, we're already showing the Added To List message in addToList
//ToolbarEvent._notify("Added list " + request.data.name, sender.tab.id);
return ToolbarEvent.addToList({ data: { list: list } }, sender)
});
}
/**
* Gets a list of lists
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.lists = function(request, sender) {
return ToolbarEvent
.api.getLists()
.then(function(lists) {
return ToolbarEvent._buildResponse({ lists: { entries: lists } });
});
}
/*************** END LISTS *****************/
/*************** START INBOX *****************/
/**
* Gets a list of conversation threads
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.inbox = function(request, sender) {
return ToolbarEvent
.api.getConversations(request.data.position, request.data.limit, request.data.type)
.then(function(inbox) {
return ToolbarEvent.cache.get('authed')
.then(function(userid) {
return ToolbarEvent._buildResponse({inbox: { messages: inbox, position: request.data.position, type: request.data.type }});
});
});
}
ToolbarEvent.pendingUnread = function(request, sender) {
// Handle 30 second cache timeout at proxy layer
if (ToolbarEvent._lastUnreadUpdate && Date.now() - ToolbarEvent._lastUnreadUpdate <= 30 * 1000) {
return ToolbarEvent._buildResponse({ }, true);
}
ToolbarEvent._lastUnreadUpdate = Date.now();
ToolbarEvent._lastUnreadCount = 0;
return ToolbarEvent.api.getPendingUnread().then(function(info) {
ToolbarEvent.cache.mset({ numShares: config.numShares = info.unread });
return ToolbarEvent._buildResponse({ }, true);
});
}
/*************** END INBOX *****************/
/*************** START STUMBLE *****************/
/**
* Record mode changes
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.mode = function(request, sender) {
ToolbarEvent.cache.mset({ mode: config.mode = request.data.value || config.defaults.mode });
ToolbarEvent._generateModeInfo(request, sender);
ToolbarEvent.api._flushStumbles();
ToolbarEvent._buildResponse({ mode: config.mode, modeinfo: config.modeinfo }, true);
return ToolbarEvent.stumble(request, sender);
}
/**
* Stumbles! Preloads next url, notes the url, notes the state,
* updates the url in the requesting frame.
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.stumble = function(request, sender) {
return ToolbarEvent._sanity()
.then(function() {
return ToolbarEvent.api
._mode(config.mode || config.defaults.mode, ToolbarEvent._generateModeInfo(request, sender))
.nextUrl();
})
.then(function(url) {
ToolbarEvent.pendingUnread();
ToolbarEvent.api.nextUrl(1).then(Page.preload);
// We have to explicitly note the url on incognito, otherwise we can't perform any operations
Page.note(sender.tab.id, url);
Page.state[sender.tab.id] = { mode: config.mode }
ToolbarEvent.api.reportStumble([url.urlid], url.mode, url.modeinfo);
request.url = url;
Page.tab[sender.tab.id].stumbling = url.urlid;
browser.tabs.update(sender.tab.id, { url: url.url });
return ToolbarEvent._buildResponse({});
});
}
/*************** END STUMBLE *****************/
/*************** START CONVO *****************/
/**
* Replies to a conversation
*
* @param {MessageRequest} request
* @param {String} request.data.id The conversation id
* @param {String} request.data.comment The comment to be posted
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.replyConvo = function(request, sender) {
var convo = ToolbarEvent.api.getConversation(request.data.id);
// Noop if comment is empty
if (!request.data.comment || !request.data.comment.replace(/^[ ]+|[ ]+$/, ''))
return ToolbarEvent._buildResponse({ });
return Promise.resolve(convo.comment(request.data.comment))
.then(function(comment) {
return ToolbarEvent._buildResponse({ comment: comment });
});
}
/**
* Closes a conversation
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.closeConvo = function(request, sender) {
Page.state[sender.tab.id] = { };
return ToolbarEvent._buildResponse({ });
}
/**
* Loads conversations messages
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.loadConvo = function(request, sender) {
var convo = ToolbarEvent.api.getConversation(request.data.value),
contactsKey = 'contacts';
return Promise.all([convo.messages(request.data.stamp, request.data.type, request.data.limit), ToolbarEvent.api.getContacts()])
.then(function(results) {
var conversation = results[0],
contacts = results[1],
now = Date.now();
conversation.participants && conversation.participants.forEach(function _touchOrInsertContact(participant) {
// @TODO this code is repeated in stumbleuponapi.js -- refactor to some common place
// update the last-accessed time for sorting purposes -- this must be persisted
var contact = contacts.get(participant.suUserId || encodeURIComponent(participant.email));
if(contact) {
contact.touch(now);
} else { // this participant isn't in our cached contact list, so insert them
if(participant.email) {
contacts.add(encodeURIComponent(participant.email), participant.email, false, "convo");
} else if(participant.suUserId) {
contacts.add(
participant.suUserId,
participant.name ? participant.name + " (" + participant.suUserName + ")" : participant.suUserName,
false,
"convo"
);
}
}
});
contacts.sort();
this.userCache.set(contactsKey, JSON.stringify(contacts)); // this can run async
conversation.participants && conversation.participants.forEach(function _setParticipant(participant) {
// set the participant flag for the front-end
var contact = contacts.get(participant.suUserId || encodeURIComponent(participant.email));
contact && contact.setParticipant(true);
});
return ToolbarEvent._buildResponse({
convo: Object.assign({}, conversation, {contacts: contacts, position: (request.data.type == 'before') ? 'prepend' : (request.data.stamp ? 'append' : null) }),
});
}.bind(this));
}
/**
* add a new email contact to the cache and respond with the updated list
* @param request
* @param sender
*/
ToolbarEvent.newEmailContact = function _newEmailContact(request, sender) {
var emailAddress = request.data;
return ToolbarEvent.api.newEmailContact(emailAddress)
.then(function(contacts) {
return ToolbarEvent._buildResponse({
contactsRefresh: contacts
});
}.bind(this));
}
/**
* Changes the current tab to the url related to the provided conversation
* If an actionid is provided, marks the conversation as read
* If an urlid and id (conversation id) is provided, directly loads url without redirect
* If an url is provided, loads the stumbleupon url and relies on redirect
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.openConvo = function(request, sender) {
if (request.data.actionid) {
if (!request.data.read) {
ToolbarEvent._lastUnreadUpdate = Date.now();
ToolbarEvent._lastUnreadCount = (ToolbarEvent._lastUnreadCount || 0) + 1;
ToolbarEvent.cache.mset({ numShares: config.numShares = Math.max((config.numShares || 0) - 1, 0) });
}
ToolbarEvent.api.markActivityAsRead(request.data.actionid)
.then(ToolbarEvent.pendingUnread);
}
if (request.data.urlid && request.data.id) {
return Promise.resolve(Page.getUrlByUrlid(request.data.urlid, config.mode) || ToolbarEvent.api.getUrlByUrlid(request.data.urlid))
.then(function(url) {
Page.state[sender.tab.id] = { convo: request.data.id };
Page.note(sender.tab.id, url);
Page.tab[sender.tab.id].stumbling = url.urlid;
browser.tabs.update(sender.tab.id, {
"url": url.url
});
return ToolbarEvent._buildResponse({ });
}).catch(function() {
request.data.urlid = null;
return ToolbarEvent.openConvo(request, sender);
});
} else if (request.data.url) {
browser.tabs.update(sender.tab.id, {
"url": request.data.url
});
}
return ToolbarEvent._buildResponse({});
}
ToolbarEvent.convoAddRecipient = function(request, sender) {
var convo = ToolbarEvent.api.getConversation(request.data.conversationId),
contactsKey = 'contacts';
return convo.addRecipient(request.data)
.then(function _addedRecipient() {
return Promise.all([convo.messages(), ToolbarEvent.api.getContacts()]);
})
.then(function _requeriedConvo(results) {
var conversation = results[0],
contacts = results[1],
now = Date.now();
ToolbarEvent._notify("Added to Conversation");
conversation.participants && conversation.participants.forEach(function _touchOrInsertContact(participant) {
// @TODO this code is repeated in stumbleuponapi.js -- refactor to some common place
// update the last-accessed time for sorting purposes -- this must be persisted
var contact = contacts.get(participant.suUserId || encodeURIComponent(participant.email));
if(contact) {
contact.touch(now);
} else { // this participant isn't in our cached contact list, so insert them
if(participant.email) {
contacts.add(encodeURIComponent(participant.email), participant.email, false, "convo");
} else if(participant.suUserId) {
contacts.add(
participant.suUserId,
participant.name ? participant.name + " (" + participant.suUserName + ")" : participant.suUserName,
false,
"convo"
);
}
}
});
contacts.sort();
this.userCache.set(contactsKey, JSON.stringify(contacts)); // this can run async
conversation.participants && conversation.participants.forEach(function _setParticipant(participant) {
// set the participant flag for the front-end
var contact = contacts.get(participant.suUserId || encodeURIComponent(participant.email));
contact && contact.setParticipant(true);
});
return ToolbarEvent._buildResponse({convo: Object.assign({}, conversation, {contacts: contacts, position: 'append'})});
}.bind(this));
}
ToolbarEvent.convoShowContacts = function(request, sender) {
return Promise.resolve(ToolbarEvent.api.getContacts())
.then(function(contacts) {
return ToolbarEvent._buildResponse({convoContacts: { contacts: contacts}}, false);
});
}
/*************** END CONVO *****************/
/*************** START AUTH *****************/
/**
* Signs out of stumbleupon, marks as unathed
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.signout = function(request, sender) {
browser.cookies.getAll({ domain: 'stumbleupon.com' }, function(cookies) {
cookies.forEach(function(cookie) {
browser.cookies.remove({ url: 'https://' + cookie.domain + cookie.path, name: cookie.name });
});
});
ToolbarEvent._notify("Signed Out");
ToolbarEvent.cache.mset({ authed: config.authed = false, user: {} });
return ToolbarEvent._buildResponse({}, true);
}
/**
* Loads the sign in page in the current active tab
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.signin =
ToolbarEvent.loginPage = function(request, sender) {
ToolbarEvent.api._flush();
browser.tabs.query({active: true, currentWindow: true}, function(tabs) {
//Page.state[tabs[0].id] = { returl: tabs[0].url };
browser.tabs.update((sender && sender.tab.id) || tabs[0].id, {
"url": config.suPages.signin.form(config)
});
});
return ToolbarEvent._buildResponse({});
}
/**
* Sets the authed flag to false, notifies all iframes
*
* @return {Promise} toolbar config response
*/
ToolbarEvent.testLogin = function(e) {
if (e && e.type == 'API' && e.context && e.context.code === 0)
return Promise.reject(e); // We got disconnected
return ToolbarEvent.needsLogin();
}
ToolbarEvent.needsLogin = function() {
debug('Needs login', arguments);
ToolbarEvent.cache.mset({ authed: config.authed = false });
ToolbarEvent._notify("You got logged out");
return ToolbarEvent._buildResponse({}, true);
}
/**
* Queries to see if the current user is logged in.
* If the user is logged in, the authed flag is set and the next url is preloaded
*
* @return {Promise} toolbar config response
*/
ToolbarEvent.ping = function() {
return ToolbarEvent.api
.ping()
.then(ToolbarEvent.api.getUser.bind(ToolbarEvent.api))
.then(function(user) {
debug('Login success for user', user.username);
ToolbarEvent.cache.mset({ authed: config.authed = user.userid });
ToolbarEvent.userCache = new Cache({prefix: user.userid + '-'});
ToolbarEvent.api.setUserCache(ToolbarEvent.userCache);
ToolbarEvent.interests();
ToolbarEvent.pendingUnread();
ToolbarEvent.api
._mode(config.mode || config.defaults.mode, ToolbarEvent._generateModeInfo({}, {}))
.nextUrl(1)
.then(Page.preload)
.catch(function(e) { warning('Expected to preload next url', e); });
})
.catch(ToolbarEvent.testLogin);
}
/*************** END AUTH *****************/
/*************** START STATE *****************/
/**
* Gets the current toolbar state and url
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.init = function(request, sender) {
request.config = config;
return ToolbarEvent._buildResponse({
url: Page.lastUrl(sender.tab.id),
state: Page.lastState(sender.tab.id),
version: browser.runtime.getManifest().version,
hash: Math.random().toString(36).substr(2) + Math.random().toString(36).substr(2) + Math.random().toString(36).substr(2),
}, sender.tab.id);
}
/**
* Record theme changes
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.theme = function(request, sender) {
ToolbarEvent.cache.mset({ theme: config.theme = request.data.value || config.defaults.theme });
return ToolbarEvent._buildResponse({}, true);
}
/**
* Record hide-toggle requests
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.toggleHidden = function(request, sender) {
ToolbarEvent.cache.mset({ hidden: config.hidden = !config.hidden });
return ToolbarEvent._buildResponse({}, true);
}
/**
* Record unhide requests
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.unhideToolbar = function(request, sender) {
ToolbarEvent.cache.mset({ hidden: config.hidden = false });
return ToolbarEvent._buildResponse({}, true);
}
/**
* Record hide requests
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.hideToolbar = function(request, sender) {
ToolbarEvent.cache.mset({ hidden: config.hidden = true });
return ToolbarEvent._buildResponse({}, true);
}
/**
* Record reposition requests
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.repos = function(request, sender) {
ToolbarEvent.cache.mset({ rpos: config.rpos = request.data.rpos });
return ToolbarEvent._buildResponse({}, true);
}
/**
* Handles url-change events, returns the su url
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.urlChange = function(request, sender) {
return new Promise(function(resolve, reject) {
browser.tabs.query({active: true, currentWindow: true}, function(tabs) {
var url = (request && request.url && request.url.url) || (tabs[0] && tabs[0].url);
if (url) {
Page.urlChange(url, tabs[0].id)
.then(function(url) {
resolve(ToolbarEvent._buildResponse({url: url}));
});
} else {
reject(Promise.reject(new ToolbarError('TBEV', 'nourl-urlChange', Page.tab[sender.tab.id])));
}
});
});
}
/**
* Loads the stumbleupon info page in a new tab
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response
*/
ToolbarEvent.info = function(request, sender) {
if ((request.url && request.url.urlid) || Page.getUrlId(sender.tab.id))
browser.tabs.create({ url: 'http://' + config.baseUrl + config.url.info.form({ urlid: (request.url && request.url.urlid) || Page.getUrlId(sender.tab.id) }) });
return Promise.resolve(true);
}
/**
* Updates the active config. Never called by the toolbar.
*
* @param {MessageRequest} request
* @param {browser.runtime.MessageSender} sender
* @return {Promise} toolbar config response