1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
<?php
/**
* The Turba script to add a new entry into an address book.
*
* $Horde: turba/add.php,v 1.54.4.11 2006/09/17 06:11:51 chuck Exp $
*
* Copyright 2000-2006 Charles J. Hagenbuch <chuck@horde.org>
*
* See the enclosed file LICENSE for license information (ASL). If you did
* not receive this file, see http://www.horde.org/licenses/asl.php.
*/
@define('TURBA_BASE', dirname(__FILE__));
require_once TURBA_BASE . '/lib/base.php';
require_once TURBA_BASE . '/lib/Renderer.php';
require_once TURBA_BASE . '/lib/ObjectView.php';
require_once TURBA_BASE . '/lib/Object.php';
require_once 'Horde/Variables.php';
require_once 'Horde/Form.php';
require_once 'Horde/Form/Action.php';
/* Get some variables. */
$vars = Variables::getDefaultVariables();
$source = $vars->get('source');
$url = $vars->get('url');
/* Exit with an error message if no sources to add to. */
if (empty($addSources)) {
$notification->push(_("There are no writeable address books. None of the available address books are configured to allow you to add new entries to them. If you believe this is an error, please contact your system administrator."), 'horde.error');
$url = (!empty($url) ? Horde::url($url, true) : Horde::applicationUrl('index.php', true));
header('Location: ' . $url);
exit;
}
/* Set up the form. */
$form = new Horde_Form($vars, _("New Contact"));
$form->setButtons(_("Save"), _("Reset to Defaults"));
$form->addHidden('', 'url', 'text', false);
$form->addHidden('', 'key', 'text', false);
/* Check if a source selection box is required. */
if (count($addSources) > 1) {
/* Multiple sources, show a selection box. */
$options = array();
foreach ($addSources as $key => $config) {
$options[$key] = $config['title'];
}
$v = &$form->addVariable(_("Choose an address book"), 'source', 'enum', true, false, null, array($options, true));
$action = Horde_Form_Action::factory('submit');
$v->setAction($action);
$v->setOption('trackchange', true);
if (is_null($vars->get('formname')) &&
$vars->get($v->getVarName()) != $vars->get('__old_' . $v->getVarName())) {
$notification->push(sprintf(_("Selected address book \"%s\"."), $addSources[$source]['title']), 'horde.message');
}
$form->setButtons(_("Add"));
} else {
/* One source, no selection box but store the value in a hidden field. */
$form->addHidden('', 'source', 'text', true);
$source = key($addSources);
}
/* A source has been selected, connect and set up the fields. */
if ($source) {
$driver = &Turba_Driver::singleton($source);
if (is_a($driver, 'PEAR_Error')) {
$notification->push(sprintf(_("Failed to access the address book: %s"), $driver->getMessage()), 'horde.error');
} else {
/* Check permissions. */
$max_contacts = Turba::hasPermission($source . ':max_contacts', 'source');
if ($max_contacts !== true &&
$max_contacts <= $driver->countContacts()) {
$message = @htmlspecialchars(sprintf(_("You are not allowed to create more than %d contacts in \"%s\"."), $max_contacts, $cfgSources[$source]['title']), ENT_COMPAT, NLS::getCharset());
if (!empty($conf['hooks']['permsdenied'])) {
$message = Horde::callHook('_perms_hook_denied', array('turba:max_contacts'), 'horde', $message);
}
$notification->push($message, 'horde.error', array('content.raw'));
$url = (!empty($url) ? Horde::url($url, true) : Horde::applicationUrl('index.php', true));
header('Location: ' . $url);
exit;
}
$object = new Turba_Object($driver);
$view = new Turba_ObjectView($object);
/* Get the form and set up the variables. */
$view->setupForm($form);
$vars->set('source', $source);
}
}
/* Validate the form. */
if ($source && $form->validate($vars)) {
/* Form valid, save data. */
$form->getInfo($vars, $info);
$source = $info['source'];
foreach ($info['object'] as $info_key => $info_val) {
$object->setValue($info_key, $info_val);
}
$object = $object->attributes;
/* Get share information. */
if ($driver->usingShares) {
$object['__owner'] = $driver->share->get('uid');
}
/* Create Contact. */
$key = $driver->add($object);
if (!is_a($key, 'PEAR_Error')) {
$vars->set('key', $key);
$name = isset($object['name']) ? $object['name'] : _("Address book entry");
$notification->push(sprintf(_("%s added."), $name), 'horde.success');
if (empty($info['url'])) {
$uri = Horde::applicationUrl('display.php', true);
$uri = Util::addParameter($uri, array('source' => $info['source'], 'key' => $key), null, false);
} else {
$uri = $info['url'];
}
header('Location: ' . $uri);
exit;
}
Horde::logMessage($key, __FILE__, __LINE__, PEAR_LOG_ERR);
$notification->push(_("There was an error adding the new contact. Contact your system administrator for further help.") . $key->getMessage(), 'horde.error');
}
$title = _("New Contact");
require TURBA_TEMPLATES . '/common-header.inc';
require TURBA_TEMPLATES . '/menu.inc';
/* Render the form. */
$renderer = new Turba_Renderer();
$form->renderActive($renderer, $vars, 'add.php', 'post');
require $registry->get('templates', 'horde') . '/common-footer.inc';
|