Code coverage report for lib/api/view.js

Statements: 100% (31 / 31)      Branches: 100% (0 / 0)      Functions: 100% (6 / 6)      Lines: 100% (31 / 31)      Ignored: none     

All files » lib/api/ » view.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 861 1 1                 1   1 1 1   1 1   1                 1   1   1                   1   1   1 1   1                 1   1 1   1                 1   1 1 1       1 1 1 1 1
var feedparser = require('feedparser');
var req        = require('bagofrequest');
var util       = require('./util');
 
/**
 * Create a view with specified configuration.
 *
 * @param {String} name: Jenkins view name
 * @param {String} config: Jenkins view config.xml
 * @param {Function} cb: standard cb(err, result) callback
 */
function create(name, config, cb) {
 
  this.opts.queryStrings = { name: name };
  this.opts.headers      = { 'content-type': 'application/xml' };
  this.opts.body         = config;
 
  this.opts.handlers[200] = util.passThroughSuccess;
  this.opts.handlers[400] = util.htmlError; 
 
  req.request('post', this.url + '/createView', this.opts, cb);  
}
 
/**
 * Retrieve information about a view.
 *
 * @param {String} name: Jenkins view name
 * @param {Function} cb: standard cb(err, result) callback
 */
function read(name, cb) {
 
  this.opts.handlers[200] = util.passThroughSuccessJson;
 
  req.request('get', this.url + '/view/' + name + '/api/json', this.opts, cb);
}
 
/**
 * Update a view with specified configuration
 *
 * @param {String} name: Jenkins view name
 * @param {String} config: Jenkins view config.xml
 * @param {Function} cb: standard cb(err, result) callback
 */
function update(name, config, cb) {
 
  this.opts.body = config;
 
  this.opts.handlers[200] = util.passThroughSuccess;
  this.opts.handlers[404] = util.viewNotFoundError(name);
 
  req.request('post', this.url + '/view/' + name + '/config.xml', this.opts, cb);
}
 
/**
 * Fetch a view configuration.
 *
 * @param {String} name: Jenkins view name
 * @param {Function} cb: standard cb(err, result) callback
 */
function fetchConfig(name, cb) {
 
  this.opts.handlers[200] = util.passThroughSuccess;
  this.opts.handlers[404] = util.viewNotFoundError(name);
 
  req.request('get', this.url + '/view/' + name + '/config.xml', this.opts, cb);
}
 
/**
 * Parse view feed.
 *
 * @param {String} name: Jenkins view name
 * @param {Function} cb: standard cb(err, result) callback
 */
function parseFeed(name, cb) {
 
  var url = this.url + '/view/' + name + '/rssAll';
  feedparser.parseUrl(url, function (err, meta, articles) {
    cb(err, articles);
  });
}
 
exports.create      = create;
exports.read        = read;
exports.update      = update;
exports.fetchConfig = fetchConfig;
exports.parseFeed   = parseFeed;