-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlongurl-mobile-expander.user.js
More file actions
414 lines (371 loc) · 11.1 KB
/
longurl-mobile-expander.user.js
File metadata and controls
414 lines (371 loc) · 11.1 KB
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
// ==UserScript==
// @name LongURL Mobile Expander
// @description Expand shortened URLs wherever you go by harnessing the power of LongURL.org.
// @version 2.1
// @author Sean Murphy
// @namespace http://IamSeanMurphy.com
// @copyright 2008-2012, Sean Murphy
// @license GNU GPL (http://www.gnu.org/copyleft/gpl.html)
// @include http://*
// @include https://*
// @require http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.1/underscore-min.js
// @require http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.2/jquery.min.js
// ==/UserScript==
/**
* LongURL Mobile Expander class
*/
function LongURLMobileExpander() {
/**
* @access private
*/
var self = this,
cache = [],
queue = [],
tooltip,
tooltipTimeout,
currentElement;
/**
* @access public
*/
this.apiEndpoint = 'http://api.longurl.org/v2/';
this.scriptVersion = '2.1';
/**
* Initialization method
*
* @access privileged
* @return void
*/
this.init = function() {
// Create the tooltip element
tooltip = $('<span></span>')
.css({
display: 'none',
position: 'absolute',
overflow: 'hidden',
maxWidth: '300px',
backgroundColor: '#ffffc9',
border: '1px solid #c9c9c9',
padding: '3px',
fontSize: '0.6em',
fontFamily: 'Helvetica, Arial, sans-serif',
letterSpacing: '0px',
color: '#000',
zIndex: '5000',
textAlign: 'left'
})
.hover(function() {
clearTimeout(tooltipTimeout);
}, this.hideTooltip);
// Inject the tooltip into the document
$('body').append(tooltip);
// Bind event handlers to short URLs
modifyShortLinks(getServices(modifyShortLinks));
// Process new links added by Ajax/JS
$('body').bind(
'DOMNodeInserted',
_.debounce(function() {
console.log('node inserted');
modifyShortLinks(getServices());
},
200
));
};
/**
* Set tooltip content and position
*
* @access privileged
* @param str text
* @param int x (optional)
* @param int y (optional)
* @return void
*/
this.setTooltip = function(text, x, y) {
tooltip
.html(text || 'Expanding...')
.css({
display: 'inline',
top: (y + 15 || tooltip.css('top')) + 'px',
left: (x || tooltip.css('left')) + 'px'
});
};
/**
* Hide tooltip after a delay
*
* @access privileged
* @return void
*/
this.hideTooltip = function() {
clearTimeout(tooltipTimeout);
tooltipTimeout = setTimeout(function() {
tooltip.hide();
}, 600);
}
/**
* Expand a link and set the tooltip for that link to the expanded URL
*
* @access privileged
* @param str url
* @return void
*/
this.expandLink = function(url) {
if (_.isUndefined(url)) return;
// Check cache
if (getCache(url) !== false) return getCache(url);
// An API request has already been sent for this URL
if (!enqueue(url)) return;
ajax({
method: 'GET',
url: this.apiEndpoint + 'expand?format=json&title=1&url=' + encodeURIComponent(url),
headers: {
'User-Agent': 'LongURL Mobile Expander/' + this.scriptVersion + ' (Greasemonkey)'
},
onload: function(response) {
data = $.parseJSON(response.responseText);
// cache response
if (!_.isUndefined(data.messages)) { // There was an error
var result = 'LongURL Error: ' + data.messages[0].message;
} else {
var result = data['long-url'];
if (!_.isUndefined(data['title'])) {
result = '<strong style="font-weight: bold;">'+data['title']+'</strong><br />' + result;
}
result += ' <a href="http://longurl.org/expand?url='
+ encodeURIComponent(url)
+ '&src=lme_gm" title="Get more information about this link" style="color:#00f;">[more]</a>';
}
setCache(url, result);
//Remove from queue
dequeue(url);
// Make sure user is still hovering over this link before updating tooltip
if (current() === url) {
self.setTooltip(getCache(url));
}
}
});
};
/**
* Get the list of supported URL shortening services
*
* @access private
* @param Function callback (optional) Function to call when the Ajax response comes back
* @return Object|void
*/
var getServices = function(callback) {
// Get from cache
if (getCache('services')) return getCache('services');
// Get from storage
if (Date.parse(getValue('longurl_services_expire', 0)) > (new Date).getTime()) {
var serializedServices = getValue('longurl_services', false),
services = $.parseJSON(serializedServices);
setCache('services', services);
return services;
}
// Get from API
ajax({
method: 'GET',
url: self.apiEndpoint + 'services?format=json',
headers: {
'User-Agent': 'LongURL Mobile Expander/' + self.scriptVersion + ' (Greasemonkey)'
},
onload: function(response) {
data = $.parseJSON(response.responseText);
if (_.isArray(data.messages)) {
return; // There was an error
}
setCache('services', data);
saveServices(data);
if (_.isFunction(callback)) {
callback(data);
}
}
});
};
/**
* Save list of supported URL shortening services so they are cached between pages/requests
*
* @access private
* @param Object services
* @return void
*/
var saveServices = function(services) {
// Store the list of supported services locally
if (setValue('longurl_services', JSON.stringify(services))) {
alert('LongURL Mobile Expander requires Greasemokey 0.3 or higher.');
}
// Cache for 24 hours
var date = new Date();
date.setTime(date.getTime() + (1000 * 60 * 60 * 24 * 1));
setValue('longurl_services_expire', date.toUTCString());
};
/**
* Find all shortened URLs in the document and attach event handlers
*
* @access private
* @param Object services
* @return void
*/
var modifyShortLinks = function(services) {
if (!_.size(services)) return;
var currentDomain = document.location.href.match(/^https?:\/\/(?:www\.)?([^\.]+\.[^\/]+)/i);
// Find all links that haven't been processed yet
$('a[href]:not(a[data-lme=processed])').each(function(index, a) {
var $a = $(a),
domain = $a.attr('href')
.match(/^http:\/\/(?:(?:www\.)?(?:[^\.]+\.(notlong\.com|qlnk\.net|ni\.to|lu\.to|zzang\.kr)|([^\.]+\.[^\/]+)))/i);
domain = domain[1] || domain[2] || false;
if ((
// Isn't a local link AND is in list of short URL services
domain !== currentDomain[1]
&& !_.isUndefined(services[domain])
) && (
// Doesn't have a regex OR regex matches
!services[domain]['regex']
|| $a.attr('href').match(new RegExp(services[domain]['regex'], 'i'))
))
{
// Remove existing tooltip, if present, and attach event handlers
$a.attr('title', null)
.hoverIntent(function(e) {
clearTimeout(tooltipTimeout);
current(e.target.href);
self.setTooltip(self.expandLink(e.target.href), e.pageX, e.pageY);
}, self.hideTooltip);
}
$a.attr('data-lme', 'processed');
});
};
/**
* Set/get the current link element that is being hovered over
*
* @access private
* @param Object element
* @return Object|void
*/
var current = function(element) {
if (_.isUndefined(element)) {
return currentElement;
}
currentElement = element;
};
/**
* Cache a value
*
* @access private
* @param str key
* @param mixed value
* @return void
*/
var setCache = function(key, value) {
cache[escape(key)] = value;
};
/**
* Return a cached value
*
* @access private
* @param str key
* @return mixed
*/
var getCache = function(key) {
if (!_.isUndefined(cache[escape(key)])) {
return cache[escape(key)];
}
return false;
};
/**
* Add an item to the queue of pending Ajax requests
*
* @access private
* @param str key The short URL
* @return bool Based on if the item was already in the queue or not
*/
var enqueue = function(key) {
if (_.isUndefined(queue[escape(key)])) {
queue[escape(key)] = true;
return true;
}
return false;
};
/**
* Remove an item from the queue of pending Ajax requests
*
* @access private
* @param str key The short URL
* @return void
*/
var dequeue = function(key) {
queue.splice(queue.indexOf(escape(key)), 1);
};
/**
* Store a value locally so that it survives the current pageview
*
* Greasekit did away with the GM_* functions, so for compatability I have to use wrapper functions and implement alternative
* functionality.
*
* @access private
* @param str key
* @param mixed value
* @return bool|void
*/
var setValue = function(key, value) {
if (_.isFunction(GM_setValue)) {
return GM_setValue(key, value);
} else {
document.cookie = key + '=' + encodeURIComponent(value);
}
};
/**
* Get a value that was stored locally
*
* @access private
* @param str key
* @param mixed defaultValue
* @return mixed
*/
var getValue = function(key, defaultValue) {
if (_.isFunction(GM_getValue)) {
return GM_getValue(key, defaultValue);
} else {
if (document.cookie != '') {
var cookies = document.cookie.split(';');
for(var x = 0; x < cookies.length; x++) {
var cookie = new String(cookies[x]).strip();
if (cookie.substring(0, key.length + 1) === (key + '=')) {
return decodeURIComponent(cookie.substring(key.length + 1));
}
}
}
return defaultValue;
}
};
/**
* Make an Ajax request
*
* @access private
* @param Object options
* @return Object|void
*/
var ajax = function(options) {
if (_.isFunction(GM_xmlhttpRequest)) {
return GM_xmlhttpRequest(options);
} else {
// This probably doesn't work
json_callback = details.onload;
var script = document.createElement('script');
script.src = details.url + '&callback=json_callback';
document.body.appendChild(script);
}
};
}
$(function() {
lme = new LongURLMobileExpander();
lme.init();
});
/**
* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
*
* @param f onMouseOver function || An object with configuration options
* @param g onMouseOut function || Nothing (use configuration options object)
* @author Brian Cherne brian(at)cherne(dot)net
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(jQuery);