mirror of
https://github.com/owncloud/bookmarks.git
synced 2025-01-21 17:52:10 +01:00
83 lines
2.1 KiB
PHP
83 lines
2.1 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* ownCloud - bookmarks
|
||
|
*
|
||
|
* This file is licensed under the Affero General Public License version 3 or
|
||
|
* later. See the COPYING file.
|
||
|
* @author Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
||
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
||
|
* @author Stefan Klemm <mail@stefan-klemm.de>
|
||
|
* @copyright (c) 2011, Marvin Thomas Rabe
|
||
|
* @copyright (c) 2011, Arthur Schiwon
|
||
|
* @copyright (c) 2014, Stefan Klemm
|
||
|
*/
|
||
|
|
||
|
namespace OCA\Bookmarks\AppInfo;
|
||
|
|
||
|
use \OCP\AppFramework\App;
|
||
|
use \OCA\Bookmarks\Controller\WebViewController;
|
||
|
use OCA\Bookmarks\Controller\Rest\TagsController;
|
||
|
use OCA\Bookmarks\Controller\Rest\BookmarkController;
|
||
|
use OCA\Bookmarks\Controller\Rest\PublicController;
|
||
|
|
||
|
class Application extends App {
|
||
|
|
||
|
public function __construct(array $urlParams = array()) {
|
||
|
parent::__construct('bookmarks', $urlParams);
|
||
|
|
||
|
$container = $this->getContainer();
|
||
|
|
||
|
/**
|
||
|
* Controllers
|
||
|
* @param OC\AppFramework\Utility\SimpleContainer $c The Container instance
|
||
|
* that handles the request
|
||
|
*/
|
||
|
$container->registerService('WebViewController', function($c) {
|
||
|
return new WebViewController(
|
||
|
$c->query('AppName'),
|
||
|
$c->query('Request'),
|
||
|
$c->query('UserId'),
|
||
|
$c->query('ServerContainer')->getURLGenerator(),
|
||
|
$c->query('ServerContainer')->getDb()
|
||
|
);
|
||
|
});
|
||
|
|
||
|
$container->registerService('BookmarkController', function($c) {
|
||
|
return new BookmarkController(
|
||
|
$c->query('AppName'),
|
||
|
$c->query('Request'),
|
||
|
$c->query('UserId'),
|
||
|
$c->query('ServerContainer')->getDb()
|
||
|
);
|
||
|
});
|
||
|
|
||
|
$container->registerService('TagsController', function($c) {
|
||
|
return new TagsController(
|
||
|
$c->query('AppName'),
|
||
|
$c->query('Request'),
|
||
|
$c->query('UserId'),
|
||
|
$c->query('ServerContainer')->getDb()
|
||
|
);
|
||
|
});
|
||
|
|
||
|
$container->registerService('PublicController', function($c) {
|
||
|
return new PublicController(
|
||
|
$c->query('AppName'),
|
||
|
$c->query('Request'),
|
||
|
$c->query('ServerContainer')->getDb(),
|
||
|
$c->query('ServerContainer')->getUserManager()
|
||
|
);
|
||
|
});
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Core
|
||
|
*/
|
||
|
$container->registerService('UserId', function() {
|
||
|
return \OCP\User::getUser();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|