2017-03-29 17:50:05 +00:00
|
|
|
let fs = require('../core/fs.js');
|
2018-08-07 23:02:36 +00:00
|
|
|
let utils = require('./utils.js');
|
2016-08-21 14:42:42 +00:00
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
class TemplateGenerator {
|
2017-06-26 20:48:05 +00:00
|
|
|
constructor(templateName) {
|
2017-03-30 11:12:39 +00:00
|
|
|
this.templateName = templateName;
|
|
|
|
}
|
2016-08-21 14:42:42 +00:00
|
|
|
|
2018-08-23 20:42:47 +00:00
|
|
|
checkPathExists(fspath) {
|
|
|
|
if (fs.existsSync(fspath)) {
|
|
|
|
console.error(`${fspath} already exists, will not overwrite`.red);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-06 08:38:09 +00:00
|
|
|
downloadAndGenerate(uri, destinationFolder, name) {
|
2018-08-23 20:42:47 +00:00
|
|
|
const fspath = utils.joinPath(destinationFolder, name);
|
|
|
|
this.checkPathExists(fspath);
|
2018-07-06 08:52:47 +00:00
|
|
|
const self = this;
|
2018-07-06 08:38:09 +00:00
|
|
|
let {url, filePath} = this.getExternalProject(uri);
|
|
|
|
let tmpFilePath = fs.tmpDir(filePath);
|
2018-07-06 08:52:47 +00:00
|
|
|
console.log(__('Installing Template from ' + uri + '....').green);
|
2018-07-06 08:38:09 +00:00
|
|
|
|
|
|
|
fs.mkdirpSync(utils.dirname(tmpFilePath));
|
2018-09-11 20:19:15 +00:00
|
|
|
utils.downloadFile(url, tmpFilePath, (err) => {
|
|
|
|
if (err) {
|
|
|
|
console.error(err.red);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2018-07-06 14:54:52 +00:00
|
|
|
utils.extractZip(tmpFilePath, fspath, {
|
2018-07-06 08:38:09 +00:00
|
|
|
map: file => {
|
|
|
|
let fixed_path = file.path.split('/');
|
|
|
|
fixed_path.shift(); // remove first directory
|
|
|
|
file.path = utils.joinPath(...fixed_path);
|
|
|
|
return file;
|
|
|
|
}
|
2018-07-09 13:30:27 +00:00
|
|
|
}, () => {
|
2018-07-06 08:52:47 +00:00
|
|
|
self.installTemplate(fspath, name, true);
|
2018-07-06 08:38:09 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-30 11:12:39 +00:00
|
|
|
generate(destinationFolder, name) {
|
2018-08-23 20:42:47 +00:00
|
|
|
const fspath = utils.joinPath(destinationFolder, name);
|
|
|
|
this.checkPathExists(fspath);
|
2018-08-15 15:42:28 +00:00
|
|
|
console.log(__('Initializing Embark Template...').green);
|
2016-08-21 14:42:42 +00:00
|
|
|
|
2018-07-06 08:52:47 +00:00
|
|
|
let templatePath = fs.embarkPath(utils.joinPath('templates', this.templateName));
|
2017-03-30 11:26:03 +00:00
|
|
|
fs.copySync(templatePath, fspath);
|
2018-07-06 08:52:47 +00:00
|
|
|
|
|
|
|
this.installTemplate(fspath, name, (name === 'embark_demo'));
|
|
|
|
|
|
|
|
if (name === 'embark_demo') {
|
|
|
|
console.log('-------------------'.yellow);
|
|
|
|
console.log(__('Next steps:').green);
|
|
|
|
console.log(('-> ' + ('cd ' + fspath).bold.cyan).green);
|
|
|
|
console.log('-> '.green + 'embark run'.bold.cyan);
|
|
|
|
console.log(__('For more info go to http://embark.status.im').green);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
installTemplate(templatePath, name, installPackages) {
|
|
|
|
utils.cd(templatePath);
|
2017-03-30 11:12:39 +00:00
|
|
|
utils.sed('package.json', '%APP_NAME%', name);
|
2018-08-12 19:09:04 +00:00
|
|
|
if (fs.existsSync('dot.gitignore')) {
|
|
|
|
fs.moveSync('dot.gitignore', '.gitignore');
|
|
|
|
}
|
2018-07-06 08:52:47 +00:00
|
|
|
|
2018-08-12 20:02:03 +00:00
|
|
|
if (fs.existsSync('dot.gitignore')) {
|
|
|
|
fs.moveSync('dot.gitignore', '.gitignore');
|
|
|
|
}
|
2017-01-14 00:17:29 +00:00
|
|
|
|
2018-07-06 08:52:47 +00:00
|
|
|
if (installPackages) {
|
2018-05-08 21:49:46 +00:00
|
|
|
console.log(__('Installing packages...').green);
|
2018-01-03 17:42:38 +00:00
|
|
|
utils.runCmd('npm install');
|
|
|
|
}
|
|
|
|
|
2018-05-08 21:49:46 +00:00
|
|
|
console.log(__('Init complete').green);
|
2018-07-06 08:52:47 +00:00
|
|
|
console.log('\n' + __('App ready at ').green + templatePath);
|
2017-01-14 00:17:29 +00:00
|
|
|
}
|
2018-07-06 08:38:09 +00:00
|
|
|
|
2018-09-05 21:59:42 +00:00
|
|
|
extractGithubUrlAndFolder(uri){
|
|
|
|
|
|
|
|
/* first matching group is the url, second the repoPart and third the branch with a hash in the beginning (if existing)
|
|
|
|
e.g. (["git@github.com/status-im/dappcon-workshop-dapp#master", "status-im/dappcon-workshop-dapp", "#master" ])
|
|
|
|
should work with all formats of the following:
|
|
|
|
* git@github.com/status-im/dappcon-workshop-dapp#start-here
|
|
|
|
* git@github.com/status-im/dappcon-workshop-dapp
|
|
|
|
* http://www.github.com/status-im/dappcon-workshop-dapp
|
|
|
|
* https://www.github.com/status-im/dappcon-workshop-dapp
|
|
|
|
* github.com/status-im/dappcon-workshop-dapp#start-here
|
|
|
|
|
|
|
|
sadly it doesn't extract from http(s)://github.com/status-im/dappcon-workshop-dapp/tree/start-here
|
|
|
|
thats why we have a special case later
|
|
|
|
*/
|
|
|
|
const match = uri.match(/github\.com+\/(.+?)(#.*)?$/);
|
|
|
|
const githubPart = "https://github.com/";
|
|
|
|
let repoPart = match !== null? match[1] : null;
|
|
|
|
let branchName = match !== null? match[2] : null;
|
|
|
|
|
|
|
|
if (branchName && branchName !== '#'){
|
|
|
|
branchName = branchName.substring(1);
|
|
|
|
} else {
|
|
|
|
branchName = "master";
|
|
|
|
}
|
2018-07-06 08:38:09 +00:00
|
|
|
|
|
|
|
let url, folder;
|
2018-09-05 21:59:42 +00:00
|
|
|
if (uri.includes("/tree")){
|
|
|
|
//e.g http(s)://github.com/status-im/dappcon-workshop-dapp/tree/start-here
|
|
|
|
let repoPartAndBranch = repoPart.split("/tree/");
|
|
|
|
repoPart = repoPartAndBranch[0];
|
|
|
|
branchName = repoPartAndBranch[1];
|
|
|
|
url = "https://github.com/" + repoPart + "/archive/"+ branchName +".zip";
|
|
|
|
folder = repoPart + "/" + branchName;
|
|
|
|
} else if (repoPart !== undefined) {
|
|
|
|
url = githubPart + repoPart + "/archive/" + branchName + ".zip";
|
|
|
|
folder = repoPart + "/" + branchName;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
'url': url,
|
|
|
|
'folder': folder
|
|
|
|
};
|
|
|
|
}
|
2018-07-06 08:38:09 +00:00
|
|
|
|
2018-09-05 21:59:42 +00:00
|
|
|
getExternalProject(uri) {
|
|
|
|
let url, folder;
|
|
|
|
if (uri.split('/').length === 2) {
|
|
|
|
//e.g embark-framework/embark
|
|
|
|
let repoPartAndBranch = uri.split('#');
|
|
|
|
let repoPart = repoPartAndBranch[0];
|
|
|
|
let branchName = (repoPartAndBranch.length === 2)? repoPartAndBranch[1] : "master";
|
|
|
|
url = "https://github.com/" + repoPart + "/archive/"+ branchName + ".zip";
|
|
|
|
folder = repoPart + "/" + branchName;
|
2018-07-06 08:38:09 +00:00
|
|
|
} else if (uri.indexOf('/') === -1) {
|
2018-07-06 08:41:37 +00:00
|
|
|
url = "https://github.com/embark-framework/embark-" + uri + "-template/archive/master.zip";
|
|
|
|
folder = "embark-framework/embark-" + uri + "-template";
|
2018-09-05 21:59:42 +00:00
|
|
|
} else {
|
|
|
|
let urlAndFolder = this.extractGithubUrlAndFolder(uri);
|
|
|
|
url = urlAndFolder.url;
|
|
|
|
folder = urlAndFolder.folder;
|
2018-07-06 08:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
url,
|
|
|
|
filePath: utils.joinPath(".embark/templates/", folder, "archive.zip")
|
|
|
|
};
|
|
|
|
}
|
2017-03-30 11:12:39 +00:00
|
|
|
}
|
2016-08-21 14:42:42 +00:00
|
|
|
module.exports = TemplateGenerator;
|