1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00
OwncloudContactsOfficial/lib/dispatcher.php

73 lines
2.5 KiB
PHP
Raw Normal View History

2013-09-17 18:46:59 +02:00
<?php
/**
* Copyright (c) 2013 Thomas Tanghus (thomas@tanghus.net)
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCA\Contacts;
use OCP\AppFramework\App as MainApp,
OCP\AppFramework\IAppContainer,
OCA\Contacts\App,
OCA\Contacts\Middleware\Http as HttpMiddleware,
2013-10-17 02:10:34 +02:00
OCA\Contacts\Controller\PageController,
2013-09-17 18:46:59 +02:00
OCA\Contacts\Controller\AddressBookController,
OCA\Contacts\Controller\GroupController,
OCA\Contacts\Controller\ContactController,
OCA\Contacts\Controller\ContactPhotoController,
OCA\Contacts\Controller\SettingsController,
2013-09-24 13:39:45 +02:00
OCA\Contacts\Controller\ImportController,
OCA\Contacts\Controller\ExportController;
2013-09-17 18:46:59 +02:00
/**
* This class manages our app actions
2013-10-18 15:29:16 +02:00
*
* TODO: Merge with App
2013-09-17 18:46:59 +02:00
*/
class Dispatcher extends MainApp {
/**
* @var App
*/
protected $app;
public function __construct($params) {
2013-10-18 15:29:16 +02:00
parent::__construct('contacts', $params);
2013-09-17 18:46:59 +02:00
$this->container = $this->getContainer();
$this->container->registerMiddleware(new HttpMiddleware($this->container));
2013-09-24 13:39:45 +02:00
$this->app = new App($this->container->query('API')->getUserId());
2013-09-17 18:46:59 +02:00
$this->registerServices();
}
public function registerServices() {
$app = $this->app;
$this->container->registerService('PageController', function(IAppContainer $container) use($app) {
return new PageController($container, $app);
2013-10-17 02:10:34 +02:00
});
$this->container->registerService('AddressBookController', function(IAppContainer $container) use($app) {
return new AddressBookController($container, $app);
2013-09-17 18:46:59 +02:00
});
$this->container->registerService('GroupController', function(IAppContainer $container) use($app) {
return new GroupController($container, $app);
2013-09-17 18:46:59 +02:00
});
$this->container->registerService('ContactController', function(IAppContainer $container) use($app) {
return new ContactController($container, $app);
2013-09-17 18:46:59 +02:00
});
$this->container->registerService('ContactPhotoController', function(IAppContainer $container) use($app) {
return new ContactPhotoController($container, $app);
2013-09-17 18:46:59 +02:00
});
$this->container->registerService('SettingsController', function(IAppContainer $container) use($app) {
return new SettingsController($container, $app);
2013-09-17 18:46:59 +02:00
});
$this->container->registerService('ImportController', function(IAppContainer $container) use($app) {
return new ImportController($container, $app);
2013-09-24 13:39:45 +02:00
});
$this->container->registerService('ExportController', function(IAppContainer $container) use($app) {
return new ExportController($container, $app);
2013-09-17 18:46:59 +02:00
});
}
}