2011-08-06 22:32:06 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-03-13 04:11:37 +01:00
|
|
|
* Copyright (c) 2012, 2013 Thomas Tanghus <thomas@tanghus.net>
|
2012-02-14 01:47:18 +01:00
|
|
|
* 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 22:32:06 +02:00
|
|
|
*/
|
2012-04-17 19:31:29 +02:00
|
|
|
|
2013-03-13 04:11:37 +01:00
|
|
|
namespace OCA\Contacts;
|
2011-08-06 22:32:06 +02:00
|
|
|
|
|
|
|
// Check if we are a user
|
2013-03-13 04:11:37 +01:00
|
|
|
\OCP\User::checkLoggedIn();
|
|
|
|
\OCP\App::checkAppEnabled('contacts');
|
2012-02-16 19:16:31 +01:00
|
|
|
|
2011-12-11 16:26:00 +01:00
|
|
|
// Get active address books. This creates a default one if none exists.
|
2013-03-13 04:11:37 +01:00
|
|
|
//$ids = OCA\Contacts\Addressbook::activeIds(OCP\USER::getUser());
|
2011-08-06 23:29:25 +02:00
|
|
|
|
2011-08-06 22:32:06 +02:00
|
|
|
// Load the files we need
|
2013-03-13 04:11:37 +01:00
|
|
|
\OCP\App::setActiveNavigationEntry('contacts_index');
|
2011-08-06 22:32:06 +02:00
|
|
|
|
2013-03-13 04:11:37 +01:00
|
|
|
$impp_types = Utils\Properties::getTypesForProperty('IMPP');
|
|
|
|
$adr_types = Utils\Properties::getTypesForProperty('ADR');
|
|
|
|
$phone_types = Utils\Properties::getTypesForProperty('TEL');
|
|
|
|
$email_types = Utils\Properties::getTypesForProperty('EMAIL');
|
|
|
|
$ims = Utils\Properties::getIMOptions();
|
2012-08-22 18:50:50 +02:00
|
|
|
$im_protocols = array();
|
|
|
|
foreach($ims as $name => $values) {
|
|
|
|
$im_protocols[$name] = $values['displayname'];
|
|
|
|
}
|
2011-11-17 23:54:14 +01:00
|
|
|
|
2013-03-13 04:11:37 +01: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-14 01:47:18 +01:00
|
|
|
$maxUploadFilesize = min($upload_max_filesize, $post_max_size);
|
|
|
|
|
2012-10-10 13:18:05 +02:00
|
|
|
$freeSpace=\OC\Files\Filesystem::free_space('/');
|
2012-07-20 17:09:03 +02:00
|
|
|
$freeSpace=max($freeSpace, 0);
|
|
|
|
$maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
|
|
|
|
|
2013-03-13 04:11:37 +01:00
|
|
|
\OCP\Util::addscript('', 'multiselect');
|
|
|
|
\OCP\Util::addscript('', 'jquery.multiselect');
|
|
|
|
\OCP\Util::addscript('', 'oc-vcategories');
|
|
|
|
\OCP\Util::addscript('contacts', 'modernizr.custom');
|
|
|
|
\OCP\Util::addscript('contacts', 'app');
|
|
|
|
\OCP\Util::addscript('contacts', 'contacts');
|
|
|
|
\OCP\Util::addscript('contacts', 'groups');
|
|
|
|
\OCP\Util::addscript('contacts', 'expanding');
|
|
|
|
\OCP\Util::addscript('contacts', 'jquery.combobox');
|
|
|
|
\OCP\Util::addscript('files', 'jquery.fileupload');
|
|
|
|
\OCP\Util::addscript('contacts', 'jquery.Jcrop');
|
|
|
|
\OCP\Util::addStyle('3rdparty/fontawesome', 'font-awesome');
|
|
|
|
\OCP\Util::addStyle('contacts', 'font-awesome');
|
|
|
|
\OCP\Util::addStyle('', 'multiselect');
|
|
|
|
\OCP\Util::addStyle('', 'jquery.multiselect');
|
|
|
|
\OCP\Util::addStyle('contacts', 'jquery.combobox');
|
|
|
|
\OCP\Util::addStyle('contacts', 'jquery.Jcrop');
|
|
|
|
\OCP\Util::addStyle('contacts', 'contacts');
|
2012-02-14 01:47:18 +01:00
|
|
|
|
2013-03-13 04:11:37 +01:00
|
|
|
$tmpl = new \OCP\Template( "contacts", "contacts", "user" );
|
2013-02-28 19:14:53 +01:00
|
|
|
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
|
2012-08-21 06:22:33 +02:00
|
|
|
$tmpl->assign('uploadMaxHumanFilesize',
|
2013-03-13 04:11:37 +01:00
|
|
|
\OCP\Util::humanFileSize($maxUploadFilesize), false);
|
|
|
|
//$tmpl->assign('addressbooks', OCA\Contacts\Addressbook::all(OCP\USER::getUser()));
|
2013-02-28 19:14:53 +01:00
|
|
|
$tmpl->assign('phone_types', $phone_types);
|
|
|
|
$tmpl->assign('email_types', $email_types);
|
|
|
|
$tmpl->assign('adr_types', $adr_types);
|
|
|
|
$tmpl->assign('impp_types', $impp_types);
|
|
|
|
$tmpl->assign('im_protocols', $im_protocols);
|
2012-10-10 13:18:05 +02:00
|
|
|
$tmpl->printPage();
|