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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
|
<?php
/**
* Mnemo external API interface.
*
* This file defines Mnemo's external API interface. Other applications can
* interact with Mnemo through this API.
*
* $Horde: mnemo/lib/api.php,v 1.53.2.35 2009-09-04 10:38:37 jan Exp $
*
* Copyright 2001-2009 The Horde Project (http://www.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.
*
* @since Mnemo 1.0
* @package Mnemo
*/
$_services['perms'] = array(
'args' => array(),
'type' => '{urn:horde}stringArray'
);
$_services['removeUserData'] = array(
'args' => array('user' => 'string'),
'type' => 'boolean'
);
$_services['show'] = array(
'link' => '%application%/view.php?memolist=|notepad|&memo=|note|&uid=|uid|',
);
$_services['listNotepads'] = array(
'args' => array('owneronly' => 'boolean', 'permission' => 'int'),
'type' => '{urn:horde}stringArray',
);
$_services['list'] = array(
'args' => array(),
'type' => '{urn:horde}stringArray'
);
$_services['listBy'] = array(
'args' => array('action' => 'string', 'timestamp' => 'int', 'notepad' => 'string'),
'type' => '{urn:horde}stringArray'
);
$_services['getActionTimestamp'] = array(
'args' => array('uid' => 'string', 'action' => 'string', 'notepad' => 'string'),
'type' => 'int',
);
$_services['import'] = array(
'args' => array('content' => 'string', 'contentType' => 'string'),
'type' => 'string'
);
$_services['export'] = array(
'args' => array('uid' => 'string', 'contentType' => 'string'),
'type' => 'string'
);
$_services['delete'] = array(
'args' => array('uid' => 'string'),
'type' => 'boolean'
);
$_services['replace'] = array(
'args' => array('uid' => 'string', 'content' => 'string', 'contentType' => 'string'),
'type' => 'boolean'
);
/**
* Returns a list of available permissions.
*
* @return array An array describing all available permissions.
*/
function _mnemo_perms()
{
$perms = array();
$perms['tree']['mnemo']['max_notes'] = false;
$perms['title']['mnemo:max_notes'] = _("Maximum Number of Notes");
$perms['type']['mnemo:max_notes'] = 'int';
return $perms;
}
/**
* Removes user data.
*
* @param string $user Name of user to remove data for.
*
* @return mixed true on success | PEAR_Error on failure
*/
function _mnemo_removeUserData($user)
{
require_once dirname(__FILE__) . '/base.php';
if (!Auth::isAdmin() && $user != Auth::getAuth()) {
return PEAR::raiseError(_("You are not allowed to remove user data."));
}
/* Error flag */
$hasError = false;
/* Get the share object for later deletion */
$share = $GLOBALS['mnemo_shares']->getShare($user);
if (is_a($share, 'PEAR_Error')) {
Horde::logMessage($share->getMessage(), __FILE__, __LINE__, PEAR_LOG_ERR);
unset($share);
} else {
$GLOBALS['display_notepads'] = array($user);
$memos = Mnemo::listMemos();
if (is_a($memos, 'PEAR_Error')) {
$hasError = true;
Horde::logMessage($mnemos->getMessage(), __FILE__, __LINE__, PEAR_LOG_ERR);
} else {
$uids = array();
foreach ($memos as $memo) {
$uids[] = $memo['uid'];
}
/* ... and delete them. */
foreach ($uids as $uid) {
_mnemo_delete($uid);
}
}
/* Now delete history as well. */
$history = &Horde_History::singleton();
if (method_exists($history, 'removeByParent')) {
$histories = $history->removeByParent('mnemo:' . $user);
} else {
/* Remove entries 100 at a time. */
$all = $history->getByTimestamp('>', 0, array(), 'mnemo:' . $user);
if (is_a($all, 'PEAR_Error')) {
Horde::logMessage($all, __FILE__, __LINE__, PEAR_LOG_ERR);
} else {
$all = array_keys($all);
while (count($d = array_splice($all, 0, 100)) > 0) {
$history->removebyNames($d);
}
}
}
/* Remove the share itself */
if (!empty($share)) {
$result = $GLOBALS['mnemo_shares']->removeShare($share);
if (is_a($result, 'PEAR_Error')) {
$hasError = true;
Horde::logMessage($result->getMessage(), __FILE__, __LINE__, PEAR_LOG_ERR);
}
}
/* Get a list of all shares this user has perms to and remove the perms */
$shares = $GLOBALS['mnemo_shares']->listShares($user);
if (is_a($shares, 'PEAR_Error')) {
$hasError = true;
Horde::logMessage($shares, __FILE__, __LINE__, PEAR_LOG_ERR);
} else {
foreach ($shares as $share) {
$share->removeUser($user);
}
}
}
if ($hasError) {
return PEAR::raiseError(sprintf(_("There was an error removing notes for %s. Details have been logged."), $user));
} else {
return true;
}
}
/**
* @param boolean $owneronly Only return notepads that this user owns?
* Defaults to false.
* @param integer $permission The permission to filter notepads by.
*
* @return array The notepads.
*/
function _mnemo_listNotepads($owneronly, $permission)
{
require_once dirname(__FILE__) . '/base.php';
return Mnemo::listNotepads($owneronly, $permission);
}
/**
* Returns an array of UIDs for all notes that the current user is authorized
* to see.
*
* @param string $notepad The notepad to list notes from.
*
* @return array An array of UIDs for all notes the user can access.
*/
function _mnemo_list($notepad = null)
{
require_once dirname(__FILE__) . '/base.php';
global $conf;
if (!isset($conf['storage']['driver'])) {
return PEAR::raiseError('Not configured');
}
/* Make sure we have a valid notepad. */
if (empty($notepad)) {
$notepad = Mnemo::getDefaultNotepad();
}
if (!array_key_exists($notepad,
Mnemo::listNotepads(false, PERMS_READ))) {
return PEAR::raiseError(_("Permission Denied"));
}
/* Set notepad for listMemos. */
$GLOBALS['display_notepads'] = array($notepad);
$memos = Mnemo::listMemos();
if (is_a($memos, 'PEAR_Error')) {
return $memos;
}
$uids = array();
foreach ($memos as $memo) {
$uids[] = $memo['uid'];
}
return $uids;
}
/**
* Returns an array of UIDs for notes that have had $action happen since
* $timestamp.
*
* @param string $action The action to check for - add, modify, or delete.
* @param integer $timestamp The time to start the search.
* @param string $notepad The notepad to search in.
*
* @return array An array of UIDs matching the action and time criteria.
*/
function _mnemo_listBy($action, $timestamp, $notepad = null)
{
require_once dirname(__FILE__) . '/base.php';
/* Make sure we have a valid notepad. */
if (empty($notepad)) {
$notepad = Mnemo::getDefaultNotepad();
}
if (!array_key_exists($notepad,
Mnemo::listNotepads(false, PERMS_READ))) {
return PEAR::raiseError(_("Permission Denied"));
}
$history = &Horde_History::singleton();
$histories = $history->getByTimestamp('>', $timestamp, array(array('op' => '=', 'field' => 'action', 'value' => $action)), 'mnemo:' . $notepad);
if (is_a($histories, 'PEAR_Error')) {
return $histories;
}
// Strip leading mnemo:username:.
return preg_replace('/^([^:]*:){2}/', '', array_keys($histories));
}
/**
* Returns the timestamp of an operation for a given uid an action.
*
* @param string $uid The uid to look for.
* @param string $action The action to check for - add, modify, or delete.
* @param string $notepad The notepad to search in.
*
* @return integer The timestamp for this action.
*/
function _mnemo_getActionTimestamp($uid, $action, $notepad = null)
{
require_once dirname(__FILE__) . '/base.php';
/* Make sure we have a valid notepad. */
if (empty($notepad)) {
$notepad = Mnemo::getDefaultNotepad();
}
if (!array_key_exists($notepad,
Mnemo::listNotepads(false, PERMS_READ))) {
return PEAR::raiseError(_("Permission Denied"));
}
$history = &Horde_History::singleton();
return $history->getActionTimestamp('mnemo:' . $notepad . ':' . $uid, $action);
}
/**
* Import a memo represented in the specified contentType.
*
* @param string $content The content of the memo.
* @param string $contentType What format is the data in? Currently supports:
* text/plain
* text/x-vnote
* @param string $notepad (optional) The notepad to save the memo on.
*
* @return string The new UID, or false on failure.
*/
function _mnemo_import($content, $contentType, $notepad = null)
{
global $prefs;
require_once dirname(__FILE__) . '/base.php';
/* Make sure we have a valid notepad and permissions to edit
* it. */
if (empty($notepad)) {
$notepad = Mnemo::getDefaultNotepad(PERMS_EDIT);
}
if (!array_key_exists($notepad, Mnemo::listNotepads(false, PERMS_EDIT))) {
return PEAR::raiseError(_("Permission Denied"));
}
/* Create a Mnemo_Driver instance. */
$storage = &Mnemo_Driver::singleton($notepad);
switch ($contentType) {
case 'text/plain':
$noteId = $storage->add($storage->getMemoDescription($content), $content);
break;
case 'text/x-vnote':
if (!is_a($content, 'Horde_iCalendar_vnote')) {
require_once 'Horde/iCalendar.php';
$iCal = &new Horde_iCalendar();
if (!$iCal->parsevCalendar($content)) {
return PEAR::raiseError(_("There was an error importing the iCalendar data."));
}
$components = $iCal->getComponents();
switch (count($components)) {
case 0:
return PEAR::raiseError(_("No iCalendar data was found."));
case 1:
$content = $components[0];
break;
default:
$ids = array();
foreach ($components as $content) {
if (is_a($content, 'Horde_iCalendar_vnote')) {
$note = $storage->fromiCalendar($content);
$noteId = $storage->add($note['desc'],
$note['body'],
!empty($note['category']) ? $note['category'] : '');
if (is_a($noteId, 'PEAR_Error')) {
return $noteId;
}
$ids[] = $noteId;
}
}
return $ids;
}
}
$note = $storage->fromiCalendar($content);
$noteId = $storage->add($note['desc'],
$note['body'], !empty($note['category']) ? $note['category'] : '');
break;
default:
return PEAR::raiseError(sprintf(_("Unsupported Content-Type: %s"),$contentType));
}
if (is_a($noteId, 'PEAR_Error')) {
return $noteId;
}
$note = $storage->get($noteId);
return $note['uid'];
}
/**
* Export a memo, identified by UID, in the requested contentType.
*
* @param string $uid Identify the memo to export.
* @param string $contentType What format should the data be in?
* A string with one of:
* <pre>
* 'text/plain'
* 'text/x-vnote'
* </pre>
*
* @return string The requested data or PEAR_Error.
*/
function _mnemo_export($uid, $contentType)
{
require_once dirname(__FILE__) . '/base.php';
$storage = &Mnemo_Driver::singleton();
$memo = $storage->getByUID($uid);
if (is_a($memo, 'PEAR_Error')) {
return $memo;
}
if (!array_key_exists($memo['memolist_id'], Mnemo::listNotepads(false, PERMS_READ))) {
return PEAR::raiseError(_("Permission Denied"));
}
if (is_a($memo['body'], 'PEAR_Error')) {
if ($memo['body']->getCode() == MNEMO_ERR_NO_PASSPHRASE ||
$memo['body']->getCode() == MNEMO_ERR_DECRYPT) {
$memo['body'] = _("This note has been encrypted.");
} else {
return $memo['body'];
}
}
switch ($contentType) {
case 'text/plain':
return $memo['body'];
case 'text/x-vnote':
require_once dirname(__FILE__) . '/version.php';
require_once 'Horde/iCalendar.php';
// Create the new iCalendar container.
$iCal = &new Horde_iCalendar('1.1');
$iCal->setAttribute('VERSION', '1.1');
$iCal->setAttribute('PRODID', '-//The Horde Project//Mnemo ' . MNEMO_VERSION . '//EN');
$iCal->setAttribute('METHOD', 'PUBLISH');
// Create a new vNote.
$vNote = $storage->toiCalendar($memo, $iCal);
return $vNote->exportvCalendar();
}
return PEAR::raiseError(sprintf(_("Unsupported Content-Type: %s"),$contentType));
}
/**
* Delete a memo identified by UID.
*
* @param string | array $uid Identify the note to delete, either a
* single UID or an array.
*
* @return boolean Success or failure.
*/
function _mnemo_delete($uid)
{
// Handle an arrray of UIDs for convenience of deleting multiple
// notes at once.
if (is_array($uid)) {
foreach ($uid as $u) {
$result = _mnemo_delete($u);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
}
return true;
}
require_once dirname(__FILE__) . '/base.php';
$storage = &Mnemo_Driver::singleton();
$memo = $storage->getByUID($uid);
if (is_a($memo, 'PEAR_Error')) {
return $memo;
}
if (!Auth::isAdmin() &&
!array_key_exists($memo['memolist_id'],
Mnemo::listNotepads(false, PERMS_DELETE))) {
return PEAR::raiseError(_("Permission Denied"));
}
return $storage->delete($memo['memo_id']);
}
/**
* Replace the memo identified by UID with the content represented in
* the specified contentType.
*
* @param string $uid Idenfity the memo to replace.
* @param string $content The content of the memo.
* @param string $contentType What format is the data in? Currently supports:
* text/plain
* text/x-vnote
*
* @return boolean Success or failure.
*/
function _mnemo_replace($uid, $content, $contentType)
{
require_once dirname(__FILE__) . '/base.php';
$storage = &Mnemo_Driver::singleton();
$memo = $storage->getByUID($uid);
if (is_a($memo, 'PEAR_Error')) {
return $memo;
}
if (!array_key_exists($memo['memolist_id'], Mnemo::listNotepads(false, PERMS_EDIT))) {
return PEAR::raiseError(_("Permission Denied"));
}
switch ($contentType) {
case 'text/plain':
return $storage->modify($memo['memo_id'], $storage->getMemoDescription($content), $content, null);
case 'text/x-vnote':
if (!is_a($content, 'Horde_iCalendar_vnote')) {
require_once 'Horde/iCalendar.php';
$iCal = new Horde_iCalendar();
if (!$iCal->parsevCalendar($content)) {
return PEAR::raiseError(_("There was an error importing the iCalendar data."));
}
$components = $iCal->getComponents();
switch (count($components)) {
case 0:
return PEAR::raiseError(_("No iCalendar data was found."));
case 1:
$content = $components[0];
break;
default:
return PEAR::raiseError(_("Multiple iCalendar components found; only one vNote is supported."));
}
}
$note = $storage->fromiCalendar($content);
return $storage->modify($memo['memo_id'], $note['desc'],
$note['body'],!empty($note['category']) ? $note['category'] : '');
default:
return PEAR::raiseError(sprintf(_("Unsupported Content-Type: %s"),$contentType));
}
}
|