Source: lib/basic-wrapper.js

/*
Copyright 2012 MarkLogic Corporation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
var http = require('http'),
    noop = require("./noop");

/**
 * Creates a new HTTP Basic Auth wrapper. Not to be created directly.
 * @constructor
 */
var BasicWrapper = function() {
  this.configure();
};

/**
 * Configures the basic wrapper
 */
BasicWrapper.prototype.configure = function(username,password,logger) {
  this.username = username;
  this.password = password;
  this.logger = logger;
};

/**
 * Handles a http request to the server
 */
BasicWrapper.prototype.request = function(options,content,callback_opt) {

    // contentType header usage
    if (undefined != options.contentType) {
      options.headers["Content-type"] = options.contentType;
    }
  // add http auth header
  options.headers["Authorization"] = "Basic " + new Buffer(this.username + ':' + this.password).toString('base64');
  return http.request(options,(callback_opt || noop));
};

/**
 * Performs a http get to the server
 */
BasicWrapper.prototype.get = function(options,callback_opt) {

    // contentType header usage
    if (undefined != options.contentType) {
      options.headers["Content-type"] = options.contentType;
    }
  // add http auth header
  options.headers["Authorization"] = "Basic " + new Buffer(this.username + ':' + this.password).toString('base64');
  return http.get(options,(callback_opt || noop));
};

module.exports = function() {return new BasicWrapper()};
MLJS - A JavaScript wrapper for the MarkLogic REST API
MarkLogic 2012-2014
Documentation generated by JSDoc 3.2.3-dev on Mon Jul 18 2016 09:14:11 GMT+0100 (BST) using the DocStrap template.