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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
<?php
require_once 'bedita_base.php';
class FrontendShell extends BeditaBaseShell {
private $repositories = array(
'boilerplate-api' => 'https://github.com/bedita/boilerplate-api.git',
'boilerplate' => 'https://github.com/bedita/boilerplate.git',
'web-starter-kit' => 'https://github.com/bedita/web-starter-kit.git',
'responsive' => 'https://github.com/bedita/responsive.git',
'bootstrap' => 'https://github.com/bedita/bootstrap.git',
);
public function init() {
$this->title('initialize a new frontend');
$name = (!empty($this->params['name'])) ? $this->params['name'] : $this->in('Choose a name for your frontend');
if (empty($name)) {
$this->error('Missing frontend name', 'Frontend name is mandatory');
}
$this->out();
$this->out('Skeleton available:');
$this->out();
$repoNames = array_keys($this->repositories);
foreach ($repoNames as $i => $repoName) {
$n = $i + 1;
$this->out($n . '. ' . $repoName . ' (' . $this->repositories[$repoName] . ')');
}
$this->out();
$choice = $this->in('Choose a frontend skeleton', null, 1);
$this->out();
if (empty($repoName[$choice - 1])) {
$this->error('Wrong skeleton selected');
}
$skeleton = $repoNames[$choice - 1];
if (empty($this->params['path'])) {
$answer = $this->in('Frontend "' . $name . '" will be created in ' . BEDITA_FRONTENDS_PATH
. $this->nl() . 'Is it right?', array('y', 'n'), 'y');
$this->out();
$answer = strtolower($answer);
if ($answer != 'y' && $answer != 'n') {
$this->error($answer . 'is not valid answer');
}
if ($answer == 'n') {
$path = $this->in('Write the frontend path ("' . $name . '" excluded)');
} else {
$path = BEDITA_FRONTENDS_PATH;
}
} else {
$path = $this->params['path'];
}
$folder = new Folder();
if (!$folder->cd($path)) {
$this->error($path . " doesn't exists or it's not a directory or it is not accessible.");
}
$frontendPath = $path . DS . $name;
$this->out();
$this->title('Frontend ' . $name .' data');
$this->out('Folder: ' . $frontendPath);
$this->out('Skeleton: ' . $skeleton . ' (' . $this->repositories[$skeleton] . ')');
$this->out();
$answer = $this->in('Do you want to proceed with the above data?', array('y', 'n'), 'y');
$this->out();
if ($answer != 'y' && $answer != 'n') {
$this->error($answer . 'is not valid answer');
}
if ($answer == 'n') {
$path = $this->out('Creation aborted. Bye');
return;
}
$gitClone = 'git clone ' . $this->repositories[$skeleton] . ' ' . $frontendPath;
$this->out("Git clone command:\n> $gitClone");
$res = system($gitClone);
if ($res === false) {
$this->error("git clone fail. Bye.");
}
if (!$folder->delete($frontendPath . DS . '.git')) {
$this->error('fail to remove ' . $frontendPath . DS . '.git folder.'
. $this->nl() . 'Anyway the frontend "' . $name . '" was created. Remove .git folder by hand');
}
$this->out();
$answer = $this->in('Do you want to init a new git repository?', array('y', 'n'), 'y');
$this->out();
if ($answer != 'y' && $answer != 'n') {
$this->error($answer . 'is not valid answer');
}
if ($answer == 'y') {
if (system('cd ' . $frontendPath . '; git init') === false) {
$path = $this->error('git repository init failed in ' . $frontendPath);
}
}
$this->out();
$this->hr();
$this->out('Frontend "' . $name . '" created in ' . $path);
}
public function help() {
$this->out('Available functions:');
$this->out(' ');
$this->out('1. init: initialize a new BEdita frontend instance from scratch');
$this->out(' ');
$this->out(' Usage: init [-name <frontend-folder-name>] [-path <base-frontend-path>');
$this->out(' ');
}
}