2011-08-06 16:32:06 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2012-02-13 19:47:18 -05:00
|
|
|
* Copyright (c) 2012 Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
|
* Copyright (c) 2011 Jakob Sack mail@jakobsack.de
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
2011-08-06 16:32:06 -04:00
|
|
|
*/
|
2012-04-17 13:31:29 -04:00
|
|
|
|
2011-08-06 16:32:06 -04:00
|
|
|
|
|
|
|
|
// Check if we are a user
|
2012-05-01 16:59:38 -04:00
|
|
|
OCP\User::checkLoggedIn();
|
2012-05-02 13:08:37 -04:00
|
|
|
OCP\App::checkAppEnabled('contacts');
|
2012-02-16 13:16:31 -05:00
|
|
|
|
2011-12-11 10:26:00 -05:00
|
|
|
// Get active address books. This creates a default one if none exists.
|
2012-05-01 12:50:31 -04:00
|
|
|
$ids = OC_Contacts_Addressbook::activeIds(OCP\USER::getUser());
|
2012-07-20 11:09:03 -04:00
|
|
|
$has_contacts = (count(OC_Contacts_VCard::all($ids, 0, 1)) > 0
|
|
|
|
|
? true
|
|
|
|
|
: false); // just to check if there are any contacts.
|
2012-07-11 20:28:29 -04:00
|
|
|
if($has_contacts === false) {
|
2012-07-20 11:09:03 -04:00
|
|
|
OCP\Util::writeLog('contacts',
|
|
|
|
|
'index.html: No contacts found.',
|
|
|
|
|
OCP\Util::DEBUG);
|
2012-06-26 11:54:00 -04:00
|
|
|
}
|
2011-08-06 17:29:25 -04:00
|
|
|
|
2011-08-06 16:32:06 -04:00
|
|
|
// Load the files we need
|
2012-07-20 11:09:03 -04:00
|
|
|
OCP\App::setActiveNavigationEntry('contacts_index');
|
2011-08-06 16:32:06 -04:00
|
|
|
|
|
|
|
|
// Load a specific user?
|
|
|
|
|
$id = isset( $_GET['id'] ) ? $_GET['id'] : null;
|
2011-12-18 17:04:45 -05:00
|
|
|
$property_types = OC_Contacts_App::getAddPropertyOptions();
|
2011-12-06 16:31:04 -05:00
|
|
|
$phone_types = OC_Contacts_App::getTypesOfProperty('TEL');
|
2012-04-29 16:10:16 -04:00
|
|
|
$email_types = OC_Contacts_App::getTypesOfProperty('EMAIL');
|
2012-03-29 12:54:06 -04:00
|
|
|
$categories = OC_Contacts_App::getCategories();
|
2011-11-17 17:54:14 -05:00
|
|
|
|
2012-05-01 18:20:45 -04:00
|
|
|
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
|
|
|
|
|
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
|
2012-02-13 19:47:18 -05:00
|
|
|
$maxUploadFilesize = min($upload_max_filesize, $post_max_size);
|
|
|
|
|
|
|
|
|
|
$freeSpace=OC_Filesystem::free_space('/');
|
2012-07-20 11:09:03 -04:00
|
|
|
$freeSpace=max($freeSpace, 0);
|
|
|
|
|
$maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
|
|
|
|
|
|
|
|
|
|
OCP\Util::addscript('', 'jquery.multiselect');
|
|
|
|
|
OCP\Util::addscript('', 'oc-vcategories');
|
|
|
|
|
OCP\Util::addscript('contacts', 'contacts');
|
|
|
|
|
OCP\Util::addscript('contacts', 'expanding');
|
|
|
|
|
OCP\Util::addscript('contacts', 'jquery.combobox');
|
2012-07-14 22:15:57 -04:00
|
|
|
OCP\Util::addscript('files', 'jquery.fileupload');
|
2012-07-20 11:09:03 -04:00
|
|
|
OCP\Util::addscript('contacts', 'jquery.inview');
|
|
|
|
|
OCP\Util::addscript('contacts', 'jquery.Jcrop');
|
|
|
|
|
OCP\Util::addscript('contacts', 'jquery.multi-autocomplete');
|
|
|
|
|
OCP\Util::addStyle('', 'jquery.multiselect');
|
|
|
|
|
OCP\Util::addStyle('contacts', 'jquery.combobox');
|
|
|
|
|
OCP\Util::addStyle('contacts', 'jquery.Jcrop');
|
|
|
|
|
OCP\Util::addStyle('contacts', 'contacts');
|
2012-02-13 19:47:18 -05:00
|
|
|
|
2012-05-06 17:00:36 -04:00
|
|
|
$tmpl = new OCP\Template( "contacts", "index", "user" );
|
2012-07-09 13:34:10 -04:00
|
|
|
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize, false);
|
2012-07-20 11:09:03 -04:00
|
|
|
$tmpl->assign('uploadMaxHumanFilesize',
|
|
|
|
|
OCP\Util::humanFileSize($maxUploadFilesize), false);
|
2012-07-09 13:34:10 -04:00
|
|
|
$tmpl->assign('property_types', $property_types, false);
|
|
|
|
|
$tmpl->assign('phone_types', $phone_types, false);
|
|
|
|
|
$tmpl->assign('email_types', $email_types, false);
|
|
|
|
|
$tmpl->assign('categories', $categories, false);
|
|
|
|
|
$tmpl->assign('has_contacts', $has_contacts, false);
|
2012-07-20 11:09:03 -04:00
|
|
|
$tmpl->assign('id', $id, false);
|
2011-08-06 16:32:06 -04:00
|
|
|
$tmpl->printPage();
|