Merge remote-tracking branch 'ricardclau/dirty-updates'
commit
8eb71f5478
|
@ -608,7 +608,7 @@ The following options are supported:
|
||||||
* **cache-files-dir:** Defaults to `$cache-dir/files`. Stores the zip archives
|
* **cache-files-dir:** Defaults to `$cache-dir/files`. Stores the zip archives
|
||||||
of packages.
|
of packages.
|
||||||
* **cache-repo-dir:** Defaults to `$cache-dir/repo`. Stores repository metadata
|
* **cache-repo-dir:** Defaults to `$cache-dir/repo`. Stores repository metadata
|
||||||
for the `composer` type and the VCS repos of type `svn`, `github` and `*bitbucket`.
|
for the `composer` type and the VCS repos of type `svn`, `github` and `bitbucket`.
|
||||||
* **cache-vcs-dir:** Defaults to `$cache-dir/vcs`. Stores VCS clones for
|
* **cache-vcs-dir:** Defaults to `$cache-dir/vcs`. Stores VCS clones for
|
||||||
loading VCS repository metadata for the `git`/`hg` types and to speed up installs.
|
loading VCS repository metadata for the `git`/`hg` types and to speed up installs.
|
||||||
* **cache-files-ttl:** Defaults to `15552000` (6 months). Composer caches all
|
* **cache-files-ttl:** Defaults to `15552000` (6 months). Composer caches all
|
||||||
|
@ -622,6 +622,9 @@ The following options are supported:
|
||||||
* **notify-on-install:** Defaults to `true`. Composer allows repositories to
|
* **notify-on-install:** Defaults to `true`. Composer allows repositories to
|
||||||
define a notification URL, so that they get notified whenever a package from
|
define a notification URL, so that they get notified whenever a package from
|
||||||
that repository is installed. This option allows you to disable that behaviour.
|
that repository is installed. This option allows you to disable that behaviour.
|
||||||
|
* **discard-changes:** Defaults to `false` and can be any of `true`, `false` or
|
||||||
|
`stash`. This option allows you to set the default style of handling dirty
|
||||||
|
updates, specially useful for non-interactive mode.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
|
|
@ -167,6 +167,10 @@
|
||||||
"cache-files-maxsize": {
|
"cache-files-maxsize": {
|
||||||
"type": ["string", "integer"],
|
"type": ["string", "integer"],
|
||||||
"description": "The cache max size for the files cache, defaults to \"300MiB\"."
|
"description": "The cache max size for the files cache, defaults to \"300MiB\"."
|
||||||
|
},
|
||||||
|
"discard-changes": {
|
||||||
|
"type": ["string"],
|
||||||
|
"description": "The default style of handling dirty updates, defaults to \"false\" and can be any of \"true\", \"false\" or \"stash\"."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -271,6 +271,10 @@ EOT
|
||||||
function ($val) { return preg_match('/^\s*([0-9.]+)\s*(?:([kmg])(?:i?b)?)?\s*$/i', $val) > 0; },
|
function ($val) { return preg_match('/^\s*([0-9.]+)\s*(?:([kmg])(?:i?b)?)?\s*$/i', $val) > 0; },
|
||||||
function ($val) { return $val; }
|
function ($val) { return $val; }
|
||||||
),
|
),
|
||||||
|
'discard-changes' => array(
|
||||||
|
function ($val) { return in_array($val, array('true', 'false', 'stash')); },
|
||||||
|
function ($val) { return $val; }
|
||||||
|
),
|
||||||
);
|
);
|
||||||
$multiConfigValues = array(
|
$multiConfigValues = array(
|
||||||
'github-protocols' => array(
|
'github-protocols' => array(
|
||||||
|
|
|
@ -33,6 +33,7 @@ class Config
|
||||||
'cache-ttl' => 15552000, // 6 months
|
'cache-ttl' => 15552000, // 6 months
|
||||||
'cache-files-ttl' => null, // fallback to cache-ttl
|
'cache-files-ttl' => null, // fallback to cache-ttl
|
||||||
'cache-files-maxsize' => '300MiB',
|
'cache-files-maxsize' => '300MiB',
|
||||||
|
'discard-changes' => 'false',
|
||||||
);
|
);
|
||||||
|
|
||||||
public static $defaultRepositories = array(
|
public static $defaultRepositories = array(
|
||||||
|
@ -174,6 +175,15 @@ class Config
|
||||||
case 'home':
|
case 'home':
|
||||||
return rtrim($this->process($this->config[$key]), '/\\');
|
return rtrim($this->process($this->config[$key]), '/\\');
|
||||||
|
|
||||||
|
case 'discard-changes':
|
||||||
|
if (!in_array($this->config[$key], array('true', 'false', 'stash'))) {
|
||||||
|
throw new \RuntimeException(
|
||||||
|
"Invalid value of 'discard-changes' from your config: {$this->config[$key]}"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->config[$key];
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (!isset($this->config[$key])) {
|
if (!isset($this->config[$key])) {
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -90,14 +90,29 @@ class GitDownloader extends VcsDownloader
|
||||||
*/
|
*/
|
||||||
protected function cleanChanges($path, $update)
|
protected function cleanChanges($path, $update)
|
||||||
{
|
{
|
||||||
if (!$this->io->isInteractive()) {
|
|
||||||
return parent::cleanChanges($path, $update);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$changes = $this->getLocalChanges($path)) {
|
if (!$changes = $this->getLocalChanges($path)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$discardChanges = $this->config->get('discard-changes');
|
||||||
|
if (!$this->io->isInteractive()) {
|
||||||
|
switch ($discardChanges) {
|
||||||
|
case 'true':
|
||||||
|
return $this->discardChanges($path);
|
||||||
|
|
||||||
|
case 'stash':
|
||||||
|
if (!$update) {
|
||||||
|
return parent::cleanChanges($path, $update);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->stashChanges($path);
|
||||||
|
|
||||||
|
case 'false':
|
||||||
|
default:
|
||||||
|
return parent::cleanChanges($path, $update);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$changes = array_map(function ($elem) {
|
$changes = array_map(function ($elem) {
|
||||||
return ' '.$elem;
|
return ' '.$elem;
|
||||||
}, preg_split('{\s*\r?\n\s*}', $changes));
|
}, preg_split('{\s*\r?\n\s*}', $changes));
|
||||||
|
@ -110,9 +125,7 @@ class GitDownloader extends VcsDownloader
|
||||||
while (true) {
|
while (true) {
|
||||||
switch ($this->io->ask(' <info>Discard changes [y,n,v,'.($update ? 's,' : '').'?]?</info> ', '?')) {
|
switch ($this->io->ask(' <info>Discard changes [y,n,v,'.($update ? 's,' : '').'?]?</info> ', '?')) {
|
||||||
case 'y':
|
case 'y':
|
||||||
if (0 !== $this->process->execute('git reset --hard', $output, $path)) {
|
$this->discardChanges($path);
|
||||||
throw new \RuntimeException("Could not reset changes\n\n:".$this->process->getErrorOutput());
|
|
||||||
}
|
|
||||||
break 2;
|
break 2;
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
|
@ -120,11 +133,7 @@ class GitDownloader extends VcsDownloader
|
||||||
goto help;
|
goto help;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (0 !== $this->process->execute('git stash', $output, $path)) {
|
$this->stashChanges($path);
|
||||||
throw new \RuntimeException("Could not stash changes\n\n:".$this->process->getErrorOutput());
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->hasStashedChanges = true;
|
|
||||||
break 2;
|
break 2;
|
||||||
|
|
||||||
case 'n':
|
case 'n':
|
||||||
|
@ -369,4 +378,28 @@ class GitDownloader extends VcsDownloader
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $path
|
||||||
|
* @throws \RuntimeException
|
||||||
|
*/
|
||||||
|
protected function discardChanges($path)
|
||||||
|
{
|
||||||
|
if (0 !== $this->process->execute('git reset --hard', $output, $path)) {
|
||||||
|
throw new \RuntimeException("Could not reset changes\n\n:".$this->process->getErrorOutput());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $path
|
||||||
|
* @throws \RuntimeException
|
||||||
|
*/
|
||||||
|
protected function stashChanges($path)
|
||||||
|
{
|
||||||
|
if (0 !== $this->process->execute('git stash', $output, $path)) {
|
||||||
|
throw new \RuntimeException("Could not stash changes\n\n:".$this->process->getErrorOutput());
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->hasStashedChanges = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,14 +88,23 @@ class SvnDownloader extends VcsDownloader
|
||||||
*/
|
*/
|
||||||
protected function cleanChanges($path, $update)
|
protected function cleanChanges($path, $update)
|
||||||
{
|
{
|
||||||
if (!$this->io->isInteractive()) {
|
|
||||||
return parent::cleanChanges($path, $update);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$changes = $this->getLocalChanges($path)) {
|
if (!$changes = $this->getLocalChanges($path)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$discardChanges = $this->config->get('discard-changes');
|
||||||
|
if (!$this->io->isInteractive()) {
|
||||||
|
switch ($discardChanges) {
|
||||||
|
case 'true':
|
||||||
|
return $this->discardChanges($path);
|
||||||
|
|
||||||
|
case 'false':
|
||||||
|
case 'stash':
|
||||||
|
default:
|
||||||
|
return parent::cleanChanges($path, $update);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$changes = array_map(function ($elem) {
|
$changes = array_map(function ($elem) {
|
||||||
return ' '.$elem;
|
return ' '.$elem;
|
||||||
}, preg_split('{\s*\r?\n\s*}', $changes));
|
}, preg_split('{\s*\r?\n\s*}', $changes));
|
||||||
|
@ -108,9 +117,7 @@ class SvnDownloader extends VcsDownloader
|
||||||
while (true) {
|
while (true) {
|
||||||
switch ($this->io->ask(' <info>Discard changes [y,n,v,?]?</info> ', '?')) {
|
switch ($this->io->ask(' <info>Discard changes [y,n,v,?]?</info> ', '?')) {
|
||||||
case 'y':
|
case 'y':
|
||||||
if (0 !== $this->process->execute('svn revert -R .', $output, $path)) {
|
$this->discardChanges($path);
|
||||||
throw new \RuntimeException("Could not reset changes\n\n:".$this->process->getErrorOutput());
|
|
||||||
}
|
|
||||||
break 2;
|
break 2;
|
||||||
|
|
||||||
case 'n':
|
case 'n':
|
||||||
|
@ -150,4 +157,11 @@ class SvnDownloader extends VcsDownloader
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function discardChanges($path)
|
||||||
|
{
|
||||||
|
if (0 !== $this->process->execute('svn revert -R .', $output, $path)) {
|
||||||
|
throw new \RuntimeException("Could not reset changes\n\n:".$this->process->getErrorOutput());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue