You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
64 lines
1.6 KiB
"use strict";
|
|
|
|
const nodegit = require('nodegit');
|
|
const fse = require('fs-extra');
|
|
const gitToFs = require('./copy').gitToFs;
|
|
const mkdirs = (path) => {
|
|
/*jslint stupid: true */
|
|
fse.mkdirsSync(path);
|
|
};
|
|
const removedirs = (path) => {
|
|
/*jslint stupid: true */
|
|
fse.removeSync(path);
|
|
};
|
|
|
|
/*
|
|
options = {
|
|
"remote": "https://github.com/visionmedia/express.git",
|
|
"local": "D:\\data\\repositories\\visionmedia\\express.git\\",
|
|
"branch": "1.x",
|
|
"hash": "82e15cf321fccf3215068814d1ea1aeb3581ddb3",
|
|
"exported": "D:\\data\\exportedsource\\visionmedia\\express\\82e15cf321fccf3215068814d1ea1aeb3581ddb3\\",
|
|
}
|
|
*/
|
|
|
|
module.exports = (options, globalCallback) => {
|
|
let url = options.remote;
|
|
const path = options.local + "/" + options.hash;
|
|
const exported = options.exported;
|
|
|
|
removedirs(path);
|
|
mkdirs(path);
|
|
|
|
if (url.substr(0, 8) === "https://") {
|
|
url = "git://" + url.substr(8);
|
|
}
|
|
|
|
console.log("Cloning %s to %s", url, path);
|
|
|
|
nodegit.Repository.init(path, 1)
|
|
.catch(globalCallback)
|
|
.then((repo) => nodegit.Remote.create(repo, "origin", url)
|
|
.catch(globalCallback)
|
|
.then((remote) => remote.fetch([options.branch])
|
|
.catch(globalCallback)
|
|
.then((number) => {
|
|
if (number) {
|
|
return globalCallback("Failed to fetch commit: error number " + number);
|
|
}
|
|
|
|
console.log("Cloned %s to %s", url, path);
|
|
|
|
repo.getCommit(options.hash)
|
|
.catch(globalCallback)
|
|
.then((commit) => {
|
|
removedirs(exported);
|
|
mkdirs(exported);
|
|
|
|
gitToFs(commit, exported, (err, result) => {
|
|
repo.free();
|
|
return globalCallback(err, result);
|
|
});
|
|
});
|
|
})));
|
|
};
|
|
|