Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
6fcd1af4
Commit
6fcd1af4
authored
11 years ago
by
Vincent Petry
Browse files
Options
Downloads
Patches
Plain Diff
Add support for repair step classes
This also makes it possible to unit test each repair step class individually
parent
ab7cff6d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/command/maintenance/repair.php
+13
-0
13 additions, 0 deletions
core/command/maintenance/repair.php
lib/private/repair.php
+43
-3
43 additions, 3 deletions
lib/private/repair.php
with
56 additions
and
3 deletions
core/command/maintenance/repair.php
+
13
−
0
View file @
6fcd1af4
...
...
@@ -33,9 +33,22 @@ class Repair extends Command {
}
protected
function
execute
(
InputInterface
$input
,
OutputInterface
$output
)
{
\OC_DB
::
enableCaching
(
false
);
$maintenanceMode
=
\OC_Config
::
getValue
(
'maintenance'
,
false
);
\OC_Config
::
setValue
(
'maintenance'
,
true
);
$this
->
repair
->
listen
(
'\OC\Repair'
,
'step'
,
function
(
$description
)
use
(
$output
)
{
$output
->
writeln
(
' - '
.
$description
);
});
$this
->
repair
->
listen
(
'\OC\Repair'
,
'info'
,
function
(
$description
)
use
(
$output
)
{
$output
->
writeln
(
' - '
.
$description
);
});
$this
->
repair
->
listen
(
'\OC\Repair'
,
'error'
,
function
(
$description
)
use
(
$output
)
{
$output
->
writeln
(
' - ERROR: '
.
$description
);
});
$this
->
repair
->
run
();
\OC_Config
::
setValue
(
'maintenance'
,
$maintenanceMode
);
}
}
This diff is collapsed.
Click to expand it.
lib/private/repair.php
+
43
−
3
View file @
6fcd1af4
...
...
@@ -11,11 +11,51 @@ namespace OC;
use
OC\Hooks\BasicEmitter
;
class
Repair
extends
BasicEmitter
{
private
$stepClasses
;
/**
* run a series of repair steps for common problems
* progress can be reported by emitting \OC\Repair::step events
* Creates a new repair step runner
*
* @param array $stepClasses optional list of step classes
*/
public
function
__construct
(
$stepClasses
=
array
())
{
$this
->
stepClasses
=
$stepClasses
;
}
/**
* Run a series of repair steps for common problems
*/
public
function
run
()
{
$this
->
emit
(
'\OC\Repair'
,
'step'
,
array
(
'No repair steps configured at the moment'
));
$steps
=
array
();
// instantiate all classes, just to make
// sure they all exist before starting
foreach
(
$this
->
stepClasses
as
$className
)
{
$steps
[]
=
new
$className
();
}
$self
=
$this
;
// run each repair step
foreach
(
$steps
as
$step
)
{
$this
->
emit
(
'\OC\Repair'
,
'step'
,
array
(
$step
->
getName
()));
$step
->
listen
(
'\OC\Repair'
,
'error'
,
function
(
$description
)
use
(
$self
)
{
$self
->
emit
(
'\OC\Repair'
,
'error'
,
array
(
$description
));
});
$step
->
listen
(
'\OC\Repair'
,
'info'
,
function
(
$description
)
use
(
$self
)
{
$self
->
emit
(
'\OC\Repair'
,
'info'
,
array
(
$description
));
});
$step
->
run
();
}
}
/**
* Add repair step class
*
* @param string $className name of a repair step class
*/
public
function
addStep
(
$className
)
{
$this
->
stepClasses
[]
=
$className
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment