diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-28 20:16:30 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-28 20:16:30 +0200 |
commit | 5f1bfc02805e074ab47bc8966410cf8042363c48 (patch) | |
tree | 74072e8dbb2963e3697846dbc59efbb214f76d6b /bin | |
parent | b715901f9203daacf705ce4e9db47b3d75980996 (diff) | |
download | gitbook-5f1bfc02805e074ab47bc8966410cf8042363c48.zip gitbook-5f1bfc02805e074ab47bc8966410cf8042363c48.tar.gz gitbook-5f1bfc02805e074ab47bc8966410cf8042363c48.tar.bz2 |
Fix #163: Move logic of git infos extraction to lib
Diffstat (limited to 'bin')
-rw-r--r-- | bin/build.js | 36 | ||||
-rw-r--r-- | bin/utils.js | 96 |
2 files changed, 13 insertions, 119 deletions
diff --git a/bin/build.js b/bin/build.js index 37415bd..597b0de 100644 --- a/bin/build.js +++ b/bin/build.js @@ -34,29 +34,19 @@ var makeBuildFunc = function(converter) { console.log('Starting build ...'); - // Get repo's URL - return utils.gitURL(dir) - .then(function(url) { - // Get ID of repo - return utils.githubID(url); - }, function(err) { - return null; - }) - .then(function(repoID) { - return converter( - _.extend({}, options || {}, { - input: dir, - output: outputDir, - title: options.title, - description: options.intro, - github: options.github || repoID, - githubHost: options.githubHost, - generator: options.format, - plugins: options.plugins, - pluginsConfig: pluginsConfig - }) - ); - }) + return converter( + _.extend({}, options || {}, { + input: dir, + output: outputDir, + title: options.title, + description: options.intro, + github: options.github, + githubHost: options.githubHost, + generator: options.format, + plugins: options.plugins, + pluginsConfig: pluginsConfig + }) + ) .then(function(output) { console.log("Successfuly built !"); return output; diff --git a/bin/utils.js b/bin/utils.js deleted file mode 100644 index 45bc7d5..0000000 --- a/bin/utils.js +++ /dev/null @@ -1,96 +0,0 @@ -var Q = require('q'); -var _ = require('lodash'); - -var http = require('http'); -var send = require('send'); - -var cp = require('child_process'); -var path = require('path'); -var url = require('url'); - -var Gaze = require('gaze').Gaze; - - -// Get the remote of a given repo -function gitURL(path) { - var d = Q.defer(); - - cp.exec("git config --get remote.origin.url", { - cwd: path, - env: process.env, - }, function(err, stdout, stderr) { - if(err) { - return d.reject(err); - } - - return d.resolve(stdout); - }); - - return d.promise - .then(function(output) { - return output.replace(/(\r\n|\n|\r)/gm, ""); - }); -} - -// Poorman's parsing -// Parse a git URL to a github ID : username/reponame -function githubID(_url) { - // Remove .git if it's in _url - var sliceEnd = _url.slice(-4) === '.git' ? -4 : _url.length; - - // Detect HTTPS repos - var parsed = url.parse(_url); - if(parsed.protocol === 'https:' && parsed.host === 'github.com') { - return parsed.path.slice(1, sliceEnd); - } - - // Detect SSH repos - if(_url.indexOf('git@') === 0) { - return _url.split(':', 2)[1].slice(0, sliceEnd); - } - - // None found - return null; -} - -function titleCase(str) -{ - return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();}); -} - -function watch(dir) { - var d = Q.defer(); - dir = path.resolve(dir); - - var gaze = new Gaze("**/*.md", { - cwd: dir - }); - - gaze.once("all", function(e, filepath) { - gaze.close(); - - d.resolve(filepath); - }); - gaze.once("error", function(err) { - gaze.close(); - - d.reject(err); - }); - - return d.promise; -} - -function logError(err) { - console.log(err.stack || err.message || err); - return Q.reject(err); -}; - - -// Exports -module.exports = { - gitURL: gitURL, - githubID: githubID, - titleCase: titleCase, - watch: watch, - logError: logError -}; |