-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
99 lines (77 loc) · 2.18 KB
/
handler.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
/**
* Date: 28.05.2012.
* Version: 0.1
* Description: Simple context search for movie via imdbapi.com
*/
var title = "Find on IMDB";
var displayTime = 15000; //time to display popup
var id = chrome.contextMenus.create({"title": title, "contexts":["selection"],
"onclick": sendRequest});
function sendRequest(info, tab) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(data) {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
var data = JSON.parse(xhr.responseText);
show(data, beautifyString(info.selectionText));
} else {
show(false, beautifyString(info.selectionText));
}
}
}
var iaurl = 'http://www.imdbapi.com/?t=' + encodeURI(beautifyString(info.selectionText));
xhr.open("GET", iaurl , true);
xhr.send();
}
function show(data, query) {
if (!data) {
showError(query);
}
else {
if (data.Response == "True") {
var notification = window.webkitNotifications.createNotification(
data.Poster,
data.Title + ' (' + data.Year + ')' + ' - ' + data.imdbRating,
data.Genre
);
notification.ondisplay = function() {
setTimeout(function(){
notification.cancel();
},displayTime); };
notification.onclick = function() {
chrome.tabs.create({
'url': 'http://www.imdb.com/title/' +data.imdbID,
'selected':true
});
};
notification.show();
}
else {
showError(query);
}
}
}
function showError(query) {
var notification = window.webkitNotifications.createNotification(
'',
'Movie was not found.',
'Sorry, but there was no movie ' + query + ' found on IMDB database'
);
notification.ondisplay = function() {
setTimeout(function(){
notification.cancel();
}, displayTime); };
notification.onclick = function() {
notification.cancel();
};
notification.show();
}
/**
* This function replaces common separators with blank space
*/
function beautifyString(mname) {
mname = mname.split('.').join(' ');
mname = mname.split('-').join(' ');
mname = mname.split('_').join(' ');
return mname;
}