-
Notifications
You must be signed in to change notification settings - Fork 1
/
SearchEngine.js
210 lines (204 loc) · 4.21 KB
/
SearchEngine.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
/**
* Search Engine Interface and Query Interface
*/
var SearchEngine = {
name : "Search engine name",
host : "Host name",
webSearch : {
support : false,
inputId : "",
inputName : "",
},
imageSearch : {
support : false,
inputId : "",
inputName : "",
},
mapSearch : {
support : false,
inputId : "",
inputName : "",
},
prefixes : [], //ascend order
domains : [], //ascend order
/**
* @param host in lower case
*/
isValidHost : function(host){
var info = this.getHostInfo(host);
if(!info){
return false;
}
if(this.prefixes.length &&
binarySearch(info.prefix, this.prefixes) == -1){
return false;
}
if(this.prefixes.length &&
binarySearch(info.postfix, this.domains) == -1){
return false;
}
return true;
},
getHostInfo : function(host){
var reg = new RegExp("([^.]+)?\.?" + this.host + "\.(.+)$", "i");
var pattern = reg.exec(host);
if(pattern && pattern.length == 3){
return {
prefix : pattern[1] || "",
postfix: pattern[2]
}
}
return null;
},
/**
* @return query type in (web, image, map, unknown)
*/
getQueryType : function(url){},
/**
* if the query type is unknown, try to give a safe uri.
*/
getFixURI : function(URI){},
/**
* @param web query uri of this search engine
* @return WebQuery
*/
parseWebSearchURI : function(webSearchURI){},
/**
* @param WebQuery
* @return full query uri of this search engine
*/
getWebSearchURI : function(webQuery){},
/**
* @param image query uri of this search engine
* @return WebQuery
*/
parseImageSearchURI : function(imageSearchURI){},
/**
* @param ImageQuery
* @return full query uri of this search engine
*/
getImageSearchURI : function(imageQuery){},
/**
* @param map query uri of this search engine
* @return WebQuery
*/
parseMapSearchURI : function(mapSearchURI){},
/**
* @param MapQuery
* @return full query uri of this search engine
*/
getMapSearchURI : function(mapQuery){},
getQueryInfo : function(url, type){
switch(type){
case "web":
return this.parseWebSearchURI(url);
case "image":
return this.parseImageSearchURI(url);
case "map":
return this.parseMapSearchURI(url);
default:
return {};
}
},
getQueryURL : function(info){
info = info || {};
switch(info.type){
case "web":
return this.getWebSearchURI(info);
case "image":
return this.getImageSearchURI(info);
case "map":
return this.getMapSearchURI(info);
default:
return "";
}
},
joinQueryKeyWords : function(details){
var str = "";
for(var i in details){
str = str + i + "=" + details[i] + "&";
}
if(str.length){
str = str.substr(0, str.length - 1);
}
return str;
},
encode : function(content, encoding){
if(encoding == "gbk"){
return $URL.encode(content || "");
} else {
return encodeURIComponent(content || "");
}
},
decode : function(content){
content = content || "";
try{
return decodeURIComponent(content);
} catch(e){
try{
return $URL.decode(content); //using chrome.* API?
} catch(e){
return content;
}
}
},
getInputInfo : function(type){
var info = {id:"", name:""};
switch(type){
case "web":
info.id = this.webSearch.inputId;
info.name = this.webSearch.inputName;
break;
case "image":
info.id = this.imageSearch.inputId;
info.name = this.imageSearch.inputName;
break;
case "map":
info.id = this.mapSearch.inputId;
info.name = this.mapSearch.inputName;
break;
default:
break;
}
return info;
}
}
function WebQuery(){
this.type = "web";
this.content = "";
this.site = ""; //all search engine suport the same advanced search?
this.intitle = "";
this.since = "";
}
function ImageQuery(){
this.type = "image";
this.content = "";
}
function MapQuery(){
this.type = "map";
this.content = "";
}
function ImplementInterface(dest, src){
for(var i in src){
if(!dest[i]){
dest[i] = src[i];
}
}
}
function binarySearch(dest, src){
var start = 0;
var end = src.length - 1;
var mid = 0;
while(start <= end){
mid = Math.floor((start + end) / 2);
if(src[mid] == dest){
return mid;
}
if(src[mid] < dest){
start = mid + 1;
} else {
end = mid - 1;
}
}
return -1;
}