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 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
|
<?php
/**
* Sort by task name.
*/
define('NAG_SORT_NAME', 'name');
/**
* Sort by priority.
*/
define('NAG_SORT_PRIORITY', 'priority');
/**
* Sort by due date.
*/
define('NAG_SORT_DUE', 'due');
/**
* Sort by completion.
*/
define('NAG_SORT_COMPLETION', 'completed');
/**
* Sort by category.
*/
define('NAG_SORT_CATEGORY', 'category');
/**
* Sort by owner.
*/
define('NAG_SORT_OWNER', 'tasklist');
/**
* Sort by estimate.
*/
define('NAG_SORT_ESTIMATE', 'estimate');
/**
* Sort by assignee.
*/
define('NAG_SORT_ASSIGNEE', 'assignee');
/**
* Sort in ascending order.
*/
define('NAG_SORT_ASCEND', 0);
/**
* Sort in descending order.
*/
define('NAG_SORT_DESCEND', 1);
/**
* Nag Base Class.
*
* $Horde: nag/lib/Nag.php,v 1.124.2.34 2009-06-19 17:20:13 jan Exp $
*
* 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 Jon Parise <jon@horde.org>
* @package Nag
*/
class Nag {
function secondsToString($seconds)
{
$hours = floor($seconds / 3600);
$minutes = ($seconds / 60) % 60;
if ($hours > 1) {
if ($minutes == 0) {
return sprintf(_("%d hours"), $hours);
} elseif ($minutes == 1) {
return sprintf(_("%d hours, %d minute"), $hours, $minutes);
} else {
return sprintf(_("%d hours, %d minutes"), $hours, $minutes);
}
} elseif ($hours == 1) {
if ($minutes == 0) {
return sprintf(_("%d hour"), $hours);
} elseif ($minutes == 1) {
return sprintf(_("%d hour, %d minute"), $hours, $minutes);
} else {
return sprintf(_("%d hour, %d minutes"), $hours, $minutes);
}
} else {
if ($minutes == 0) {
return _("no time");
} elseif ($minutes == 1) {
return sprintf(_("%d minute"), $minutes);
} else {
return sprintf(_("%d minutes"), $minutes);
}
}
}
/**
* Retrieves the current user's task list from storage.
*
* This function will also sort the resulting list, if requested.
*
* @param string $sortby The field by which to sort (NAG_SORT_*).
* @param integer $sortdir The direction by which to sort
* (NAG_SORT_ASCEND, NAG_SORT_DESCEND).
* @param string $altsortby The secondary sort field.
* @param array $tasklists An array of tasklist to display or
* null/empty to display taskslists
* $GLOBALS['display_tasklists'].
* @param integer $completed Which tasks to retrieve (1 = all tasks,
* 0 = incomplete tasks, 2 = complete tasks,
* 3 = future tasks, 4 = future and incomplete
* tasks).
*
* @return Nag_Task A list of the requested tasks.
*/
function listTasks($sortby = null,
$sortdir = null,
$altsortby = null,
$tasklists = null,
$completed = null)
{
global $prefs, $registry;
if (is_null($sortby)) {
$sortby = $prefs->getValue('sortby');
}
if (is_null($sortdir)) {
$sortdir = $prefs->getValue('sortdir');
}
if (is_null($altsortby)) {
$altsortby = $prefs->getValue('altsortby');
}
if (is_null($tasklists)) {
$tasklists = $GLOBALS['display_tasklists'];
}
if (!is_array($tasklists)) {
$tasklists = array($tasklists);
}
if (is_null($completed)) {
$completed = $prefs->getValue('show_completed');
}
$tasks = new Nag_Task();
foreach ($tasklists as $tasklist) {
/* Create a Nag storage instance. */
$storage = &Nag_Driver::singleton($tasklist);
/* Retrieve the tasklist from storage. */
$result = $storage->retrieve($completed);
if (is_a($result, 'PEAR_Error')) {
return $result;
}
$tasks->mergeChildren($storage->tasks->children);
}
/* Process all tasks. */
$tasks->process();
/* We look for registered apis that support listAs(taskHash). */
$apps = @unserialize($prefs->getValue('show_external'));
if (is_array($apps)) {
foreach ($apps as $app) {
if ($app != 'nag' &&
$registry->hasMethod('getListTypes', $app)) {
$types = $registry->callByPackage($app, 'getListTypes');
if (is_a($types, 'PEAR_Error')) {
continue;
}
if (!empty($types['taskHash'])) {
$newtasks = $registry->callByPackage($app, 'listAs', array('taskHash'));
if (is_a($newtasks, 'PEAR_Error')) {
Horde::logMessage($newtasks, __FILE__, __LINE__, PEAR_LOG_ERR);
} else {
foreach ($newtasks as $task) {
$task['tasklist_id'] = '**EXTERNAL**';
$task['tasklist_name'] = $registry->get('name', $app);
$tasks->add(new Nag_Task($task));
}
}
}
}
}
}
/* Sort the array. */
$tasks->sort($sortby, $sortdir, $altsortby);
return $tasks;
}
/**
* Returns a single task.
*
* @param string $tasklist A tasklist.
* @param string $task A task id.
*
* @return array The task hash.
*/
function getTask($tasklist, $task)
{
$storage = &Nag_Driver::singleton($tasklist);
$task = $storage->get($task);
if (is_a($task, 'PEAR_Error')) {
return $task;
}
$task->process();
return $task;
}
/**
* Returns the number of taks in task lists that the current user owns.
*
* @return integer The number of tasks that the user owns.
*/
function countTasks()
{
static $count;
if (isset($count)) {
return $count;
}
$tasklists = Nag::listTasklists(true, PERMS_ALL);
$count = 0;
foreach (array_keys($tasklists) as $tasklist) {
/* Create a Nag storage instance. */
$storage = &Nag_Driver::singleton($tasklist);
$storage->retrieve();
/* Retrieve the task list from storage. */
$count += $storage->tasks->count();
}
return $count;
}
/**
* Returns all the alarms active right on $date.
*
* @param integer $date The unix epoch time to check for alarms.
*
* @return array The alarms (taskId) active on $date.
*/
function listAlarms($date, $tasklists = null)
{
if (is_null($tasklists)) {
$tasklists = $GLOBALS['display_tasklists'];
}
$tasks = array();
foreach ($tasklists as $tasklist) {
/* Create a Nag storage instance. */
$storage = &Nag_Driver::singleton($tasklist);
/* Retrieve the alarms for the task list. */
$newtasks = $storage->listAlarms($date);
if (is_a($newtasks, 'PEAR_Error')) {
return $newtasks;
}
/* Don't show an alarm for complete tasks. */
foreach ($newtasks as $taskID => $task) {
if (!empty($task->completed)) {
unset($newtasks[$taskID]);
}
}
$tasks = array_merge($tasks, $newtasks);
}
return $tasks;
}
/**
* Lists all task lists a user has access to.
*
* @param boolean $owneronly Only return tasklists that this user owns?
* Defaults to false.
* @param integer $permission The permission to filter tasklists by.
*
* @return array The task lists.
*/
function listTasklists($owneronly = false, $permission = PERMS_SHOW)
{
// Work around BC break in listShares() parameters (http://bugs.horde.org/ticket/7820)
include_once $GLOBALS['registry']->get('fileroot', 'horde') . '/lib/version.php';
if (version_compare(HORDE_VERSION, '3.2', '<')) {
$tasklists = $GLOBALS['nag_shares']->listShares(Auth::getAuth(), $permission, $owneronly ? Auth::getAuth() : null, DATATREE_ROOT, true, 0, 0, 'name');
} else {
$tasklists = $GLOBALS['nag_shares']->listShares(Auth::getAuth(), $permission, $owneronly ? Auth::getAuth() : null, 0, 0, 'name');
}
if (is_a($tasklists, 'PEAR_Error')) {
Horde::logMessage($tasklists, __FILE__, __LINE__, PEAR_LOG_ERR);
return array();
}
return $tasklists;
}
/**
* Filters data based on permissions.
*
* @param array $in The data we want filtered.
* @param string $filter What type of data we are filtering.
* @param integer $permission The PERMS_* constant we will filter on.
*
* @return array The filtered data.
*/
function permissionsFilter($in, $permission = PERMS_READ)
{
// FIXME: Must find a way to check individual tasklists for
// permission. Can't specify attributes as it does not check for the
// 'key' attribute, only 'name' and 'value'.
return $in;
// Broken code:
$out = array();
foreach ($in as $sourceId => $source) {
if ($in->hasPermission($permission)) {
$out[$sourceId] = $source;
}
}
return $out;
}
/**
* Returns the default tasklist for the current user at the specified
* permissions level.
*/
function getDefaultTasklist($permission = PERMS_SHOW)
{
global $prefs;
$default_tasklist = $prefs->getValue('default_tasklist');
$tasklists = Nag::listTasklists(false, $permission);
if (isset($tasklists[$default_tasklist])) {
return $default_tasklist;
} elseif ($prefs->isLocked('default_tasklist')) {
return Auth::getAuth();
} elseif (count($tasklists)) {
reset($tasklists);
return key($tasklists);
}
return false;
}
/**
* Builds the HTML for a priority selection widget.
*
* @param string $name The name of the widget.
* @param integer $selected The default selected priority.
*
* @return string The HTML <select> widget.
*/
function buildPriorityWidget($name, $selected = -1)
{
$descs = array(1 => _("(highest)"), 5 => _("(lowest)"));
$html = "<select id=\"$name\" name=\"$name\">";
for ($priority = 1; $priority <= 5; $priority++) {
$html .= "<option value=\"$priority\"";
$html .= ($priority == $selected) ? ' selected="selected">' : '>';
$html .= $priority . ' ' . @$descs[$priority] . '</option>';
}
$html .= "</select>\n";
return $html;
}
/**
* Builds the HTML for a checkbox widget.
*
* @param string $name The name of the widget.
* @param integer $checked The default checkbox state.
*
* @return string HTML for a checkbox representing the completion state.
*/
function buildCheckboxWidget($name, $checked = 0)
{
$name = htmlspecialchars($name);
return "<input type=\"checkbox\" id=\"$name\" name=\"$name\"" .
($checked ? ' checked="checked"' : '') . ' />';
}
/**
* Formats the given Unix-style date string.
*
* @param string $unixdate The Unix-style date value to format.
* @param boolean $hours Whether to add hours.
*
* @return string The formatted due date string.
*/
function formatDate($unixdate = '', $hours = true)
{
global $prefs;
if (empty($unixdate)) {
return '';
}
$date = strftime($prefs->getValue('date_format'), $unixdate);
if (!$hours) {
return $date;
}
return sprintf(_("%s at %s"),
$date,
strftime($prefs->getValue('twentyFour') ? '%H:%M' : '%I:%M %p', $unixdate));
}
/**
* Returns the string representation of the given completion status.
*
* @param int $completed The completion value.
*
* @return string The HTML representation of $completed.
*/
function formatCompletion($completed)
{
return $completed ?
Horde::img('checked.png', _("Completed")) :
Horde::img('unchecked.png', _("Not Completed"));
}
/**
* Returns a colored representation of a priority.
*
* @param int $priority The priority level.
*
* @return string The HTML representation of $priority.
*/
function formatPriority($priority)
{
return '<span class="pri-' . (int)$priority . '">' . (int)$priority .
'</span>';
}
/**
* Returns the string matching the given alarm value.
*
* @param int $value The alarm value in minutes.
*
* @return string The formatted alarm string.
*/
function formatAlarm($value)
{
if ($value) {
if ($value % 10080 == 0) {
$alarm_value = $value / 10080;
$alarm_unit = _("Week(s)");
} elseif ($value % 1440 == 0) {
$alarm_value = $value / 1440;
$alarm_unit = _("Day(s)");
} elseif ($value % 60 == 0) {
$alarm_value = $value / 60;
$alarm_unit = _("Hour(s)");
} else {
$alarm_value = $value;
$alarm_unit = _("Minute(s)");
}
$alarm_text = "$alarm_value $alarm_unit";
} else {
$alarm_text = _("None");
}
return $alarm_text;
}
/**
* Returns the full name and a compose to message an assignee.
*
* @param string $assignee The assignee's user name.
* @param boolean $link Whether to link to an email compose screen.
*
* @return string The formatted assignee name.
*/
function formatAssignee($assignee, $link = false)
{
if (!strlen($assignee)) {
return '';
}
require_once 'Horde/Identity.php';
$identity = &Identity::singleton('none', $assignee);
$fullname = $identity->getValue('fullname');
if (!strlen($fullname)) {
$fullname = $assignee;
}
$email = $identity->getValue('from_addr');
if ($link && !empty($email) &&
$GLOBALS['registry']->hasMethod('mail/compose')) {
return Horde::link($GLOBALS['registry']->call(
'mail/compose',
array(array('to' => $email))))
. @htmlspecialchars($fullname . ' <' . $email . '>',
ENT_COMPAT, NLS::getCharset())
. '</a>';
} else {
return @htmlspecialchars($fullname, ENT_COMPAT, NLS::getCharset());
}
}
/**
* Returns the specified permission for the current user.
*
* @since Nag 2.1
*
* @param string $permission A permission, currently only 'max_tasks'.
*
* @return mixed The value of the specified permission.
*/
function hasPermission($permission)
{
global $perms;
if (!$perms->exists('nag:' . $permission)) {
return true;
}
$allowed = $perms->getPermissions('nag:' . $permission);
if (is_array($allowed)) {
switch ($permission) {
case 'max_tasks':
$allowed = max($allowed);
break;
}
}
return $allowed;
}
/**
* Initial app setup code.
*/
function initialize()
{
/* Store the request timestamp if it's not already present. */
if (!isset($_SERVER['REQUEST_TIME'])) {
$_SERVER['REQUEST_TIME'] = time();
}
// Update the preference for what task lists to display. If the user
// doesn't have any selected task lists for view then fall back to
// some available list.
$GLOBALS['display_tasklists'] = @unserialize($GLOBALS['prefs']->getValue('display_tasklists'));
if (!$GLOBALS['display_tasklists']) {
$GLOBALS['display_tasklists'] = array();
}
if (($tasklistId = Util::getFormData('display_tasklist')) !== null) {
if (is_array($tasklistId)) {
$GLOBALS['display_tasklists'] = $tasklistId;
} else {
if (in_array($tasklistId, $GLOBALS['display_tasklists'])) {
$key = array_search($tasklistId, $GLOBALS['display_tasklists']);
unset($GLOBALS['display_tasklists'][$key]);
} else {
$GLOBALS['display_tasklists'][] = $tasklistId;
}
}
}
// Make sure all task lists exist now, to save on checking later.
$_temp = $GLOBALS['display_tasklists'];
$GLOBALS['all_tasklists'] = Nag::listTasklists();
$GLOBALS['display_tasklists'] = array();
foreach ($_temp as $id) {
if (isset($GLOBALS['all_tasklists'][$id])) {
$GLOBALS['display_tasklists'][] = $id;
}
}
if (count($GLOBALS['display_tasklists']) == 0) {
$lists = Nag::listTasklists(true);
if (!Auth::getAuth()) {
/* All tasklists for guests. */
$GLOBALS['display_tasklists'] = array_keys($lists);
} else {
/* Make sure at least the default tasklist is visible. */
$default_tasklist = Nag::getDefaultTasklist(PERMS_READ);
if ($default_tasklist) {
$GLOBALS['display_tasklists'] = array($default_tasklist);
}
/* If the user's personal tasklist doesn't exist, then create it. */
if (!$GLOBALS['nag_shares']->exists(Auth::getAuth())) {
require_once 'Horde/Identity.php';
$identity = &Identity::singleton();
$name = $identity->getValue('fullname');
if (trim($name) == '') {
$name = Auth::removeHook(Auth::getAuth());
}
$share = &$GLOBALS['nag_shares']->newShare(Auth::getAuth());
$share->set('name', sprintf(_("%s's Task List"), $name));
$GLOBALS['nag_shares']->addShare($share);
/* Make sure the personal tasklist is displayed by default. */
if (!in_array(Auth::getAuth(), $GLOBALS['display_tasklists'])) {
$GLOBALS['display_tasklists'][] = Auth::getAuth();
}
}
}
}
$GLOBALS['prefs']->setValue('display_tasklists', serialize($GLOBALS['display_tasklists']));
}
/**
* Build Nag's list of menu items.
*/
function getMenu($returnType = 'object')
{
global $conf, $registry, $print_link;
require_once 'Horde/Menu.php';
$menu = new Menu();
$menu->add(Horde::applicationUrl('list.php'), _("_List Tasks"), 'nag.png', null, null, null, basename($_SERVER['PHP_SELF']) == 'index.php' ? 'current' : null);
if (Nag::getDefaultTasklist(PERMS_EDIT) &&
(!empty($conf['hooks']['permsdenied']) ||
Nag::hasPermission('max_tasks') === true ||
Nag::hasPermission('max_tasks') > Nag::countTasks())) {
$menu->add(Horde::applicationUrl(Util::addParameter('task.php', 'actionID', 'add_task')), _("_New Task"), 'add.png', null, null, null, Util::getFormData('task') ? '__noselection' : null);
}
/* Search. */
$menu->add(Horde::applicationUrl('search.php'), _("_Search"), 'search.png', $registry->getImageDir('horde'));
/* Import/Export. */
if ($conf['menu']['import_export']) {
$menu->add(Horde::applicationUrl('data.php'), _("_Import/Export"), 'data.png', $registry->getImageDir('horde'));
}
/* Print. */
if ($conf['menu']['print'] && isset($print_link)) {
$menu->add($print_link, _("_Print"), 'print.png', $registry->getImageDir('horde'), '_blank', 'popup(this.href); return false;', '__noselection');
}
if ($returnType == 'object') {
return $menu;
} else {
return $menu->render();
}
}
function status()
{
global $notification;
if (empty($GLOBALS['conf']['alarms']['driver'])) {
// Get any alarms in the next hour.
$now = time();
$alarmList = Nag::listAlarms($now);
if (is_a($alarmList, 'PEAR_Error')) {
Horde::logMessage($alarmList, __FILE__, __LINE__, PEAR_LOG_ERR);
$notification->push($alarmList, 'horde.error');
} else {
$messages = array();
foreach ($alarmList as $task) {
$differential = $task->due - $now;
$key = $differential;
while (isset($messages[$key])) {
$key++;
}
if ($differential >= -60 && $differential < 60) {
$messages[$key] = array(sprintf(_("%s is due now."), $task->name), 'nag.alarm');
} elseif ($differential >= 60) {
$messages[$key] = array(sprintf(_("%s is due in %s"), $task->name,
Nag::secondsToString($differential)), 'nag.alarm');
}
}
ksort($messages);
foreach ($messages as $message) {
$notification->push($message[0], $message[1]);
}
}
}
// Check here for guest task lists so that we don't get multiple
// messages after redirects, etc.
if (!Auth::getAuth() && !count(Nag::listTasklists())) {
$notification->push(_("No task lists are available to guests."));
}
// Display all notifications.
$notification->notify(array('listeners' => 'status'));
}
/**
* Sends email notifications that a task has been added, edited, or
* deleted to users that want such notifications.
*
* @param string $action The event action. One of "add", "edit", or
* "delete".
* @param Nag_Task $task The changed task.
* @param Nag_Task $old_task The original task if $action is "edit".
*/
function sendNotification($action, $task, $old_task = null)
{
if (!in_array($action, array('add', 'edit', 'delete'))) {
return PEAR::raiseError('Unknown event action: ' . $action);
}
$share = &$GLOBALS['nag_shares']->getShare($task->tasklist);
if (is_a($share, 'PEAR_Error')) {
return $share;
}
require_once 'Horde/Group.php';
require_once 'Horde/Identity.php';
require_once 'Horde/MIME.php';
require_once 'Horde/MIME/Headers.php';
require_once 'Horde/MIME/Message.php';
$groups = &Group::singleton();
$recipients = array();
$identity = &Identity::singleton();
$from = $identity->getDefaultFromAddress(true);
$owner = $share->get('owner');
$recipients[$owner] = Nag::_notificationPref($owner, 'owner');
foreach ($share->listUsers(PERMS_READ) as $user) {
if (empty($recipients[$user])) {
$recipients[$user] = Nag::_notificationPref($user, 'read', $task->tasklist);
}
}
foreach ($share->listGroups(PERMS_READ) as $group) {
$group = $groups->getGroupById($group);
if (is_a($group, 'PEAR_Error')) {
continue;
}
$group_users = $group->listAllUsers();
if (is_a($group_users, 'PEAR_Error')) {
Horde::logMessage($group_users, __FILE__, __LINE__, PEAR_LOG_ERR);
continue;
}
foreach ($group_users as $user) {
if (empty($recipients[$user])) {
$recipients[$user] = Nag::_notificationPref($user, 'read', $task->tasklist);
}
}
}
$addresses = array();
foreach ($recipients as $user => $vals) {
if (!$vals) {
continue;
}
$identity = &Identity::singleton('none', $user);
$email = $identity->getValue('from_addr');
if (strpos($email, '@') === false) {
continue;
}
list($mailbox, $host) = explode('@', $email);
if (!isset($addresses[$vals['lang']][$vals['tf']][$vals['df']])) {
$addresses[$vals['lang']][$vals['tf']][$vals['df']] = array();
}
$addresses[$vals['lang']][$vals['tf']][$vals['df']][] = MIME::rfc822WriteAddress($mailbox, $host, $identity->getValue('fullname'));
}
if (!$addresses) {
return;
}
$mail_driver = $GLOBALS['conf']['mailer']['type'];
$mail_params = $GLOBALS['conf']['mailer']['params'];
if ($mail_driver == 'smtp' && $mail_params['auth'] &&
empty($mail_params['username'])) {
$mail_params['username'] = Auth::getAuth();
$mail_params['password'] = Auth::getCredential('password');
}
$msg_headers = new MIME_Headers();
$msg_headers->addMessageIdHeader();
$msg_headers->addAgentHeader();
$msg_headers->addHeader('Date', date('r'));
$msg_headers->addHeader('From', $from);
foreach ($addresses as $lang => $twentyFour) {
NLS::setLang($lang);
$view_link = Util::addParameter(Horde::applicationUrl('view.php', true),
array('tasklist' => $task->tasklist,
'task' => $task->id),
null, false);
switch ($action) {
case 'add':
$subject = _("Task added:");
$notification_message = _("You requested to be notified when tasks are added to your task lists.")
. "\n\n"
. _("The task \"%s\" has been added to task list \"%s\", with a due date of: %s.")
. "\n"
. str_replace("%","%%",$view_link);
break;
case 'edit':
$subject = _("Task modified:");
$notification_message = _("You requested to be notified when tasks are edited on your task lists.")
. "\n\n"
. _("The task \"%s\" has been edited on task list \"%s\".")
. "\n"
. str_replace("%","%%",$view_link)
. "\n\n"
. _("Changes made for this task:");
if ($old_task->name != $task->name) {
$notification_message .= "\n - "
. sprintf(_("Changed name from \"%s\" to \"%s\""),
$old_task->name, $task->name);
}
if ($old_task->tasklist != $task->tasklist) {
$old_share = &$GLOBALS['nag_shares']->getShare($old_task->tasklist);
$notification_message .= "\n - "
. sprintf(_("Changed task list from \"%s\" to \"%s\""),
$old_share->get('name'), $share->get('name'));
}
if ($old_task->parent_id != $task->parent_id) {
$old_parent = $old_task->getParent();
if (!is_a($old_parent, 'PEAR_Error')) {
$parent = $task->getParent();
if (!is_a($parent, 'PEAR_Error')) {
$notification_message .= "\n - "
. sprintf(_("Changed parent task from \"%s\" to \"%s\""),
$old_parent ? $old_parent->name : _("no parent"),
$parent ? $parent->name : _("no parent"));
}
}
}
if ($old_task->category != $task->category) {
$notification_message .= "\n - "
. sprintf(_("Changed category from \"%s\" to \"%s\""),
$old_task->category, $task->category);
}
if ($old_task->assignee != $task->assignee) {
require_once 'Horde/Identity.php';
$identity = &Identity::singleton('none', $old_task->assignee);
$old_name = $identity->getValue('fullname');
if (!strlen($old_name)) {
$old_name = $old_task->assignee;
}
$identity = &Identity::singleton('none', $task->assignee);
$new_name = $identity->getValue('fullname');
if (!strlen($new_name)) {
$new_name = $new_task->assignee;
}
$notification_message .= "\n - "
. sprintf(_("Changed assignee from \"%s\" to \"%s\""),
$old_name, $new_name);
}
if ($old_task->private != $task->private) {
$notification_message .= "\n - "
. ($task->private ? _("Turned privacy on") : _("Turned privacy off"));
}
if ($old_task->due != $task->due) {
$notification_message .= "\n - "
. sprintf(_("Changed due date from %s to %s"),
$old_task->due ? Nag::formatDate($old_task->due) : _("no due date"),
$task->due ? Nag::formatDate($task->due) : _("no due date"));
}
if ($old_task->start != $task->start) {
$notification_message .= "\n - "
. sprintf(_("Changed start date from %s to %s"),
$old_task->start ? Nag::formatDate($old_task->start) : _("no start date"),
$task->start ? Nag::formatDate($task->start) : _("no start date"));
}
if ($old_task->alarm != $task->alarm) {
$notification_message .= "\n - "
. sprintf(_("Changed alarm from %s to %s"),
Nag::formatAlarm($old_task->alarm), Nag::formatAlarm($task->alarm));
}
if ($old_task->priority != $task->priority) {
$notification_message .= "\n - "
. sprintf(_("Changed priority from %s to %s"),
$old_task->priority, $task->priority);
}
if ($old_task->estimate != $task->estimate) {
$notification_message .= "\n - "
. sprintf(_("Changed estimate from %s to %s"),
$old_task->estimate, $task->estimate);
}
if ($old_task->completed != $task->completed) {
$notification_message .= "\n - "
. sprintf(_("Changed completion from %s to %s"),
$old_task->completed ? _("completed") : _("not completed"),
$task->completed ? _("completed") : _("not completed"));
}
if ($old_task->desc != $task->desc) {
$notification_message .= "\n - " . _("Changed description");
}
break;
case 'delete':
$subject = _("Task deleted:");
$notification_message =
_("You requested to be notified when tasks are deleted from your task lists.")
. "\n\n"
. _("The task \"%s\" has been deleted from task list \"%s\".");
break;
}
$msg_headers->removeHeader('Subject');
$msg_headers->addHeader('Subject', $subject . ' ' . $task->name);
foreach ($twentyFour as $tf => $dateFormat) {
foreach ($dateFormat as $df => $df_recipients) {
$message = sprintf($notification_message,
$task->name,
$share->get('name'),
$task->due ? strftime($df, $task->due) . ' ' . date($tf ? 'H:i' : 'h:ia', $task->due) : _("no due date"));
if (strlen(trim($task->desc))) {
$message .= "\n\n" . _("Task description:") . "\n\n" . $task->desc;
}
$mime = new MIME_Message();
$body = new MIME_Part('text/plain', String::wrap($message, 76, "\n"), NLS::getCharset());
$mime->addPart($body);
$msg_headers->addMIMEHeaders($mime);
Horde::logMessage(sprintf('Sending event notifications for %s to %s',
$task->name, implode(', ', $df_recipients)),
__FILE__, __LINE__, PEAR_LOG_INFO);
$sent = $mime->send(implode(', ', $df_recipients), $msg_headers,
$mail_driver, $mail_params);
if (is_a($sent, 'PEAR_Error')) {
return $sent;
}
}
}
}
}
/**
* Returns the real name, if available, of a user.
*
* @since Nag 2.2
*/
function getUserName($uid)
{
static $names = array();
if (!isset($names[$uid])) {
require_once 'Horde/Identity.php';
$ident = &Identity::singleton('none', $uid);
$ident->setDefault($ident->getDefault());
$names[$uid] = $ident->getValue('fullname');
if (empty($names[$uid])) {
$names[$uid] = $uid;
}
}
return $names[$uid];
}
/**
* Returns whether a user wants email notifications for a tasklist.
*
* @access private
*
* @todo This method is causing a memory leak somewhere, noticeable if
* importing a large amount of events.
*
* @param string $user A user name.
* @param string $mode The check "mode". If "owner", the method checks
* if the user wants notifications only for
* tasklists he owns. If "read", the method checks
* if the user wants notifications for all
* tasklists he has read access to, or only for
* shown tasklists and the specified tasklist is
* currently shown.
* @param string $tasklist The name of the tasklist if mode is "read".
*
* @return boolean True if the user wants notifications for the tasklist.
*/
function _notificationPref($user, $mode, $tasklist = null)
{
$prefs = &Prefs::singleton($GLOBALS['conf']['prefs']['driver'],
'nag', $user, '', null,
false);
$prefs->retrieve();
$vals = array('lang' => $prefs->getValue('language'),
'tf' => $prefs->getValue('twentyFour'),
'df' => $prefs->getValue('date_format'));
if ($prefs->getValue('task_notification_exclude_self') &&
$user == Auth::getAuth()) {
return false;
}
$notification = $prefs->getValue('task_notification');
switch ($notification) {
case 'owner':
return $mode == 'owner' ? $vals : false;
case 'read':
return $mode == 'read' ? $vals : false;
case 'show':
if ($mode == 'read') {
$display_tasklists = unserialize($prefs->getValue('display_tasklists'));
return in_array($tasklist, $display_tasklists) ? $vals : false;;
}
}
return false;
}
/**
* Comparison function for sorting tasks by priority.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByPriority($a, $b)
{
if ($a->priority == $b->priority) {
return 0;
}
return ($a->priority > $b->priority) ? 1 : -1;
}
/**
* Comparison function for reverse sorting tasks by priority.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByPriority($a, $b)
{
if ($a->priority == $b->priority) {
return 0;
}
return ($a->priority > $b->priority) ? -1 : 1;
}
/**
* Comparison function for sorting tasks by name.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByName($a, $b)
{
return strcasecmp($a->name, $b->name);
}
/**
* Comparison function for reverse sorting tasks by name.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByName($a, $b)
{
return strcasecmp($b->name, $a->name);
}
/**
* Comparison function for sorting tasks by assignee.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByAssignee($a, $b)
{
return strcasecmp($a->assignee, $b->assignee);
}
/**
* Comparison function for reverse sorting tasks by assignee.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByAssignee($a, $b)
{
return strcasecmp($b->assignee, $a->assignee);
}
/**
* Comparison function for sorting tasks by assignee.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByEstimate($a, $b)
{
$a_est = $a->estimation();
$b_est = $b->estimation();
if ($a_est == $b_est) {
return 0;
}
return ($a_est > $b_est) ? 1 : -1;
}
/**
* Comparison function for reverse sorting tasks by name.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByEstimate($a, $b)
{
$a_est = $a->estimation();
$b_est = $b->estimation();
if ($a_est == $b_est) {
return 0;
}
return ($a_est > $b_est) ? -1 : 1;
}
/**
* Comparison function for sorting tasks by category.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByCategory($a, $b)
{
return strcasecmp($a->category ? $a->category : _("Unfiled"),
$b->category ? $b->category : _("Unfiled"));
}
/**
* Comparison function for reverse sorting tasks by category.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByCategory($a, $b)
{
return strcasecmp($b->category ? $b->category : _("Unfiled"),
$a->category ? $a->category : _("Unfiled"));
}
/**
* Comparison function for sorting tasks by due date.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByDue($a, $b)
{
if ($a->due == $b->due) {
return 0;
}
// Treat empty due dates as farthest into the future.
if ($a->due == 0) {
return 1;
}
if ($b->due == 0) {
return -1;
}
return ($a->due > $b->due) ? 1 : -1;
}
/**
* Comparison function for reverse sorting tasks by due date.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater,
* 0 if they are equal.
*/
function _rsortByDue($a, $b)
{
if ($a->due == $b->due) {
return 0;
}
// Treat empty due dates as farthest into the future.
if ($a->due == 0) {
return -1;
}
if ($b->due == 0) {
return 1;
}
return ($a->due < $b->due) ? 1 : -1;
}
/**
* Comparison function for sorting tasks by completion status.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByCompletion($a, $b)
{
if ($a->completed == $b->completed) {
return 0;
}
return ($a->completed > $b->completed) ? -1 : 1;
}
/**
* Comparison function for reverse sorting tasks by completion status.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByCompletion($a, $b)
{
if ($a->completed == $b->completed) {
return 0;
}
return ($a->completed < $b->completed) ? -1 : 1;
}
/**
* Comparison function for sorting tasks by owner.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer 1 if task one is greater, -1 if task two is greater;
* 0 if they are equal.
*/
function _sortByOwner($a, $b)
{
$ashare = $GLOBALS['nag_shares']->getShare($a->tasklist);
$bshare = $GLOBALS['nag_shares']->getShare($b->tasklist);
$aowner = $a->tasklist;
$bowner = $b->tasklist;
if (!is_a($ashare, 'PEAR_Error') && $aowner != $ashare->get('owner')) {
$aowner = $ashare->get('name');
}
if (!is_a($bshare, 'PEAR_Error') && $bowner != $bshare->get('owner')) {
$bowner = $bshare->get('name');
}
return strcasecmp($aowner, $bowner);
}
/**
* Comparison function for reverse sorting tasks by owner.
*
* @param array $a Task one.
* @param array $b Task two.
*
* @return integer -1 if task one is greater, 1 if task two is greater;
* 0 if they are equal.
*/
function _rsortByOwner($a, $b)
{
$ashare = $GLOBALS['nag_shares']->getShare($a->tasklist);
$bshare = $GLOBALS['nag_shares']->getShare($b->tasklist);
$aowner = $a->tasklist;
$bowner = $b->tasklist;
if (!is_a($ashare, 'PEAR_Error') && $aowner != $ashare->get('owner')) {
$aowner = $ashare->get('name');
}
if (!is_a($bshare, 'PEAR_Error') && $bowner != $bshare->get('owner')) {
$bowner = $bshare->get('name');
}
return strcasecmp($bowner, $aowner);
}
}
|