2014-03-10 17:04:58 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2014-03-10 17:40:05 +04:00
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
2014-03-10 17:04:58 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Route;
|
|
|
|
|
|
|
|
interface IRouter {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the files to load the routes from
|
|
|
|
*
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
public function getRoutingFiles();
|
|
|
|
|
2014-04-15 20:00:38 +04:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-03-10 17:04:58 +04:00
|
|
|
public function getCacheKey();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* loads the api routes
|
2014-04-15 20:00:38 +04:00
|
|
|
* @return void
|
2014-03-10 17:04:58 +04:00
|
|
|
*/
|
2014-03-24 18:41:46 +04:00
|
|
|
public function loadRoutes($app = null);
|
2014-03-10 17:04:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the collection to use for adding routes
|
|
|
|
*
|
|
|
|
* @param string $name Name of the collection to use.
|
2014-04-15 20:00:38 +04:00
|
|
|
* @return void
|
2014-03-10 17:04:58 +04:00
|
|
|
*/
|
|
|
|
public function useCollection($name);
|
|
|
|
|
2014-07-01 18:45:00 +04:00
|
|
|
/**
|
|
|
|
* returns the current collection name in use for adding routes
|
|
|
|
*
|
|
|
|
* @return string the collection name
|
|
|
|
*/
|
|
|
|
public function getCurrentCollection();
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/**
|
|
|
|
* Create a \OCP\Route\IRoute.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the route to create.
|
|
|
|
* @param string $pattern The pattern to match
|
|
|
|
* @param array $defaults An array of default parameter values
|
|
|
|
* @param array $requirements An array of requirements for parameters (regexes)
|
|
|
|
* @return \OCP\Route\IRoute
|
|
|
|
*/
|
|
|
|
public function create($name, $pattern, array $defaults = array(), array $requirements = array());
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the route matching $url.
|
|
|
|
*
|
|
|
|
* @param string $url The url to find
|
|
|
|
* @throws \Exception
|
2014-04-15 20:00:38 +04:00
|
|
|
* @return void
|
2014-03-10 17:04:58 +04:00
|
|
|
*/
|
|
|
|
public function match($url);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the url generator
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function getGenerator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate url based on $name and $parameters
|
|
|
|
*
|
|
|
|
* @param string $name Name of the route to use.
|
|
|
|
* @param array $parameters Parameters for the route
|
|
|
|
* @param bool $absolute
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function generate($name, $parameters = array(), $absolute = false);
|
|
|
|
|
|
|
|
}
|