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
|
<?php
/**
* $Horde: kronolith/calendars/remote_edit.php,v 1.1.2.3 2008/05/16 17:41:56 jan Exp $
*
* Copyright 2002-2008 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
*/
@define('KRONOLITH_BASE', dirname(dirname(__FILE__)));
require_once KRONOLITH_BASE . '/lib/base.php';
require_once KRONOLITH_BASE . '/lib/Forms/EditRemoteCalendar.php';
// Exit if this isn't an authenticated user or if the user can't
// subscribe to remote calendars (remote_cals is locked).
if (!Auth::getAuth() || $prefs->isLocked('remote_cals')) {
header('Location: ' . Horde::applicationUrl($prefs->getValue('defaultview') . '.php', true));
exit;
}
$vars = Variables::getDefaultVariables();
$url = $vars->get('url');
$remote_calendar = null;
$remote_calendars = unserialize($GLOBALS['prefs']->getValue('remote_cals'));
foreach ($remote_calendars as $key => $calendar) {
if ($calendar['url'] == $url) {
$remote_calendar = $calendar;
break;
}
}
if (is_null($remote_calendar)) {
$notification->push(_("The remote calendar was not found."), 'horde.error');
header('Location: ' . Horde::applicationUrl('calendars/', true));
exit;
}
$form = new Kronolith_EditRemoteCalendarForm($vars, $remote_calendar);
// Execute if the form is valid.
if ($form->validate($vars)) {
$result = $form->execute();
if (is_a($result, 'PEAR_Error')) {
$notification->push($result, 'horde.error');
} else {
$notification->push(sprintf(_("The calendar \"%s\" has been saved."), $vars->get('name')), 'horde.success');
}
header('Location: ' . Horde::applicationUrl('calendars/', true));
exit;
}
$key = Auth::getCredential('password');
$username = $calendar['user'];
$password = $calendar['password'];
if ($key) {
require_once 'Horde/Secret.php';
$username = Secret::read($key, base64_decode($username));
$password = Secret::read($key, base64_decode($password));
}
$vars->set('name', $calendar['name']);
$vars->set('url', $calendar['url']);
$vars->set('username', $username);
$vars->set('password', $password);
$title = $form->getTitle();
require KRONOLITH_TEMPLATES . '/common-header.inc';
require KRONOLITH_TEMPLATES . '/menu.inc';
echo $form->renderActive($form->getRenderer(), $vars, 'remote_edit.php', 'post');
require $registry->get('templates', 'horde') . '/common-footer.inc';
|