-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbing.js
308 lines (251 loc) · 9.03 KB
/
bing.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
/*********************************************************
* Simple Node.js module for using the Bing Search API *
*********************************************************/
// Require dependencies
var request = require('request'),
url = require('url'),
_ = require('underscore'),
qs = require('querystring');
/**
* @param {Object} options Options to all Bing calls, allows overriding of
* rootUri, accKey (Bing API key), userAgent, reqTimeout
* @returns {Bing}
* @constructor
*/
var Bing = function (options) {
if (!(this instanceof Bing)) return new Bing(options);
var defaults = {
//Bing Search API URI
rootUri: "https://api.cognitive.microsoft.com/bing/v7.0/search",
//Account Key
accKey: null,
//Bing UserAgent
userAgent: 'Bing Search Client for Node.js',
//Request Timeout
reqTimeout: 5000
};
// Merge options passed in with defaults
this.options = _.extend(defaults, options);
// Performs the search request for the given vertical
this.searchVertical = function (query, vertical, options, callback) {
if (typeof options === 'function') {
callback = options;
}
if (typeof callback != 'function') {
throw "Error: Callback function required!";
}
// Create a copy of the options, to avoid permanent overwrites
var opts = JSON.parse(JSON.stringify(this.options));
if (typeof options === 'object') {
_.extend(opts, options);
}
// Map options and supported variation for old versions with the new names
var opMap = {
top: 'count',
skip: 'offset',
videosortby: 'videoSortBy',
videofilters: 'videoFilters',
adult: 'safeSearch',
safesearch: 'safeSearch',
market: 'mkt'
}
Object.keys(opts).forEach(function (opt) {
var newOp = opMap[opt]
if (newOp) {
opts[newOp] = opts[newOp] || opts[opt]
delete opts[opt]
}
})
var reqUri = opts.rootUri + vertical + "?q=" + query
// Filter the no-query options (accKey, rootUri, userAgent)
var queryOpts = {}
Object.keys(opts).forEach(function (opt) {
if (!~Object.keys(defaults).indexOf(opt)) {
queryOpts[opt] = opts[opt]
}
})
var qStr = qs.stringify(queryOpts);
reqUri += qStr ? '&' + qStr : '';
reqUri = encodeURI(reqUri);
request({
uri: reqUri,
method: opts.method || "GET",
headers: {
"User-Agent": opts.userAgent,
"Ocp-Apim-Subscription-Key": opts.accKey
},
timeout: opts.reqTimeout,
pool: {
maxSockets: opts.maxSockets ? opts.maxSockets : Infinity
}
}, function (err, res, body) {
if (res && res.statusCode !== 200) {
err = new Error(body);
} else {
// Parse body, if body
body = typeof body === 'string' ? JSON.parse(body) : body;
}
callback(err, res, body);
});
};
};
/**
* @callback requestCallback
* @param {String} error Error evaluates to true when an error has occurred.
* @param {Object} response Response object from the Bing call.
* @param {Object} body JSON of the response.
*/
/**
* Performs a Bing search in the Web vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding
* of rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
*
* @function
*/
Bing.prototype.web = function (query, options, callback) {
this.searchVertical(query, "search", options, callback);
};
// Alias Bing.search to Bing.web
// Note: Keep this for compatibility with older versions
Bing.prototype.search = Bing.prototype.web;
/**
* Performs a Bing search in the Composite vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding
* of rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset,
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
* @function
*/
Bing.prototype.composite = function (query, options, callback) {
this.searchVertical(query, "search", options, callback);
};
/**
* Performs a Bing search in the News vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding
* of rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset,
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
* @function
*/
Bing.prototype.news = function (query, options, callback) {
this.searchVertical(query, "news/search", options, callback);
};
/**
* Performs a Bing search in the Video vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding
* of rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset,
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
* @function
*/
Bing.prototype.video = function (query, options, callback) {
if (options && typeof options === 'object') {
//compatibility with older versions
options.videoFilters = options.videoFilters || options.videofilters || '';
if (options.videoFilters && typeof options.videoFilters === 'object') {
var filterQuery = Object.keys(options.videoFilters)
.map(function(key){
return capitalise(key) + ':'
+ capitalise(options.videoFilters[key]);
})
.join('+');
options.videoFilters = filterQuery;
}
}
this.searchVertical(query, "videos/search", options, callback);
};
/**
* Performs a Bing search in the Images vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding of
* rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset,
* imageFilters
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
* @function
*/
Bing.prototype.images = function (query, options, callback) {
if (options && typeof options === 'object') {
//compatibility with older versions
options.imageFilters = options.imageFilters || options.imagefilters || '';
if (options.imageFilters && typeof options.imageFilters === 'object') {
var filterQuery = Object.keys(options.imageFilters)
.map(function(key){
return capitalise(key) + ':'
+ capitalise(options.imageFilters[key]);
})
.join('+');
options.imageFilters = filterQuery;
}
}
this.searchVertical(query, "images/search", options, callback);
};
/**
* Performs a Bing search in the Related Search vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding
* of rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset,
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
* @function
*/
Bing.prototype.relatedSearch = function (query, options, callback) {
this.searchVertical(query, "search", options, callback);
};
/**
* Performs a Bing search in the Spelling Suggestions vertical.
*
* @param {String} query Query term to search for.
*
* @param {Object} options Options to command, allows overriding
* of rootUri, accKey (Bing API key),
* userAgent, reqTimeout, count, offset,
*
* @param {requestCallback} callback Callback called with (potentially
* json-parsed) response.
* @function
*/
Bing.prototype.spelling = function (query, options, callback) {
this.searchVertical(query, "spellcheck", options, callback);
};
/**
* Capitalises the first word of the passed string
*
* @param {String} s String to be capitalised
*
* @function
*/
function capitalise(s) {
return s.charAt(0).toUpperCase() + s.slice(1);
}
module.exports = Bing;