Skip to content
Snippets Groups Projects
Commit abd3d5c6 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #17982 from owncloud/appframework-sanitize-name

Sanitize class names before registerService/query
parents 33727131 182bc17a
No related branches found
No related tags found
No related merge requests found
......@@ -99,6 +99,7 @@ class SimpleContainer extends Container implements IContainer {
* @throws QueryException if the query could not be resolved
*/
public function query($name) {
$name = $this->sanitizeName($name);
if ($this->offsetExists($name)) {
return $this->offsetGet($name);
} else {
......@@ -128,6 +129,7 @@ class SimpleContainer extends Container implements IContainer {
* @param bool $shared
*/
public function registerService($name, Closure $closure, $shared = true) {
$name = $this->sanitizeName($name);
if (isset($this[$name])) {
unset($this[$name]);
}
......@@ -151,4 +153,12 @@ class SimpleContainer extends Container implements IContainer {
}, false);
}
/*
* @param string $name
* @return string
*/
protected function sanitizeName($name) {
return ltrim($name, '\\');
}
}
......@@ -170,6 +170,25 @@ class SimpleContainerTest extends \Test\TestCase {
$this->container->query('test'), $this->container->query('test1'));
}
public function sanitizeNameProvider() {
return [
['ABC\\Foo', 'ABC\\Foo'],
['\\ABC\\Foo', '\\ABC\\Foo'],
['\\ABC\\Foo', 'ABC\\Foo'],
['ABC\\Foo', '\\ABC\\Foo'],
];
}
/**
* @dataProvider sanitizeNameProvider
*/
public function testSanitizeName($register, $query) {
$this->container->registerService($register, function() {
return 'abc';
});
$this->assertEquals('abc', $this->container->query($query));
}
/**
* @expectedException \OCP\AppFramework\QueryException
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment