Git init
This commit is contained in:
commit
50c3a0c9e3
4 changed files with 74 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
npm_modules/
|
1
README.md
Normal file
1
README.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# Node.js lib for the Azure Bing Web Search API
|
1
index.js
Normal file
1
index.js
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module.exports = require('./lib/bing');
|
71
lib/bing.js
Normal file
71
lib/bing.js
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
|
||||||
|
/**************************************************************
|
||||||
|
* Simple Node.js module for using the Bing Search API *
|
||||||
|
**************************************************************/
|
||||||
|
|
||||||
|
// Require dependencies
|
||||||
|
var request = require('request'),
|
||||||
|
url = require('url'),
|
||||||
|
_ = require('underscore'),
|
||||||
|
qs = require('querystring');
|
||||||
|
|
||||||
|
|
||||||
|
var Bing = function( options ) {
|
||||||
|
|
||||||
|
if( !(this instanceof Bing) ) return new Bing( options );
|
||||||
|
|
||||||
|
var defaults = {
|
||||||
|
|
||||||
|
//Bing Search API URI
|
||||||
|
rootUri: "https://api.datamarket.azure.com/Bing/Search/Web",
|
||||||
|
//TODO move the web part, to choose also Images
|
||||||
|
|
||||||
|
//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)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Bing.prototype.search = function(query, callback, options) {
|
||||||
|
|
||||||
|
if(typeof callback != 'function') {
|
||||||
|
throw "Error: Callback function required!";
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO check if valid options
|
||||||
|
|
||||||
|
var opts = this.options;
|
||||||
|
|
||||||
|
if(options != null) {
|
||||||
|
opts = _.extend(this.options, options)
|
||||||
|
}
|
||||||
|
|
||||||
|
var reqUri = opts.rootUri
|
||||||
|
+ "?$format=json&"
|
||||||
|
+ qs.stringify({ "Query": "'" + query + "'" })
|
||||||
|
|
||||||
|
request({
|
||||||
|
uri: reqUri,
|
||||||
|
method: opts.method || "GET",
|
||||||
|
headers: {
|
||||||
|
"User-Agent": opts.userAgent
|
||||||
|
},
|
||||||
|
auth: {
|
||||||
|
user: opts.accKey,
|
||||||
|
pass: opts.accKey
|
||||||
|
},
|
||||||
|
timeout: opts.reqTimeout
|
||||||
|
|
||||||
|
}, callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = Bing;
|
Loading…
Add table
Add a link
Reference in a new issue