1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00
OwncloudContactsOfficial/appinfo/routes.php

421 lines
12 KiB
PHP
Raw Normal View History

2013-03-10 12:40:59 +01:00
<?php
/**
* @author Thomas Tanghus
2014-01-26 00:40:22 +01:00
* @copyright 2013-2014 Thomas Tanghus (thomas@tanghus.net)
2013-03-10 12:40:59 +01:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCA\Contacts;
2013-09-17 18:46:59 +02:00
use OCA\Contacts\Dispatcher;
2013-03-10 12:40:59 +01:00
//define the routes
$this->create('contacts_index', '/')
2013-10-17 02:10:34 +02:00
->get()
->action(
function($params){
\OC::$session->close();
2013-10-17 02:10:34 +02:00
$dispatcher = new Dispatcher($params);
$dispatcher->dispatch('PageController', 'index');
}
);
2013-03-10 12:40:59 +01:00
$this->create('contacts_jsconfig', 'ajax/config.js')
->actionInclude('contacts/js/config.php');
2013-04-25 04:29:59 +02:00
$this->create('contacts_address_books_for_user', 'addressbooks/')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'userAddressBooks');
}
2013-04-25 04:29:59 +02:00
);
2013-03-10 12:40:59 +01:00
2013-05-24 20:35:23 +02:00
$this->create('contacts_address_book_add', 'addressbook/{backend}/add')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'addAddressBook');
2013-05-24 20:35:23 +02:00
}
)
->requirements(array('backend'));
2013-05-24 20:35:23 +02:00
$this->create('contacts_address_book', 'addressbook/{backend}/{addressBookId}')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'getAddressBook');
}
)
->requirements(array('backend', 'addressBookId'));
$this->create('contacts_address_book_headers', 'addressbook/{backend}/{addressBookId}')
->method('HEAD')
->action(
function($params) {
\OC::$session->close();
$dispatcher = new Dispatcher($params);
$dispatcher->dispatch('AddressBookController', 'getAddressBook');
}
)
->requirements(array('backend', 'addressBookId'));
$this->create('contacts_address_book_options', 'addressbook/{backend}/{addressBookId}')
->method('OPTIONS')
->action(
function($params) {
\OC::$session->close();
$dispatcher = new Dispatcher($params);
$dispatcher->dispatch('AddressBookController', 'getAddressBook');
}
)
->requirements(array('backend', 'addressBookId'));
$this->create('contacts_address_book_update', 'addressbook/{backend}/{addressBookId}')
2013-05-07 19:16:06 +02:00
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'updateAddressBook');
2013-05-07 19:16:06 +02:00
}
)
->requirements(array('backend', 'addressBookId'));
2013-05-07 19:16:06 +02:00
$this->create('contacts_address_book_delete', 'addressbook/{backend}/{addressBookId}')
->delete()
->action(
function($params) {
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
\OC::$session->close();
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'deleteAddressBook');
}
)
->requirements(array('backend', 'addressBookId'));
$this->create('contacts_address_book_activate', 'addressbook/{backend}/{addressBookId}/activate')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'activateAddressBook');
}
)
->requirements(array('backend', 'addressBookId'));
$this->create('contacts_address_book_add_contact', 'addressbook/{backend}/{addressBookId}/contact/add')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'addChild');
}
)
->requirements(array('backend', 'addressBookId'));
$this->create('contacts_address_book_delete_contact', 'addressbook/{backend}/{addressBookId}/contact/{contactId}')
->delete()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'deleteChild');
}
)
->requirements(array('backend', 'addressBookId', 'contactId'));
$this->create('contacts_address_book_delete_contacts', 'addressbook/{backend}/{addressBookId}/deleteContacts')
2013-09-03 14:08:12 +02:00
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'deleteChildren');
2013-09-03 14:08:12 +02:00
}
)
->requirements(array('backend', 'addressBookId', 'contactId'));
2013-09-03 14:08:12 +02:00
$this->create('contacts_address_book_move_contact', 'addressbook/{backend}/{addressBookId}/contact/{contactId}')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('AddressBookController', 'moveChild');
}
)
->requirements(array('backend', 'addressBookId', 'contactId'));
2013-09-20 16:24:29 +02:00
$this->create('contacts_import_upload', 'addressbook/{backend}/{addressBookId}/{importType}/import/upload')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ImportController', 'upload');
}
)
2013-09-20 16:24:29 +02:00
->requirements(array('backend', 'addressBookId', 'importType'));
2013-09-20 16:24:29 +02:00
$this->create('contacts_import_prepare', 'addressbook/{backend}/{addressBookId}/{importType}/import/prepare')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ImportController', 'prepare');
}
)
2013-09-20 16:24:29 +02:00
->requirements(array('backend', 'addressBookId', 'importType'));
2013-09-20 16:24:29 +02:00
$this->create('contacts_import_start', 'addressbook/{backend}/{addressBookId}/{importType}/import/start')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ImportController', 'start');
}
)
2013-09-20 16:24:29 +02:00
->requirements(array('backend', 'addressBookId', 'importType'));
2013-09-20 16:24:29 +02:00
$this->create('contacts_import_status', 'addressbook/{backend}/{addressBookId}/{importType}/import/status')
2013-06-25 21:44:23 +02:00
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ImportController', 'status');
}
)
2013-09-20 16:24:29 +02:00
->requirements(array('backend', 'addressBookId', 'importType'));
$this->create('contacts_address_book_export', 'addressbook/{backend}/{addressBookId}/export')
2013-09-24 13:39:45 +02:00
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-24 13:39:45 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ExportController', 'exportAddressBook');
2013-09-24 13:39:45 +02:00
}
)
->requirements(array('backend', 'addressBookId'));
2013-09-24 13:39:45 +02:00
$this->create('contacts_contact_export', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/export')
2013-09-24 13:39:45 +02:00
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-24 13:39:45 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ExportController', 'exportContact');
2013-09-24 13:39:45 +02:00
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
2013-09-24 13:39:45 +02:00
$this->create('contacts_export_selected', 'exportSelected')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-24 13:39:45 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ExportController', 'exportSelected');
2013-09-24 13:39:45 +02:00
}
);
$this->create('contacts_contact_photo', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/photo')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactPhotoController', 'getPhoto');
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
$this->create('contacts_upload_contact_photo', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/photo')
->put()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactPhotoController', 'uploadPhoto');
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
$this->create('contacts_cache_contact_photo', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/photo/cacheCurrent')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactPhotoController', 'cacheCurrentPhoto');
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
$this->create('contacts_cache_fs_photo', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/photo/cacheFS')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactPhotoController', 'cacheFileSystemPhoto');
}
)
2013-10-22 17:10:23 +02:00
->requirements(array('backend', 'addressBookId', 'contactId'));
$this->create('contacts_tmp_contact_photo', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/photo/{key}/tmp')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactPhotoController', 'getTempPhoto');
}
)
->requirements(array('backend', 'addressbook', 'contactId', 'key'));
$this->create('contacts_crop_contact_photo', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/photo/{key}/crop')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactPhotoController', 'cropPhoto');
}
)
->requirements(array('backend', 'addressbook', 'contactId', 'key'));
// Save or delete a single property.
$this->create('contacts_contact_patch', 'addressbook/{backend}/{addressBookId}/contact/{contactId}')
->patch()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactController', 'patch');
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
2013-04-03 16:43:18 +02:00
$this->create('contacts_contact_get', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/')
2013-05-09 05:58:28 +02:00
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactController', 'getContact');
2013-05-09 05:58:28 +02:00
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
2013-05-09 05:58:28 +02:00
2013-04-03 16:43:18 +02:00
// Save all properties. Used for merging contacts.
$this->create('contacts_contact_save_all', 'addressbook/{backend}/{addressBookId}/contact/{contactId}/save')
2013-04-03 16:43:18 +02:00
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('ContactController', 'saveContact');
2013-04-03 16:43:18 +02:00
}
)
->requirements(array('backend', 'addressbook', 'contactId'));
2013-04-25 04:29:59 +02:00
$this->create('contacts_categories_list', 'groups/')
->get()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('GroupController', 'getGroups');
}
2013-04-25 04:29:59 +02:00
);
2013-04-25 04:29:59 +02:00
$this->create('contacts_categories_add', 'groups/add')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('GroupController', 'addGroup');
}
2013-04-25 04:29:59 +02:00
);
2013-04-25 04:29:59 +02:00
$this->create('contacts_categories_delete', 'groups/delete')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('GroupController', 'deleteGroup');
}
2013-04-25 04:29:59 +02:00
);
2013-05-21 23:39:50 +02:00
$this->create('contacts_categories_rename', 'groups/rename')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('GroupController', 'renameGroup');
2013-05-21 23:39:50 +02:00
}
);
$this->create('contacts_categories_addto', 'groups/addto/{categoryId}')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('GroupController', 'addToGroup');
}
2013-04-25 04:29:59 +02:00
);
$this->create('contacts_categories_removefrom', 'groups/removefrom/{categoryId}')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-17 02:10:34 +02:00
$dispatcher->dispatch('GroupController', 'removeFromGroup');
}
)
->requirements(array('categoryId'));
2013-04-25 04:29:59 +02:00
$this->create('contacts_setpreference', 'preference/set')
->post()
->action(
function($params) {
\OC::$session->close();
2013-09-17 18:46:59 +02:00
$dispatcher = new Dispatcher($params);
2013-10-01 19:13:28 +02:00
$dispatcher->dispatch('SettingsController', 'set');
}
2013-04-25 04:29:59 +02:00
);
$this->create('contacts_index_properties', 'indexproperties/{user}/')
->post()
->action(
function($params) {
\OC::$session->close();
2013-04-25 01:04:29 +02:00
// TODO: Add BackgroundJob for this.
2013-09-16 02:24:08 +02:00
\OCP\Util::emitHook('OCA\Contacts', 'indexProperties', array());
\OCP\Config::setUserValue($params['user'], 'contacts', 'contacts_properties_indexed', 'yes');
\OCP\JSON::success(array('isIndexed' => true));
}
)
2013-04-05 18:28:15 +02:00
->requirements(array('user'))
->defaults(array('user' => \OCP\User::getUser()));