Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
f8b74cf0
Unverified
Commit
f8b74cf0
authored
6 years ago
by
Joas Schilling
Browse files
Options
Downloads
Patches
Plain Diff
Allow resources via OCS as well
Signed-off-by:
Joas Schilling
<
coding@schilljs.com
>
parent
f8275a7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/private/AppFramework/Routing/RouteConfig.php
+55
-1
55 additions, 1 deletion
lib/private/AppFramework/Routing/RouteConfig.php
tests/lib/AppFramework/Routing/RoutingTest.php
+85
-0
85 additions, 0 deletions
tests/lib/AppFramework/Routing/RoutingTest.php
with
140 additions
and
1 deletion
lib/private/AppFramework/Routing/RouteConfig.php
+
55
−
1
View file @
f8b74cf0
...
@@ -84,6 +84,9 @@ class RouteConfig {
...
@@ -84,6 +84,9 @@ class RouteConfig {
// parse ocs simple routes
// parse ocs simple routes
$this
->
processOCS
(
$this
->
routes
);
$this
->
processOCS
(
$this
->
routes
);
// parse ocs simple routes
$this
->
processOCSResources
(
$this
->
routes
);
$this
->
router
->
useCollection
(
$oldCollection
);
$this
->
router
->
useCollection
(
$oldCollection
);
}
}
...
@@ -190,7 +193,58 @@ class RouteConfig {
...
@@ -190,7 +193,58 @@ class RouteConfig {
* For a given name and url restful routes are created:
* For a given name and url restful routes are created:
* - index
* - index
* - show
* - show
* - new
* - create
* - update
* - destroy
*
* @param array $routes
*/
private
function
processOCSResources
(
$routes
)
{
// declaration of all restful actions
$actions
=
array
(
array
(
'name'
=>
'index'
,
'verb'
=>
'GET'
,
'on-collection'
=>
true
),
array
(
'name'
=>
'show'
,
'verb'
=>
'GET'
),
array
(
'name'
=>
'create'
,
'verb'
=>
'POST'
,
'on-collection'
=>
true
),
array
(
'name'
=>
'update'
,
'verb'
=>
'PUT'
),
array
(
'name'
=>
'destroy'
,
'verb'
=>
'DELETE'
),
);
$resources
=
$routes
[
'ocs-resources'
]
??
[];
foreach
(
$resources
as
$resource
=>
$config
)
{
$root
=
$config
[
'root'
]
??
'/apps/'
.
$this
->
appName
;
// the url parameter used as id to the resource
foreach
(
$actions
as
$action
)
{
$url
=
$root
.
$config
[
'url'
];
$method
=
$action
[
'name'
];
$verb
=
strtoupper
(
$action
[
'verb'
]
??
'GET'
);
$collectionAction
=
$action
[
'on-collection'
]
??
false
;
if
(
!
$collectionAction
)
{
$url
.
=
'/{id}'
;
}
if
(
isset
(
$action
[
'url-postfix'
]))
{
$url
.
=
'/'
.
$action
[
'url-postfix'
];
}
$controller
=
$resource
;
$controllerName
=
$this
->
buildControllerName
(
$controller
);
$actionName
=
$this
->
buildActionName
(
$method
);
$routeName
=
'ocs.'
.
$this
->
appName
.
'.'
.
strtolower
(
$resource
)
.
'.'
.
strtolower
(
$method
);
$this
->
router
->
create
(
$routeName
,
$url
)
->
method
(
$verb
)
->
action
(
new
RouteActionHandler
(
$this
->
container
,
$controllerName
,
$actionName
)
);
}
}
}
/**
* For a given name and url restful routes are created:
* - index
* - show
* - create
* - create
* - update
* - update
* - destroy
* - destroy
...
...
This diff is collapsed.
Click to expand it.
tests/lib/AppFramework/Routing/RoutingTest.php
+
85
−
0
View file @
f8b74cf0
...
@@ -6,6 +6,9 @@ use OC\AppFramework\DependencyInjection\DIContainer;
...
@@ -6,6 +6,9 @@ use OC\AppFramework\DependencyInjection\DIContainer;
use
OC\AppFramework\Routing\RouteActionHandler
;
use
OC\AppFramework\Routing\RouteActionHandler
;
use
OC\AppFramework\Routing\RouteConfig
;
use
OC\AppFramework\Routing\RouteConfig
;
use
OCP\ILogger
;
use
OCP\ILogger
;
use
OCP\Route\IRouter
;
use
PHPUnit\Framework\MockObject\MockObject
;
use
OC\Route\Router
;
class
RoutingTest
extends
\Test\TestCase
class
RoutingTest
extends
\Test\TestCase
{
{
...
@@ -179,6 +182,27 @@ class RoutingTest extends \Test\TestCase
...
@@ -179,6 +182,27 @@ class RoutingTest extends \Test\TestCase
$this
->
assertSimpleOCSRoute
(
$routes
,
'admin_folders.open_current'
,
'DELETE'
,
'/apps/app1/folders/{folderId}/open'
,
'AdminFoldersController'
,
'openCurrent'
);
$this
->
assertSimpleOCSRoute
(
$routes
,
'admin_folders.open_current'
,
'DELETE'
,
'/apps/app1/folders/{folderId}/open'
,
'AdminFoldersController'
,
'openCurrent'
);
}
}
public
function
testOCSResource
()
{
$routes
=
[
'ocs-resources'
=>
[
'account'
=>
[
'url'
=>
'/accounts'
]]];
$this
->
assertOCSResource
(
$routes
,
'account'
,
'/apps/app1/accounts'
,
'AccountController'
,
'id'
);
}
public
function
testOCSResourceWithUnderScoreName
()
{
$routes
=
[
'ocs-resources'
=>
[
'admin_accounts'
=>
[
'url'
=>
'/admin/accounts'
]]];
$this
->
assertOCSResource
(
$routes
,
'admin_accounts'
,
'/apps/app1/admin/accounts'
,
'AdminAccountsController'
,
'id'
);
}
public
function
testOCSResourceWithRoot
()
{
$routes
=
[
'ocs-resources'
=>
[
'admin_accounts'
=>
[
'url'
=>
'/admin/accounts'
,
'root'
=>
'/core/endpoint'
]]];
$this
->
assertOCSResource
(
$routes
,
'admin_accounts'
,
'/core/endpoint/admin/accounts'
,
'AdminAccountsController'
,
'id'
);
}
public
function
testResource
()
public
function
testResource
()
{
{
$routes
=
array
(
'resources'
=>
array
(
'account'
=>
array
(
'url'
=>
'/accounts'
)));
$routes
=
array
(
'resources'
=>
array
(
'account'
=>
array
(
'url'
=>
'/accounts'
)));
...
@@ -277,6 +301,67 @@ class RoutingTest extends \Test\TestCase
...
@@ -277,6 +301,67 @@ class RoutingTest extends \Test\TestCase
$config
->
register
();
$config
->
register
();
}
}
/**
* @param array $yaml
* @param string $resourceName
* @param string $url
* @param string $controllerName
* @param string $paramName
*/
private
function
assertOCSResource
(
$yaml
,
$resourceName
,
$url
,
$controllerName
,
$paramName
):
void
{
/** @var IRouter|MockObject $router */
$router
=
$this
->
getMockBuilder
(
Router
::
class
)
->
setMethods
([
'create'
])
->
setConstructorArgs
([
$this
->
getMockBuilder
(
ILogger
::
class
)
->
getMock
()])
->
getMock
();
// route mocks
$container
=
new
DIContainer
(
'app1'
);
$indexRoute
=
$this
->
mockRoute
(
$container
,
'GET'
,
$controllerName
,
'index'
);
$showRoute
=
$this
->
mockRoute
(
$container
,
'GET'
,
$controllerName
,
'show'
);
$createRoute
=
$this
->
mockRoute
(
$container
,
'POST'
,
$controllerName
,
'create'
);
$updateRoute
=
$this
->
mockRoute
(
$container
,
'PUT'
,
$controllerName
,
'update'
);
$destroyRoute
=
$this
->
mockRoute
(
$container
,
'DELETE'
,
$controllerName
,
'destroy'
);
$urlWithParam
=
$url
.
'/{'
.
$paramName
.
'}'
;
// we expect create to be called once:
$router
->
expects
(
$this
->
at
(
0
))
->
method
(
'create'
)
->
with
(
$this
->
equalTo
(
'ocs.app1.'
.
$resourceName
.
'.index'
),
$this
->
equalTo
(
$url
))
->
willReturn
(
$indexRoute
);
$router
->
expects
(
$this
->
at
(
1
))
->
method
(
'create'
)
->
with
(
$this
->
equalTo
(
'ocs.app1.'
.
$resourceName
.
'.show'
),
$this
->
equalTo
(
$urlWithParam
))
->
willReturn
(
$showRoute
);
$router
->
expects
(
$this
->
at
(
2
))
->
method
(
'create'
)
->
with
(
$this
->
equalTo
(
'ocs.app1.'
.
$resourceName
.
'.create'
),
$this
->
equalTo
(
$url
))
->
willReturn
(
$createRoute
);
$router
->
expects
(
$this
->
at
(
3
))
->
method
(
'create'
)
->
with
(
$this
->
equalTo
(
'ocs.app1.'
.
$resourceName
.
'.update'
),
$this
->
equalTo
(
$urlWithParam
))
->
willReturn
(
$updateRoute
);
$router
->
expects
(
$this
->
at
(
4
))
->
method
(
'create'
)
->
with
(
$this
->
equalTo
(
'ocs.app1.'
.
$resourceName
.
'.destroy'
),
$this
->
equalTo
(
$urlWithParam
))
->
willReturn
(
$destroyRoute
);
// load route configuration
$config
=
new
RouteConfig
(
$container
,
$router
,
$yaml
);
$config
->
register
();
}
/**
/**
* @param string $resourceName
* @param string $resourceName
* @param string $url
* @param string $url
...
...
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