nci/lib/project.js

102 lines
2.0 KiB
JavaScript
Raw Normal View History

2014-12-02 21:21:32 +00:00
'use strict';
2015-04-12 22:19:42 +00:00
var Steppy = require('twostep').Steppy,
2014-12-02 21:21:32 +00:00
fs = require('fs'),
2015-04-12 22:19:42 +00:00
path = require('path'),
2015-05-18 17:52:01 +00:00
_ = require('underscore'),
2015-05-20 20:20:51 +00:00
reader = require('./reader'),
utils = require('./utils');
2014-12-02 21:21:32 +00:00
/**
* Validates and returns given `config` to the `callback`(err, config)
*/
exports.validateConfig = function(config, callback) {
callback(null, config);
};
/**
* Loads and returns project
2014-12-02 21:21:32 +00:00
*/
exports.load = function(baseDir, name, callback) {
var dir = path.join(baseDir, name);
Steppy(
function() {
fs.readdir(dir, this.slot());
},
function(err, dirContent) {
exports.loadConfig(dir, this.slot());
},
function(err, config) {
exports.validateConfig(config, this.slot());
},
function(err, config) {
2015-06-14 20:31:17 +00:00
config.name = name;
config.dir = dir;
this.pass(config);
2015-04-12 22:19:42 +00:00
},
callback
);
};
/**
* Loads all projects from `baseDir` and returns array of projects
2015-04-12 22:19:42 +00:00
*/
exports.loadAll = function(baseDir, callback) {
Steppy(
function() {
fs.readdir(baseDir, this.slot());
},
function(err, dirs) {
var loadGroup = this.makeGroup();
_(dirs).each(function(dir) {
exports.load(baseDir, dir, loadGroup.slot());
});
2014-12-02 21:21:32 +00:00
},
callback
);
};
exports.loadConfig = function(dir, callback) {
Steppy(
function() {
2015-05-18 17:52:01 +00:00
reader.load(dir, 'config', this.slot());
2014-12-02 21:21:32 +00:00
},
function(err, config) {
// apply defaults
_(config.steps).each(function(step) {
2015-05-20 20:20:51 +00:00
if (!step.type) step.type = 'shell';
if (!step.name) step.name = utils.prune(step.cmd, 40);
});
this.pass(config);
},
2014-12-02 21:21:32 +00:00
callback
);
};
exports.saveConfig = function(config, dir, callback) {
fs.writeFile(
path.join(dir, 'config.json'),
JSON.stringify(config, null, 4),
callback
);
};
exports.create = function(baseDir, config, callback) {
var dir;
Steppy(
function() {
dir = path.join(baseDir, config.name);
fs.mkdir(dir, this.slot());
},
function(err) {
exports.saveConfig(config, baseDir, this.slot());
},
function(err) {
exports.load(dir, this.slot());
},
callback
);
};