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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
<?php
require_once 'Horde/Kolab.php';
/**
* Horde Nag driver for the Kolab IMAP server.
*
* $Horde: nag/lib/Driver/kolab.php,v 1.6.10.10 2006/05/05 16:01:23 jan Exp $
*
* Copyright 2004-2006 Horde Project (http://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 Stuart Binge <omicron@mighty.co.za>
* @package Nag
*/
class Nag_Driver_kolab extends Nag_Driver {
/**
* Our Kolab server connection.
*
* @var Kolab
*/
var $_kolab = null;
/**
* Constructs a new Kolab storage object.
*
* @param string $tasklist The tasklist to load.
* @param array $params A hash containing connection parameters.
*/
function Nag_Driver_kolab($tasklist, $params = array())
{
$this->_tasklist = $tasklist;
$this->_params = $params;
}
function _connect()
{
if (isset($this->_kolab)) {
return true;
}
$this->_kolab = new Kolab();
return $this->_kolab->open($this->_tasklist);
}
function _disconnect()
{
$this->_kolab->close();
$this->_kolab = null;
}
function _buildTask()
{
return array(
'tasklist_id' => $this->_tasklist,
'task_id' => $this->_kolab->getUID(),
'uid' => $this->_kolab->getUID(),
'name' => $this->_kolab->getStr('summary'),
'desc' => $this->_kolab->getStr('body'),
'category' => $this->_kolab->getStr('categories'),
'due' => Kolab::decodeDateOrDateTime($this->_kolab->getVal('due-date')),
'priority' => $this->_kolab->getVal('priority'),
'completed' => Kolab::percentageToBoolean($this->_kolab->getVal('completed')),
'alarm' => $this->_kolab->getVal('alarm'),
'flags' => 0,
);
}
/**
* Retrieves one task from the store.
*
* @param string $taskId The id of the task to retrieve.
*
* @return array The array of task attributes.
*/
function get($taskId)
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
$result = $this->_kolab->loadObject($taskId);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
return $this->_buildTask();
}
/**
* Retrieves one task from the database by UID.
*
* @param string $uid The UID of the task to retrieve.
*
* @return array The array of task attributes.
*/
function getByUID($uid)
{
return PEAR::raiseError("Not supported");
}
function _setObject($name, $desc, $due = 0, $priority = 0, $completed = 0,
$category = 0, $alarm = 0, $uid = null)
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
if ($uid !== null) {
$result = $this->_kolab->loadObject($uid);
} else {
$uid = $this->generateUID();
$result = $this->_kolab->newObject($uid);
}
if (is_a($result, 'PEAR_Error')) {
return $result;
}
if ($due == 0) {
$alarm = 0;
}
$this->_kolab->setStr('summary', $name);
$this->_kolab->setStr('body', $desc);
$this->_kolab->setStr('categories', $category);
$this->_kolab->setVal('priority', $priority);
$this->_kolab->setVal('completed', Kolab::booleanToPercentage($completed));
$this->_kolab->setVal('due-date', Kolab::encodeDateTime($due));
$this->_kolab->setVal('alarm', $alarm);
$result = $this->_kolab->saveObject();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
return $uid;
}
/**
* Adds a task to the backend storage.
*
* @param string $name The name (short) of the task.
* @param string $desc The description (long) of the task.
* @param integer $due The due date of the task.
* @param integer $priority The priority of the task.
* @param integer $completed The completion state of the task.
* @param string $category The category of the task.
* @param integer $alarm The alarm associated with the task.
* @param string $uid A Unique Identifier for the task.
*
* @return string The Nag ID of the new task.
*/
function _add($name, $desc, $due = 0, $priority = 0, $completed = 0,
$category = 0, $alarm = 0, $uid = null)
{
return $this->_setObject($name, $desc, $due, $priority, $completed,
$category, $alarm);
}
/**
* Modifies an existing task.
*
* @param string $taskId The task to modify.
* @param string $name The name (short) of the task.
* @param string $desc The description (long) of the task.
* @param integer $due The due date of the task.
* @param integer $priority The priority of the task.
* @param integer $completed The completion state of the task.
* @param string $category The category of the task.
* @param integer $completed The alarm associated with the task.
*/
function _modify($taskId, $name, $desc, $due = 0, $priority = 0,
$completed = 0, $category = 0, $alarm = 0)
{
$result = $this->_setObject($name, $desc, $due, $priority, $completed,
$category, $alarm, $taskId);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
return $result == $taskId;
}
/**
* Moves a task to a different tasklist.
*
* @param string $taskId The task to move.
* @param string $newTasklist The new tasklist.
*/
function move($taskId, $newTasklist)
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
return $this->_kolab->moveObject($taskId, $newTasklist);
}
/**
* Deletes a task from the backend.
*
* @param string $taskId The task to delete.
*/
function _delete($taskId)
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
return $this->_kolab->removeObjects($taskId);
}
/**
* Deletes all tasks from the backend.
*/
function deleteAll()
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
return $this->_kolab->removeAllObjects();
}
/**
* Retrieves tasks from the Kolab server.
*
* @param integer $completed Which tasks to retrieve (1 = all tasks,
* 0 = incomplete tasks, 2 = complete tasks).
*
* @return mixed True on success, PEAR_Error on failure.
*/
function retrieve($completed = 1)
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
$this->_tasks = array();
$msg_list = $this->_kolab->listObjects();
if (is_a($msg_list, 'PEAR_Error')) {
return $msg_list;
}
if (empty($msg_list)) {
return true;
}
foreach ($msg_list as $msg) {
$result = &$this->_kolab->loadObject($msg, true);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
if (($completed = 0 &&
Kolab::percentageToBoolean($this->_kolab->getVal('completed'))) ||
($completed == 2 &&
!Kolab::percentageToBoolean($this->_kolab->getVal('completed')))) {
continue;
}
$this->_tasks[$this->_kolab->getUID()] = $this->_buildTask();
}
return true;
}
/**
* Lists all alarms near $date.
*
* @param integer $date The unix epoch time to check for alarms.
*
* @return array An array of tasks that have alarms that match.
*/
function listAlarms($date)
{
$result = $this->_connect();
if (is_a($result, 'PEAR_Error')) {
return $result;
}
$tasks = array();
$msg_list = $this->_kolab->listObjects();
if (is_a($msg_list, 'PEAR_Error')) {
return $msg_list;
}
if (empty($msg_list)) {
return $tasks;
}
foreach ($msg_list as $msg) {
$result = &$this->_kolab->loadObject($msg, true);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
$task = $this->_buildTask();
if ($task['alarm'] > 0 && $task['due'] >= time() && $task['due'] - ($task['alarm'] * 60) <= $date) {
$tasks[$this->_kolab->getUID()] = $task;
}
}
return $tasks;
}
}
|