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 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
|
<?php
/**
* @package Horde_Framework
*
* Copyright 1999-2009 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* $Horde: framework/Horde/Horde.php,v 1.489.2.117 2010/03/04 11:51:15 wrobel Exp $
*/
/** Log */
include_once 'Log.php';
/** Util */
include_once 'Horde/Util.php';
/**
* The Horde:: class provides the functionality shared by all Horde
* applications.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jon Parise <jon@horde.org>
* @since Horde 1.3
* @package Horde_Framework
*/
class Horde {
/**
* Logs a message to the global Horde log backend.
*
* @param mixed $message Either a string or a PEAR_Error object.
* @param string $file What file was the log function called from
* (e.g. __FILE__)?
* @param integer $line What line was the log function called from
* (e.g. __LINE__)?
* @param integer $priority The priority of the message. One of:
* <pre>
* PEAR_LOG_EMERG
* PEAR_LOG_ALERT
* PEAR_LOG_CRIT
* PEAR_LOG_ERR
* PEAR_LOG_WARNING
* PEAR_LOG_NOTICE
* PEAR_LOG_INFO
* PEAR_LOG_DEBUG
* </pre>
*/
function logMessage($message, $file, $line, $priority = PEAR_LOG_INFO)
{
$logger = &Horde::getLogger();
if ($logger === false) {
return;
}
if ($priority > $GLOBALS['conf']['log']['priority']) {
return;
}
if (is_a($message, 'PEAR_Error')) {
$userinfo = $message->getUserInfo();
$message = $message->getMessage();
if (!empty($userinfo)) {
if (is_array($userinfo)) {
$old_error = error_reporting(0);
$userinfo = implode(', ', $userinfo);
error_reporting($old_error);
}
$message .= ': ' . $userinfo;
}
} elseif (is_object($message) &&
is_callable(array($message, 'getMessage'))) {
$message = $message->getMessage();
}
$app = isset($GLOBALS['registry']) ? $GLOBALS['registry']->getApp() : 'horde';
$message = '[' . $app . '] ' . $message . ' [pid ' . getmypid() . ' on line ' . $line . ' of "' . $file . '"]';
/* Make sure to log in the system's locale and timezone. */
$locale = setlocale(LC_TIME, 0);
setlocale(LC_TIME, 'C');
$tz = getenv('TZ');
@putenv('TZ');
$logger->log($message, $priority);
/* Restore original locale and timezone. */
setlocale(LC_TIME, $locale);
if ($tz) {
@putenv('TZ=' . $tz);
}
return true;
}
/**
* Get an instantiated instance of the configured logger, if enabled.
* New as of Horde 3.2: getLogger() will fatally exit if a Log object can
* not be instantiated - there is no need to check the return for a
* PEAR_Error anymore.
*
* @return mixed Log object on success, false if disabled.
*/
function &getLogger()
{
global $conf;
static $logger;
if (empty($conf['log']['enabled'])) {
$ret = false;
return $ret;
}
if (isset($logger)) {
return $logger;
}
// Try to make sure that we can log messages somehow.
if (empty($conf['log']) ||
empty($conf['log']['type']) ||
empty($conf['log']['name']) ||
empty($conf['log']['ident']) ||
!isset($conf['log']['params'])) {
Horde::fatal(PEAR::raiseError('Horde is not correctly configured to log error messages. You must configure at least a text file log in horde/config/conf.php.'), __FILE__, __LINE__, false);
}
$logger = Log::singleton($conf['log']['type'],
$conf['log']['name'],
$conf['log']['ident'],
$conf['log']['params']);
if (!is_a($logger, 'Log')) {
Horde::fatal(PEAR::raiseError('An error has occurred. Furthermore, Horde encountered an error attempting to log this error. Please check your Horde logging configuration in horde/config/conf.php.'), __FILE__, __LINE__, false);
}
return $logger;
}
/**
* Destroys any existing session on login and make sure to use a new
* session ID, to avoid session fixation issues. Should be called before
* checking a login.
*/
function getCleanSession()
{
// Make sure to force a completely new session ID and clear all
// session data.
if (version_compare(PHP_VERSION, '4.3.3') !== -1) {
session_regenerate_id(true);
session_unset();
} else {
$old_error = error_reporting(0);
session_destroy();
error_reporting($old_error);
if (Util::extensionExists('posix')) {
$new_session_id = md5(microtime() . posix_getpid());
} else {
$new_session_id = md5(uniqid(mt_rand(), true));
}
session_id($new_session_id);
// Restart the session, including setting up the session handler.
Horde::setupSessionHandler();
error_reporting(0);
session_start();
error_reporting($old_error);
}
/* Reset cookie timeouts, if necessary. */
if (!empty($GLOBALS['conf']['session']['timeout'])) {
$app = $GLOBALS['registry']->getApp();
if (Secret::clearKey($app)) {
Secret::setKey($app);
}
Secret::setKey('auth');
}
}
/**
* Aborts with a fatal error, displaying debug information to the user.
*
* @param mixed $error A PEAR_Error object with debug information or an
* error message.
* @param integer $file The file in which the error occured.
* @param integer $line The line on which the error occured.
* @param boolean $log Log this message via Horde::logMessage()?
*/
function fatal($error, $file, $line, $log = true)
{
include_once 'Horde/Auth.php';
include_once 'Horde/CLI.php';
$admin = class_exists('Auth') && Auth::isAdmin();
$cli = class_exists('Horde_CLI') && Horde_CLI::runningFromCLI();
$errortext = '<h1>' . _("A fatal error has occurred") . '</h1>';
if (is_a($error, 'PEAR_Error')) {
$info = array_merge(array('file' => 'conf.php', 'variable' => '$conf'),
array($error->getUserInfo()));
switch ($error->getCode()) {
case HORDE_ERROR_DRIVER_CONFIG_MISSING:
$message = sprintf(_("No configuration information specified for %s."), $info['name']) . '<br />' .
sprintf(_("The file %s should contain some %s settings."),
$GLOBALS['registry']->get('fileroot') . '/config/' . $info['file'],
sprintf("%s['%s']['params']", $info['variable'], $info['driver']));
break;
case HORDE_ERROR_DRIVER_CONFIG:
$message = sprintf(_("Required \"%s\" not specified in %s configuration."), $info['field'], $info['name']) . '<br />' .
sprintf(_("The file %s should contain a %s setting."),
$GLOBALS['registry']->get('fileroot') . '/config/' . $info['file'],
sprintf("%s['%s']['params']['%s']", $info['variable'], $info['driver'], $info['field']));
break;
default:
$message = $error->getMessage();
break;
}
$errortext .= '<h3>' . htmlspecialchars($message) . '</h3>';
} elseif (is_object($error) && method_exists($error, 'getMessage')) {
$errortext .= '<h3>' . htmlspecialchars($error->getMessage()) . '</h3>';
} elseif (is_string($error)) {
$errortext .= '<h3>' . htmlspecialchars($error) . '</h3>';
}
if ($admin) {
$errortext .= '<p><code>' . sprintf(_("[line %d of %s]"), $line, $file) . '</code></p>';
if (is_object($error)) {
$errortext .= '<h3>' . _("Details:") . '</h3>';
$errortext .= '<h4>' . _("The full error message is logged in Horde's log file, and is shown below only to administrators. Non-administrative users will not see error details.") . '</h4>';
if (extension_loaded('xdebug')) {
$errortext .= '<br />' . print_r($error, true);
} else {
$errortext .= '<p><pre>' . htmlspecialchars(print_r($error, true)) . '</pre></p>';
}
}
} elseif ($log) {
$errortext .= '<h3>' . _("Details have been logged for the administrator.") . '</h3>';
}
// Log the error via Horde::logMessage() if requested.
if ($log) {
Horde::logMessage($error, $file, $line, PEAR_LOG_EMERG);
}
if ($cli) {
echo strip_tags(str_replace(array('<br />', '<p>', '</p>', '<h1>', '</h1>', '<h3>', '</h3>'), "\n", $errortext));
} else {
echo <<< HTML
<html>
<head><title>Horde :: Fatal Error</title></head>
<body style="background:#fff; color:#000">$errortext</body>
</html>
HTML;
}
exit(1);
}
/**
* Adds the javascript code to the output (if output has already started)
* or to the list of script files to include via includeScriptFiles().
*
* @param string $file The full javascript file name.
* @param string $app The application name. Defaults to the current
* application.
* @param boolean $direct Include the file directly without passing it
* through javascript.php
* @param boolean $full Output a full URL
*/
function addScriptFile($file, $app = null, $direct = false, $full = false)
{
$hsf = &Horde_Script_Files::singleton();
$hsf->add($file, $app, $direct, $full);
}
/**
* Includes javascript files that were needed before any headers were sent.
*/
function includeScriptFiles()
{
$hsf = &Horde_Script_Files::singleton();
$hsf->includeFiles();
}
/**
* Provide a list of script files to be included in the current page.
*
* @since Horde 3.2
*
* @var array
*/
function listScriptFiles()
{
$hsf = &Horde_Script_Files::singleton();
return $hsf->listFiles();
}
/**
* Disable auto-loading of the horde.js script.
* Needs to auto-load by default for BC.
*
* @since Horde 3.2
* @todo Remove for Horde 4
*/
function disableAutoloadHordeJS()
{
$hsf = &Horde_Script_Files::singleton();
$hsf->disableAutoloadHordeJS();
}
/**
* Get a token for protecting a form.
*
* @since Horde 3.2
*/
function getRequestToken($slug)
{
require_once 'Horde/Token.php';
$token = Horde_Token::generateId($slug);
$_SESSION['horde_form_secrets'][$token] = time();
return $token;
}
/**
* Check if a token for a form is valid.
*
* @since Horde 3.2
*/
function checkRequestToken($slug, $token)
{
if (empty($_SESSION['horde_form_secrets'][$token])) {
return PEAR::raiseError(_("We cannot verify that this request was really sent by you. It could be a malicious request. If you intended to perform this action, you can retry it now."));
}
if (($_SESSION['horde_form_secrets'][$token] + $GLOBALS['conf']['urls']['token_lifetime'] * 60) < time()) {
return PEAR::raiseError(sprintf(_("This request cannot be completed because the link you followed or the form you submitted was only valid for %s minutes. Please try again now."), $GLOBALS['conf']['urls']['token_lifetime']));
}
return true;
}
/**
* Add a signature + timestamp to a query string and return the signed query
* string.
*
* @since Horde 3.3
*
* @param string $queryString The query string to sign.
* @param integer $now The timestamp at which to sign. Leave blank for
* generating signatures; specify when testing.
*
* @return string The signed query string.
*/
function signQueryString($queryString, $now = null)
{
if (!isset($GLOBALS['conf']['secret_key'])) {
return $queryString;
}
if (is_null($now)) {
$now = time();
}
$queryString .= '&_t=' . $now . '&_h=';
$hmac = Util::uriB64Encode(Util::hmac($queryString, $GLOBALS['conf']['secret_key'], true));
return $queryString . $hmac;
}
/**
* Verify a signature and timestamp on a query string.
*
* @since Horde 3.3
*
* @param string $data The signed query string.
* @param integer $now The current time (can override for testing).
*
* @return boolean Whether or not the string was valid.
*/
function verifySignedQueryString($data, $now = null)
{
if (is_null($now)) {
$now = time();
}
$pos = strrpos($data, '&_h=');
if ($pos === false) {
return false;
}
$pos += 4;
$queryString = substr($data, 0, $pos);
$hmac = substr($data, $pos);
if ($hmac != Util::uriB64Encode(Util::hmac($queryString, $GLOBALS['conf']['secret_key'], true))) {
return false;
}
// String was not tampered with; now validate timestamp
parse_str($queryString, $values);
if ($values['_t'] + $GLOBALS['conf']['urls']['hmac_lifetime'] * 60 < $now) {
return false;
}
return true;
}
/**
* Checks if link should be shown and return the necessary code.
*
* @param string $type Type of link to display
* @param string $app The name of the current Horde application.
* @param boolean $override Override Horde settings?
* @param boolean $referrer Include the current page as the referrer (url=)?
*
* @return string The HTML to create the link.
*/
function getServiceLink($type, $app, $override = false, $referrer = true)
{
if (!Horde::showService($type, $override)) {
return false;
}
switch ($type) {
case 'help':
if ($GLOBALS['browser']->hasFeature('javascript')) {
Horde::addScriptFile('popup.js', 'horde', true);
}
$url = Horde::url($GLOBALS['registry']->get('webroot', 'horde') . '/services/help/', true);
return Util::addParameter($url, 'module', $app);
case 'problem':
return Horde::url($GLOBALS['registry']->get('webroot', 'horde') . '/services/problem.php?return_url=' . urlencode(Horde::selfUrl(true, true, true)));
case 'logout':
return Horde::url(Auth::addLogoutParameters($GLOBALS['registry']->get('webroot', 'horde') . '/login.php', AUTH_REASON_LOGOUT));
case 'login':
return Auth::getLoginScreen('', $referrer ? Horde::selfUrl(true) : null);
case 'options':
global $conf;
if (($conf['prefs']['driver'] != '') && ($conf['prefs']['driver'] != 'none')) {
return Horde::url($GLOBALS['registry']->get('webroot', 'horde') . '/services/prefs.php?app=' . $app);
}
break;
}
return false;
}
/**
* @param string $type The type of link.
* @param boolean $override Override Horde settings?
*
* @return boolean True if the link is to be shown.
*/
function showService($type, $override = false)
{
global $conf;
if (empty($conf['menu']['links'][$type])) {
return false;
}
switch ($conf['menu']['links'][$type]) {
case 'all':
return true;
case 'never':
return $override;
case 'authenticated':
return $override || (bool)Auth::getAuth();
default:
return $override;
}
}
/**
* Loads global and vhost specific configuration files.
*
* @since Horde 3.2
*
* @param string $config_file The name of the configuration file.
* @param string|array $var_names The name(s) of the variable(s) that
* is/are defined in the configuration
* file.
* @param string $app The application. Defaults to the current
* application.
* @param boolean $show_output If true, the contents of the requested
* config file are simply output instead of
* loaded into a variable.
*
* @return mixed The value of $var_names, in a compact()'ed array if
* $var_names is an array.
*/
function loadConfiguration($config_file, $var_names = null, $app = null,
$show_output = false)
{
global $registry;
if (is_null($app)) {
$app = $registry->getApp();
}
$output = '';
// Load global configuration file.
if ($app == 'horde' && defined('HORDE_BASE')) {
$config_dir = HORDE_BASE . '/config/';
} else {
$config_dir = $registry->get('fileroot', $app) . '/config/';
}
// Track if we've included some version (main or vhosted) of
// the config file.
$was_included = false;
if (file_exists($config_dir . $config_file)) {
ob_start();
// If we are not exporting variables located in the configuration
// file, or we are not capturing the output, then there is no
// need to load the configuration file more than once.
if (is_null($var_names) && !$show_output) {
$success = include_once $config_dir . $config_file;
} else {
$success = include $config_dir . $config_file;
}
$output = ob_get_clean();
if (!empty($output) && !$show_output) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s": ', $config_dir . $config_file) . strip_tags($output));
}
if (!$success) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s".', $config_dir . $config_file));
}
$was_included = true;
}
// Load global configuration stanzas in .d directory
$directory = preg_replace('/\.php$/', '.d', $config_dir . $config_file);
if (file_exists($directory) && is_dir($directory)) {
$sub_files = glob("$directory/*.php");
if ($sub_files) {
foreach ($sub_files as $sub_file) {
ob_start();
$success = (is_null($var_names) && !$show_output)
? include_once $sub_file
: include $sub_file;
$output = ob_get_clean();
if (!empty($output) && !$show_output) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s": ', $sub_file) . strip_tags($output));
}
if (!$success) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s".', $sub_file));
}
}
}
}
// Load vhost configuration file.
if (!empty($conf['vhosts']) || !empty($GLOBALS['conf']['vhosts'])) {
$server_name = isset($GLOBALS['conf']) ? $GLOBALS['conf']['server']['name'] : $conf['server']['name'];
$config_file = substr($config_file, 0, -4) . '-' . $server_name . '.php';
if (file_exists($config_dir . $config_file)) {
ob_start();
// See above.
if (is_null($var_names) && !$show_output) {
$success = include_once $config_dir . $config_file;
} else {
$success = include $config_dir . $config_file;
}
$output = ob_get_clean();
if (!empty($output) && !$show_output) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s": ', $config_dir . $config_file) . strip_tags($output));
}
if (!$success) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s".', $config_dir . $config_file));
}
$was_included = true;
}
}
// Return an error if neither main or vhosted versions of the
// config file existed.
if (!$was_included) {
return PEAR::raiseError(sprintf('Failed to import configuration file "%s".', $config_dir . $config_file));
}
if ($show_output) {
echo $output;
}
if (is_null($var_names)) {
return;
}
if (is_array($var_names)) {
return compact($var_names);
} else if (isset($$var_names)) {
return $$var_names;
} else {
return array();
}
}
/**
* Returns the driver parameters for the specified backend.
*
* @param mixed $backend The backend system (e.g. 'prefs', 'categories',
* 'contacts') being used.
* The used configuration array will be
* $conf[$backend]. If an array gets passed, it will
* be $conf[$key1][$key2].
* @param string $type The type of driver.
*
* @return array The connection parameters.
*/
function getDriverConfig($backend, $type = 'sql')
{
global $conf;
$c = null;
if (is_array($backend)) {
require_once 'Horde/Array.php';
$c = Horde_Array::getElement($conf, $backend);
} elseif (isset($conf[$backend])) {
$c = $conf[$backend];
}
if (!is_null($c) && isset($c['params'])) {
$c['params']['umask'] = $conf['umask'];
if (isset($conf[$type])) {
return array_merge($conf[$type], $c['params']);
} else {
return $c['params'];
}
}
return isset($conf[$type]) ? $conf[$type] : array();
}
/**
* Returns the VFS driver parameters for the specified backend.
*
* @param string $name The VFS system name (e.g. 'images', 'documents')
* being used.
*
* @return array A hash with the VFS parameters; the VFS driver in 'type'
* and the connection parameters in 'params'.
*/
function getVFSConfig($name)
{
global $conf;
if (!isset($conf[$name]['type'])) {
return PEAR::raiseError(_("You must configure a VFS backend."));
}
if ($conf[$name]['type'] == 'horde') {
$vfs = $conf['vfs'];
} else {
$vfs = $conf[$name];
}
if ($vfs['type'] == 'sql') {
$vfs['params'] = Horde::getDriverConfig($name, 'sql');
}
return $vfs;
}
/**
* Return the driver and parameters for the current mailer configuration.
*
* @since Horde 3.3.5
*
* @return array Array with driver name and parameter hash.
*/
function getMailerConfig()
{
$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');
}
return array($mail_driver, $mail_params);
}
/**
* Checks if all necessary parameters for a driver configuration
* are set and throws a fatal error with a detailed explanation
* how to fix this, if something is missing.
*
* @param array $params The configuration array with all parameters.
* @param string $driver The key name (in the configuration array) of
* the driver.
* @param array $fields An array with mandatory parameter names for
* this driver.
* @param string $name The clear text name of the driver. If not
* specified, the application name will be used.
* @param string $file The configuration file that should contain
* these settings.
* @param string $variable The name of the configuration variable.
*/
function assertDriverConfig($params, $driver, $fields, $name = null,
$file = 'conf.php', $variable = '$conf')
{
global $registry;
// Don't generate a fatal error if we fail during or before
// Registry instantiation.
if (is_null($name)) {
$name = isset($registry) ? $registry->getApp() : '[unknown]';
}
$fileroot = isset($registry) ? $registry->get('fileroot') : '';
if (!is_array($params) || !count($params)) {
Horde::fatal(PEAR::raiseError(
sprintf(_("No configuration information specified for %s."), $name) . "\n\n" .
sprintf(_("The file %s should contain some %s settings."),
$fileroot . '/config/' . $file,
sprintf("%s['%s']['params']", $variable, $driver))),
__FILE__, __LINE__);
}
foreach ($fields as $field) {
if (!isset($params[$field])) {
Horde::fatal(PEAR::raiseError(
sprintf(_("Required \"%s\" not specified in %s configuration."), $field, $name) . "\n\n" .
sprintf(_("The file %s should contain a %s setting."),
$fileroot . '/config/' . $file,
sprintf("%s['%s']['params']['%s']", $variable, $driver, $field))),
__FILE__, __LINE__);
}
}
}
/**
* Returns a session-id-ified version of $uri.
* If a full URL is requested, all parameter separators get converted to
* "&", otherwise to "&".
*
* @param string $uri The URI to be modified.
* @param boolean $full Generate a full (http://server/path/)
* URL.
* @param integer $append_session 0 = only if needed, 1 = always, -1 =
* never.
* @param boolean $force_ssl Ignore $conf['use_ssl'] and force
* creation of a SSL URL?
*
* @return string The URL with the session id appended (if needed).
*/
function url($uri, $full = false, $append_session = 0, $force_ssl = false)
{
if ($force_ssl) {
$full = true;
}
if ($full) {
global $conf, $registry, $browser;
/* Store connection parameters in local variables. */
$server_name = $conf['server']['name'];
$server_port = $conf['server']['port'];
$protocol = 'http';
if ($conf['use_ssl'] == 1) {
$protocol = 'https';
} elseif ($conf['use_ssl'] == 2 &&
$browser->usingSSLConnection()) {
$protocol = 'https';
} elseif ($conf['use_ssl'] == 3) {
$server_port = '';
if ($force_ssl) {
$protocol = 'https';
}
}
/* If using non-standard ports, add the port to the URL. */
if (!empty($server_port) &&
((($protocol == 'http') && ($server_port != 80)) ||
(($protocol == 'https') && ($server_port != 443)))) {
$server_name .= ':' . $server_port;
}
/* Store the webroot in a local variable. */
$webroot = $registry->get('webroot');
$url = $protocol . '://' . $server_name;
if (preg_match('|^([\w+-]{1,20})://|', $webroot)) {
/* Don't prepend to webroot if it's already absolute. */
$url = '';
}
if (substr($uri, 0, 1) != '/') {
/* Simple case for http:// absolute webroots. */
if (preg_match('|^([\w+-]{1,20})://|', $uri)) {
$url = $uri;
} elseif (substr($webroot, -1) == '/') {
$url .= $webroot . $uri;
} else {
$url .= $webroot . '/' . $uri;
}
} else {
$url .= $uri;
}
} else {
$url = $uri;
if (!empty($_SERVER['HTTP_HOST'])) {
// Don't generate absolute URLs if we don't have to.
if (preg_match('|^([\w+-]{1,20}://' . preg_quote($_SERVER['HTTP_HOST'], '|') . ')/|', $url, $matches)) {
$url = substr($url, strlen($matches[1]));
}
}
}
if (empty($GLOBALS['conf']['session']['use_only_cookies']) &&
(($append_session == 1) ||
(($append_session == 0) &&
!isset($_COOKIE[session_name()])))) {
$url = Util::addParameter($url, session_name(), session_id());
}
if ($full) {
/* We need to run the replace twice, because we only catch every
* second match. */
return preg_replace(array('/(=?.*?)&(.*?=)/',
'/(=?.*?)&(.*?=)/'),
'$1&$2', $url);
} elseif (preg_match('/=.*&.*=/', $url)) {
return $url;
} else {
return htmlentities($url);
}
}
/**
* Returns a session-id-ified version of $uri, using the current
* application's webroot setting.
*
* @param string $uri The URI to be modified.
* @param boolean $full Generate a full (http://server/path/)
* URL.
* @param integer $append_session 0 = only if needed, 1 = always, -1 =
* never.
*
* @return string The url with the session id appended.
*/
function applicationUrl($uri, $full = false, $append_session = 0)
{
if ($full) {
return Horde::url($uri, $full, $append_session);
}
if (substr($uri, 0, 1) != '/') {
$webroot = $GLOBALS['registry']->get('webroot');
if (substr($webroot, -1) != '/') {
$webroot .= '/';
}
$uri = $webroot . $uri;
}
return Horde::url($uri, $full, $append_session);
}
/**
* Returns an external link passed through the dereferrer to strip session
* IDs from the referrer.
*
* @param string $url The external URL to link to.
* @param boolean $tag If true, a complete <a> tag is returned, only the
* url otherwise.
*
* @return string The link to the dereferrer script.
*/
function externalUrl($url, $tag = false)
{
if (!isset($_GET[session_name()]) ||
String::substr($url, 0, 1) == '#' ||
String::substr($url, 0, 7) == 'mailto:') {
$ext = $url;
} else {
$ext = Horde::url($GLOBALS['registry']->get('webroot', 'horde') .
'/services/go.php', true, -1);
/* We must make sure there are no &'s in the URL. */
$url = preg_replace(array('/(=?.*?)&(.*?=)/', '/(=?.*?)&(.*?=)/'), '$1&$2', $url);
$ext .= '?' . Horde::signQueryString('url=' . urlencode($url));
}
if ($tag) {
$ext = Horde::link($ext, $url, '', '_blank');
}
return $ext;
}
/**
* Returns a URL to be used for downloading, that takes into account any
* special browser quirks (i.e. IE's broken filename handling).
*
* @param string $filename The filename of the download data.
* @param array $params Any additional parameters needed.
* @param string $url The URL to alter. If none passed in, will use
* the file 'view.php' located in the current
* module's base directory.
*
* @return string The download URL.
*/
function downloadUrl($filename, $params = array(), $url = null)
{
global $browser;
$horde_url = false;
if (is_null($url)) {
global $registry;
$url = Util::addParameter(Horde::url($registry->get('webroot', 'horde') . '/services/download/'), 'module', $registry->getApp());
$horde_url = true;
}
/* Add parameters. */
if (!is_null($params)) {
$url = Util::addParameter($url, $params);
}
/* If we are using the default Horde download link, add the
* filename to the end of the URL. Although not necessary for
* many browsers, this should allow every browser to download
* correctly. */
if ($horde_url) {
$url = Util::addParameter($url, 'fn', '/' . rawurlencode($filename));
} elseif ($browser->hasQuirk('break_disposition_filename')) {
/* Some browsers will only obtain the filename correctly
* if the extension is the last argument in the query
* string and rest of the filename appears in the
* PATH_INFO element. */
$filename = rawurlencode($filename);
/* Get the webserver ID. */
$server = Horde::webServerID();
/* Get the name and extension of the file. Apache 2 does
* NOT support PATH_INFO information being passed to the
* PHP module by default, so disable that
* functionality. */
if (($server != 'apache2')) {
if (($pos = strrpos($filename, '.'))) {
$name = '/' . preg_replace('/\./', '%2E', substr($filename, 0, $pos));
$ext = substr($filename, $pos);
} else {
$name = '/' . $filename;
$ext = '';
}
/* Enter the PATH_INFO information. */
if (($pos = strpos($url, '?'))) {
$url = substr($url, 0, $pos) . $name . substr($url, $pos);
} else {
$url .= $name;
}
}
/* Append the extension, if it exists. */
if (($server == 'apache2') || !empty($ext)) {
$url = Util::addParameter($url, 'fn_ext', '/' . $filename);
}
}
return $url;
}
/**
* Returns an anchor tag with the relevant parameters
*
* @param string $url The full URL to be linked to.
* @param string $title The link title/description.
* @param string $class The CSS class of the link.
* @param string $target The window target to point to.
* @param string $onclick JavaScript action for the 'onclick' event.
* @param string $title2 The link title (tooltip) (deprecated - just
* use $title).
* @param string $accesskey The access key to use.
* @param array $attributes Any other name/value pairs to add to the <a>
* tag.
* @param boolean $escape Whether to escape special characters in the
* title attribute.
*
* @return string The full <a href> tag.
*/
function link($url = '', $title = '', $class = '', $target = '',
$onclick = '', $title2 = '', $accesskey = '',
$attributes = array(), $escape = true)
{
static $charset;
if (!isset($charset)) {
$charset = NLS::getCharset();
}
if (!empty($title2)) {
$title = $title2;
}
$ret = '<a';
if (!empty($url)) {
$ret .= " href=\"$url\"";
}
if (!empty($onclick)) {
$ret .= " onclick=\"$onclick\"";
}
if (!empty($class)) {
$ret .= " class=\"$class\"";
}
if (!empty($target)) {
$ret .= " target=\"$target\"";
}
if (!empty($title)) {
if ($escape) {
$old_error = error_reporting(0);
$title = str_replace(
array("\r", "\n"), '',
htmlspecialchars(
nl2br(htmlspecialchars($title, ENT_QUOTES, $charset)),
ENT_QUOTES, $charset));
error_reporting($old_error);
}
$ret .= ' title="' . $title . '"';
}
if (!empty($accesskey)) {
$ret .= ' accesskey="' . htmlspecialchars($accesskey) . '"';
}
foreach ($attributes as $name => $value) {
$ret .= ' ' . htmlspecialchars($name) . '="'
. htmlspecialchars($value) . '"';
}
return "$ret>";
}
/**
* Uses DOM Tooltips to display the 'title' attribute for
* Horde::link() calls.
*
* @param string $url The full URL to be linked to
* @param string $status The JavaScript mouse-over string
* @param string $class The CSS class of the link
* @param string $target The window target to point to.
* @param string $onclick JavaScript action for the 'onclick' event.
* @param string $title The link title (tooltip).
* @param string $accesskey The access key to use.
* @param array $attributes Any other name/value pairs to add to the <a>
* tag.
*
* @return string The full <a href> tag.
*/
function linkTooltip($url, $status = '', $class = '', $target = '',
$onclick = '', $title = '', $accesskey = '',
$attributes = array())
{
static $charset;
if (!isset($charset)) {
$charset = NLS::getCharset();
}
if (!empty($title)) {
$old_error = error_reporting(0);
$title = '<pre>' . preg_replace(array('/\n/', '/((?<!<br)\s{1,}(?<!\/>))/em', '/<br \/><br \/>/', '/<br \/>/'), array('', 'str_repeat(" ", strlen("$1"))', '<br /> <br />', '<br />'), nl2br(htmlspecialchars(htmlspecialchars($title, ENT_QUOTES, $charset), ENT_QUOTES, $charset))) . '</pre>';
error_reporting($old_error);
}
return Horde::link($url, $title, $class, $target, $onclick, null, $accesskey, $attributes, false);
}
/**
* Returns an anchor sequence with the relevant parameters for a widget
* with accesskey and text.
*
* @access public
*
* @param string $url The full URL to be linked to.
* @param string $title The link title/description.
* @param string $class The CSS class of the link
* @param string $target The window target to point to.
* @param string $onclick JavaScript action for the 'onclick' event.
* @param string $title2 The link title (tooltip) (deprecated - just use
* $title).
* @param boolean $nocheck Don't check if the access key already has been
* used. Defaults to false (= check).
*
* @return string The full <a href>Title</a> sequence.
*/
function widget($url, $title = '', $class = 'widget', $target = '',
$onclick = '', $title2 = '', $nocheck = false)
{
if (!empty($title2)) {
$title = $title2;
}
$ak = Horde::getAccessKey($title, $nocheck);
return Horde::link($url, '', $class, $target, $onclick, '', $ak) . Horde::highlightAccessKey($title, $ak) . '</a>';
}
/**
* Returns a session-id-ified version of $SCRIPT_NAME resp. $PHP_SELF.
*
* @param boolean $script_params Include script parameters like
* QUERY_STRING and PATH_INFO?
* @param boolean $nocache Include a nocache parameter in the URL?
* @param boolean $full Return a full URL?
* @param boolean $force_ssl Ignore $conf['use_ssl'] and force creation
* of a SSL URL?
*
* @return string The requested URI.
*/
function selfUrl($script_params = false, $nocache = true, $full = false,
$force_ssl = false)
{
if (!strncmp(PHP_SAPI, 'cgi', 3)) {
// When using CGI PHP, SCRIPT_NAME may contain the path to
// the PHP binary instead of the script being run; use
// PHP_SELF instead.
$url = $_SERVER['PHP_SELF'];
} else {
$url = isset($_SERVER['SCRIPT_NAME']) ?
$_SERVER['SCRIPT_NAME'] :
$_SERVER['PHP_SELF'];
}
if ($script_params) {
if (!empty($_SERVER['PATH_INFO'])) {
$url .= $_SERVER['PATH_INFO'];
}
if (!empty($_SERVER['QUERY_STRING'])) {
$url .= '?' . $_SERVER['QUERY_STRING'];
}
}
$url = Horde::url($url, $full, 0, $force_ssl);
if ($nocache) {
return Util::nocacheUrl($url, !$full);
} else {
return $url;
}
}
/**
* Constructs a correctly-pathed link to an image.
*
* @param string $src The image file.
* @param string $alt Text describing the image.
* @param mixed $attr Any additional attributes for the image tag. Can be
* a pre-built string or an array of key/value pairs
* that will be assembled and html-encoded.
* @param string $dir The root graphics directory.
*
* @return string The full image tag.
*/
function img($src, $alt = '', $attr = '', $dir = null)
{
static $charset;
if (!isset($charset)) {
$charset = NLS::getCharset();
}
/* If browser does not support images, simply return the ALT text. */
if (!$GLOBALS['browser']->hasFeature('images')) {
$old_error = error_reporting(0);
$res = htmlspecialchars($alt, ENT_COMPAT, $charset);
error_reporting($old_error);
return $res;
}
/* If no directory has been specified, get it from the registry. */
if ($dir === null) {
global $registry;
$dir = $registry->getImageDir();
}
/* If a directory has been provided, prepend it to the image source. */
if (!empty($dir)) {
$src = $dir . '/' . $src;
}
/* Build all of the tag attributes. */
$attributes = array('src' => $src,
'alt' => $alt);
if (is_array($attr)) {
$attributes = array_merge($attributes, $attr);
}
if (empty($attributes['title'])) {
$attributes['title'] = '';
}
$img = '<img';
$old_error = error_reporting(0);
foreach ($attributes as $attribute => $value) {
$img .= ' ' . $attribute . '="' . ($attribute == 'src' ? $value : htmlspecialchars($value, ENT_COMPAT, $charset)) . '"';
}
error_reporting($old_error);
/* If the user supplied a pre-built string of attributes, add that. */
if (is_string($attr) && !empty($attr)) {
$img .= ' ' . $attr;
}
/* Return the closed image tag. */
return $img . ' />';
}
/**
* Determines the location of the system temporary directory. If a specific
* setting cannot be found, it defaults to /tmp.
*
* @return string A directory name that can be used for temp files.
* Returns false if one could not be found.
*/
function getTempDir()
{
global $conf;
/* If one has been specifically set, then use that */
if (!empty($conf['tmpdir'])) {
$tmp = $conf['tmpdir'];
}
/* Next, try Util::getTempDir(). */
if (empty($tmp)) {
$tmp = Util::getTempDir();
}
/* If it is still empty, we have failed, so return false;
* otherwise return the directory determined. */
return empty($tmp) ? false : $tmp;
}
/**
* Creates a temporary filename for the lifetime of the script, and
* (optionally) registers it to be deleted at request shutdown.
*
* @param string $prefix Prefix to make the temporary name more
* recognizable.
* @param boolean $delete Delete the file at the end of the request?
* @param string $dir Directory to create the temporary file in.
* @param boolean $secure If deleting file, should we securely delete the
* file?
*
* @return string Returns the full path-name to the temporary file or
* false if a temporary file could not be created.
*/
function getTempFile($prefix = 'Horde', $delete = true, $dir = '',
$secure = false)
{
if (empty($dir) || !is_dir($dir)) {
$dir = Horde::getTempDir();
}
return Util::getTempFile($prefix, $delete, $dir, $secure);
}
/**
* Starts output compression, if requested.
*/
function compressOutput()
{
static $started;
if (isset($started)) {
return;
}
/* Compress output if requested and possible. */
if ($GLOBALS['conf']['compress_pages'] &&
!$GLOBALS['browser']->hasQuirk('buggy_compression') &&
!(bool)ini_get('zlib.output_compression') &&
!(bool)ini_get('zend_accelerator.compress_all') &&
ini_get('output_handler') != 'ob_gzhandler') {
if (ob_get_level()) {
ob_end_clean();
}
ob_start('ob_gzhandler');
}
$started = true;
}
/**
* Determines if output compression can be used.
*
* @return boolean True if output compression can be used, false if not.
*/
function allowOutputCompression()
{
require_once 'Horde/Browser.php';
$browser = &Browser::singleton();
/* Turn off compression for buggy browsers. */
if ($browser->hasQuirk('buggy_compression')) {
return false;
}
return (ini_get('zlib.output_compression') == '' &&
ini_get('zend_accelerator.compress_all') == '' &&
ini_get('output_handler') != 'ob_gzhandler');
}
/**
* Returns the Web server being used.
* PHP string list built from the PHP 'configure' script.
*
* @return string A web server identification string.
* <pre>
* 'aolserver' = AOL Server
* 'apache1' = Apache 1.x
* 'apache2' = Apache 2.x
* 'caudium' = Caudium
* 'cgi' = Unknown server - PHP built as CGI program
* 'cli' = Command Line Interface build
* 'embed' = Embedded PHP
* 'isapi' = Zeus ISAPI
* 'milter' = Milter
* 'nsapi' = NSAPI
* 'phttpd' = PHTTPD
* 'pi3web' = Pi3Web
* 'roxen' = Roxen/Pike
* 'servlet' = Servlet
* 'thttpd' = thttpd
* 'tux' = Tux
* 'webjames' = Webjames
* </pre>
*/
function webServerID()
{
if (PHP_SAPI == 'apache') {
return 'apache1';
} elseif ((PHP_SAPI == 'apache2filter') ||
(PHP_SAPI == 'apache2handler')) {
return 'apache2';
} else {
return PHP_SAPI;
}
}
/**
* Returns the <link> tags for the CSS stylesheets.
*
* @param string|array $app The Horde application(s).
* @param mixed $theme The theme to use; specify an empty value to
* retrieve the theme from user preferences, and
* false for no theme.
* @param boolean $inherit Inherit Horde-wide CSS?
*
* @return string <link> tags for CSS stylesheets.
*/
function stylesheetLink($apps = null, $theme = '', $inherit = true)
{
$css = Horde::getStylesheets($apps, $theme, $inherit);
$html = '';
foreach ($css as $css_link) {
$html .= '<link href="' . $css_link['u'] . '" rel="stylesheet" type="text/css" />' . "\n";
}
return $html;
}
/**
* Return the list of base stylesheets to display.
*
* @since Horde 3.2
*
* @param string|array $app The Horde application(s).
* @param mixed $theme The theme to use; specify an empty value to
* retrieve the theme from user preferences, and
* false for no theme.
* @param boolean $inherit Inherit Horde-wide CSS?
*
* @return array
*/
function getStylesheets($apps = null, $theme = '', $inherit = true)
{
if ($theme === '' && isset($GLOBALS['prefs'])) {
$theme = $GLOBALS['prefs']->getValue('theme');
}
$css = array();
$rtl = isset($GLOBALS['nls']['rtl'][$GLOBALS['language']]);
if (!is_array($apps)) {
$apps = is_null($apps) ? array() : array($apps);
}
if ($inherit) {
$key = array_search('horde', $apps);
if ($key !== false) {
unset($apps[$key]);
}
array_unshift($apps, 'horde');
}
/* Collect browser specific stylesheets if needed. */
$browser_css = array();
if ($GLOBALS['browser']->isBrowser('msie')) {
$ie_major = $GLOBALS['browser']->getMajor();
if ($ie_major == 7) {
$browser_css[] = 'ie7.css';
} elseif ($ie_major < 7) {
$browser_css[] = 'ie6_or_less.css';
if ($GLOBALS['browser']->getPlatform() == 'mac') {
$browser_css[] = 'ie5mac.css';
}
}
}
if ($GLOBALS['browser']->isBrowser('opera')) {
$browser_css[] = 'opera.css';
}
if ($GLOBALS['browser']->isBrowser('mozilla') &&
$GLOBALS['browser']->getMajor() >= 5 &&
preg_match('/rv:(.*)\)/', $GLOBALS['browser']->getAgentString(), $revision) &&
$revision[1] <= 1.4) {
$browser_css[] = 'moz14.css';
}
if (strpos(strtolower($GLOBALS['browser']->getAgentString()), 'safari') !== false) {
$browser_css[] = 'safari.css';
}
foreach ($apps as $app) {
$themes_fs = $GLOBALS['registry']->get('themesfs', $app);
$themes_uri = Horde::url($GLOBALS['registry']->get('themesuri', $app), false, -1);
$css[] = array('u' => $themes_uri . '/screen.css', 'f' => $themes_fs . '/screen.css');
if (!empty($theme) &&
file_exists($themes_fs . '/' . $theme . '/screen.css')) {
$css[] = array('u' => $themes_uri . '/' . $theme . '/screen.css', 'f' => $themes_fs . '/' . $theme . '/screen.css');
}
if ($rtl) {
$css[] = array('u' => $themes_uri . '/rtl.css', 'f' => $themes_fs . '/rtl.css');
if (!empty($theme) &&
file_exists($themes_fs . '/' . $theme . '/rtl.css')) {
$css[] = array('u' => $themes_uri . '/' . $theme . '/rtl.css', 'f' => $themes_fs . '/' . $theme . '/rtl.css');
}
}
foreach ($browser_css as $browser) {
if (file_exists($themes_fs . '/' . $browser)) {
$css[] = array('u' => $themes_uri . '/' . $browser, 'f' => $themes_fs . '/' . $browser);
}
if (!empty($theme) &&
file_exists($themes_fs . '/' . $theme . '/' . $browser)) {
$css[] = array('u' => $themes_uri . '/' . $theme . '/' . $browser, 'f' => $themes_fs . '/' . $theme . '/' . $browser);
}
}
}
return $css;
}
/**
* Sets a custom session handler up, if there is one.
* If the global variable 'session_cache_limiter' is defined, its value
* will override the cache limiter setting found in the configuration
* file.
*/
function setupSessionHandler()
{
global $conf;
ini_set('url_rewriter.tags', 0);
if (!empty($conf['session']['use_only_cookies'])) {
ini_set('session.use_only_cookies', 1);
if (!empty($conf['cookie']['domain']) &&
strpos($conf['server']['name'], '.') === false) {
Horde::fatal('Session cookies will not work without a FQDN and with a non-empty cookie domain. Either use a fully qualified domain name like "http://www.example.com" instead of "http://example" only, or set the cookie domain in the Horde configuration to an empty value, or enable non-cookie (url-based) sessions in the Horde configuration.', __FILE__, __LINE__);
}
}
session_set_cookie_params($conf['session']['timeout'],
$conf['cookie']['path'], $conf['cookie']['domain'], $conf['use_ssl'] == 1 ? 1 : 0);
session_cache_limiter(Util::nonInputVar('session_cache_limiter', $conf['session']['cache_limiter']));
session_name(urlencode($conf['session']['name']));
$type = !empty($conf['sessionhandler']['type']) ? $conf['sessionhandler']['type'] : 'none';
if ($type == 'external') {
$calls = $conf['sessionhandler']['params'];
session_set_save_handler($calls['open'],
$calls['close'],
$calls['read'],
$calls['write'],
$calls['destroy'],
$calls['gc']);
} elseif ($type != 'none') {
require_once 'Horde/SessionHandler.php';
$sh = &SessionHandler::singleton($conf['sessionhandler']['type'], array_merge(Horde::getDriverConfig('sessionhandler', $conf['sessionhandler']['type']), array('memcache' => !empty($conf['sessionhandler']['memcache']))));
if (is_a($sh, 'PEAR_Error')) {
Horde::fatal(PEAR::raiseError('Horde is unable to correctly start the custom session handler.'), __FILE__, __LINE__, false);
} else {
ini_set('session.save_handler', 'user');
session_set_save_handler(array(&$sh, 'open'),
array(&$sh, 'close'),
array(&$sh, 'read'),
array(&$sh, 'write'),
array(&$sh, 'destroy'),
array(&$sh, 'gc'));
}
}
}
/**
* Returns an un-used access key from the label given.
*
* @param string $label The label to choose an access key from.
* @param boolean $nocheck Don't check if the access key already has been
* used?
*
* @return string A single lower case character access key or empty
* string if none can be found
*/
function getAccessKey($label, $nocheck = false, $shutdown = false)
{
/* The access keys already used in this page */
static $_used = array();
/* The labels already used in this page */
static $_labels = array();
/* Shutdown call for translators? */
if ($shutdown) {
if (!count($_labels)) {
return;
}
$script = basename($_SERVER['PHP_SELF']);
$labels = array_keys($_labels);
sort($labels);
$used = array_keys($_used);
sort($used);
$remaining = str_replace($used, array(), 'abcdefghijklmnopqrstuvwxyz');
Horde::logMessage('Access key information for ' . $script, __FILE__, __LINE__);
Horde::logMessage('Used labels: ' . implode(',', $labels), __FILE__, __LINE__);
Horde::logMessage('Used keys: ' . implode('', $used), __FILE__, __LINE__);
Horde::logMessage('Free keys: ' . $remaining, __FILE__, __LINE__);
return;
}
/* Use access keys at all? */
static $notsupported;
if (!isset($notsupported)) {
$notsupported = !$GLOBALS['browser']->hasFeature('accesskey') ||
!$GLOBALS['prefs']->getValue('widget_accesskey');
}
if ($notsupported || !preg_match('/_([A-Za-z])/', $label, $match)) {
return '';
}
$key = $match[1];
/* Has this key already been used? */
if (isset($_used[strtolower($key)]) &&
!($nocheck && isset($_labels[$label]))) {
return '';
}
/* Save key and label. */
$_used[strtolower($key)] = true;
$_labels[$label] = true;
return $key;
}
/**
* Strips an access key from a label.
* For multibyte charset strings the access key gets removed completely,
* otherwise only the underscore gets removed.
*
* @param string $label The label containing an access key.
*
* @return string The label with the access key being stripped.
*/
function stripAccessKey($label)
{
if (!isset($GLOBALS['nls'])) {
Horde::loadConfiguration('nls.php', null, 'horde');
}
$multibyte = isset($GLOBALS['nls']['multibyte'][NLS::getCharset(true)]);
return preg_replace('/_([A-Za-z])/',
$multibyte && preg_match('/[\x80-\xff]/', $label) ? '' : '\1',
$label);
}
/**
* Highlights an access key in a label.
*
* @param string $label The label to highlight the access key in.
* @param string $accessKey The access key to highlight.
*
* @return string The HTML version of the label with the access key
* highlighted.
*/
function highlightAccessKey($label, $accessKey)
{
$stripped_label = Horde::stripAccessKey($label);
if (empty($accessKey)) {
return $stripped_label;
}
if (isset($GLOBALS['nls']['multibyte'][NLS::getCharset(true)])) {
/* Prefix parenthesis with the UTF-8 representation of the LRO
* (Left-to-Right-Override) Unicode codepoint U+202D. */
$prefix = NLS::getCharset() == 'UTF-8' ? "\xe2\x80\xad" : '';
return $stripped_label . $prefix . '(<span class="accessKey">'
. strtoupper($accessKey) . '</span>' . ')';
} else {
return str_replace('_' . $accessKey, '<span class="accessKey">' . $accessKey . '</span>', $label);
}
}
/**
* Returns the appropriate "accesskey" and "title" attributes for an HTML
* tag and the given label.
*
* @param string $label The title of an HTML element
* @param boolean $nocheck Don't check if the access key already has been
* used?
*
* @return string The title, and if appropriate, the accesskey attributes
* for the element.
*/
function getAccessKeyAndTitle($label, $nocheck = false)
{
$ak = Horde::getAccessKey($label, $nocheck);
$attributes = 'title="' . Horde::stripAccessKey($label);
if (!empty($ak)) {
$attributes .= sprintf(_(" (Accesskey %s)"), $ak);
$attributes .= '" accesskey="' . $ak;
}
return $attributes . '"';
}
/**
* Returns a label element including an access key for usage in conjuction
* with a form field. User preferences regarding access keys are respected.
*
* @param string $for The form field's id attribute.
* @param string $label The label text.
* @param string $ak The access key to use. If null a new access key
* will be generated.
*
* @return string The html code for the label element.
*/
function label($for, $label, $ak = null)
{
if ($ak === null) {
$ak = Horde::getAccessKey($label, 1);
}
$label = Horde::highlightAccessKey($label, $ak);
return sprintf('<label for="%s"%s>%s</label>',
$for,
!empty($ak) ? ' accesskey="' . $ak . '"' : '',
$label);
}
/**
* Redirects to the main Horde login page on authentication failure.
*/
function authenticationFailureRedirect()
{
require_once 'Horde/CLI.php';
if (Horde_CLI::runningFromCLI()) {
$cli = &Horde_CLI::singleton();
$cli->fatal(_("You are not authenticated."));
}
$url = $GLOBALS['registry']->get('webroot', 'horde') . '/login.php';
$url = Util::addParameter($url, array('url' => Horde::selfUrl(true), 'nosidebar' => 1), null, false);
$url = Auth::addLogoutParameters($url);
header('Location: ' . Horde::url($url, true));
exit;
}
/**
* Provides a standardised function to call a Horde hook, checking whether
* a hook config file exists and whether the function itself exists. If
* these two conditions are not satisfied it will return the specified
* value (by default a PEAR error).
*
* @param string $hook The function to call.
* @param array $args An array of any arguments to pass to the hook
* function.
* @param string $app If specified look for hooks in the config directory
* of this app.
* @param mixed $error What to return if $app/config/hooks.php or $hook
* does not exist. If this is the string 'PEAR_Error'
* a PEAR error object is returned instead, detailing
* the failure.
*
* @return mixed Either the results of the hook or PEAR error on failure.
*/
function callHook($hook, $args = array(), $app = 'horde', $error = 'PEAR_Error')
{
global $registry;
static $hooks_loaded = array();
if (!isset($hooks_loaded[$app])) {
$success = Horde::loadConfiguration('hooks.php', null, $app);
if (is_a($success, 'PEAR_Error')) {
Horde::logMessage($success, __FILE__, __LINE__, PEAR_LOG_DEBUG);
$hooks_loaded[$app] = false;
} else {
$hooks_loaded[$app] = true;
}
}
if (function_exists($hook)) {
$result = call_user_func_array($hook, $args);
if (is_a($result, 'PEAR_Error')) {
Horde::logMessage($result, __FILE__, __LINE__, PEAR_LOG_ERR);
}
return $result;
}
if (is_string($error) && strcmp($error, 'PEAR_Error') == 0) {
$error = PEAR::raiseError(sprintf('Hook %s in application %s not called.', $hook, $app));
Horde::logMessage($error, __FILE__, __LINE__, PEAR_LOG_DEBUG);
}
return $error;
}
/**
* Returns the specified permission for the current user.
*
* @since Horde 3.1
*
* @param string $permission A permission, currently only 'max_blocks'.
*
* @return mixed The value of the specified permission.
*/
function hasPermission($permission)
{
global $perms;
if (!$perms->exists('horde:' . $permission)) {
return true;
}
$allowed = $perms->getPermissions('horde:' . $permission);
if (is_array($allowed)) {
switch ($permission) {
case 'max_blocks':
$allowed = max($allowed);
break;
}
}
return $allowed;
}
}
/**
* The Horde_Script_Files:: class provides a coherent way to manage script
* files for inclusion in Horde output. This class is meant to be used
* internally by Horde:: only.
*
* @author Michael Slusarz <slusarz@horde.org>
* @since Horde 3.2
* @package Horde_Framework
*/
class Horde_Script_Files {
/**
* The list of script files to add.
*
* @var array
*/
var $_files = array();
/**
* The list of files we have already included.
*
* @var array
*/
var $_included = array();
/**
* The list of deprecated files.
*
* @var array
*/
var $_ignored = array(
'horde' => array('tooltip.js')
);
/**
* The list of javascript files to always load from Horde.
*
* @var array
*/
var $_fromhorde = array('prototype.js', 'onDomReady.js');
/**
* The list of javscript files in Horde that have prototypejs'd versions.
*
* @var array
*/
var $_ptversions = array('tables.js', 'stripe.js');
/**
* Auto load horde.js/horde-prototype.js?
*
* @var boolean
*/
var $_loadhordejs = true;
/**
* Singleton.
*/
function &singleton()
{
static $instance;
if (!isset($instance)) {
$instance = new Horde_Script_Files();
}
return $instance;
}
/**
* Adds the javascript code to the output (if output has already started)
* or to the list of script files to include.
*
* @param string $file The full javascript file name.
* @param string $app The application name. Defaults to the current
* application.
* @param boolean $direct Include the file directly without passing it
* through javascript.php?
* @param boolean $full Output a full url
*/
function add($file, $app = null, $direct = false, $full = false)
{
$res = $this->_add($file, $app, $direct, $full);
if (empty($res) || (!ob_get_length() && !headers_sent())) {
return;
}
// If headers have already been sent, we need to output a <script>
// tag directly.
echo '<script type="text/javascript" src="' . $res['u'] . '"></script>' . "\n";
}
/**
* Helper function to determine if given file needs to be output.
*/
function _add($file, $app, $direct, $full = false)
{
global $registry;
if (empty($app)) {
$app = $registry->getApp();
}
// Skip any js files that have since been deprecated.
if (!empty($this->_ignored[$app]) &&
in_array($file, $this->_ignored[$app])) {
return false;
}
// Several files will always be the same thing. Don't distinguish
// between loading them in different $app scopes; always load them
// from Horde scope.
if (in_array($file, $this->_fromhorde)) {
$app = 'horde';
}
// Don't include scripts multiple times.
if (!empty($this->_included[$app][$file])) {
return false;
}
$this->_included[$app][$file] = true;
// Explicitly check for a directly serve-able version of the script.
$path = $GLOBALS['registry']->get('fileroot', $app);
if (!$direct &&
file_exists($file[0] == '/'
? $path . $file
: $registry->get('jsfs', $app) . '/' . $file)) {
$direct = true;
}
if ($direct) {
if ($file[0] == '/') {
echo $registry->get('webroot', $app);
$url = Horde::url($registry->get('webroot', $app) . $file,
$full, -1);
} else {
$url = Horde::url($registry->get('jsuri', $app) . '/' . $file,
$full, -1);
$path = $registry->get('jsfs', $app) . '/';
}
} else {
$path = $registry->get('templates', $app) . '/javascript/';
$url = Horde::url(
Util::addParameter(
$registry->get('webroot', 'horde') . '/services/javascript.php',
array('file' => $file, 'app' => $app)));
}
$out = $this->_files[$app][] = array('f' => $file, 'd' => $direct, 'u' => $url, 'p' => $path);
return $out;
}
/**
* Includes javascript files that are needed before any headers are sent.
*/
function includeFiles()
{
foreach ($this->listFiles() as $app => $files) {
foreach ($files as $file) {
echo '<script type="text/javascript" src="' . $file['u'] . '"></script>' . "\n";
}
}
}
/**
* Prepares the list of javascript files to include.
*
* @return array
*/
function listFiles()
{
/* If there is no javascript available, there's no point in including
* the rest of the files. */
if (!$GLOBALS['browser']->hasFeature('javascript')) {
return array();
}
$prototype = false;
$pt_list = array();
// Always include Horde-level scripts first.
if (!empty($this->_files['horde'])) {
foreach ($this->_files['horde'] as $file) {
if ($file['f'] == 'prototype.js') {
$prototype = true;
break;
}
}
if ($prototype) {
$keys = array_keys($this->_files['horde']);
foreach ($keys as $key) {
$file = $this->_files['horde'][$key];
if (in_array($file['f'], $this->_ptversions)) {
$pt_list[] = $file;
unset($this->_files['horde'][$key]);
}
}
}
}
/* Add general UI js library. If prototype is available, use the
* prototype-specific file. */
if ($this->_loadhordejs) {
if ($prototype) {
$this->_add('horde-prototype.js', 'horde', true);
} else {
$this->_add('horde.js', 'horde', true);
}
/* Fixes for IE that can't easily be done without browser
* detection. */
if ($GLOBALS['browser']->hasQuirk('windowed_controls')) {
$this->_add('horde.ie.js', 'horde', true);
}
}
/* Include other prototype specific files. */
foreach ($pt_list as $pt_file) {
$this->_add($pt_file['f'] . '-prototype.js', 'horde', $pt_file['d']);
}
/* Add accesskeys.js if access keys are enabled. */
if ($GLOBALS['prefs']->getValue('widget_accesskey')) {
$this->_add('prototype.js', 'horde', true);
$this->_add('accesskeys.js', 'horde', true);
}
/* Make sure 'horde' entries appear first. */
reset($this->_files);
if (key($this->_files) == 'horde') {
return $this->_files;
}
if (isset($this->_files['horde'])) {
$jslist = array('horde' => $this->_files['horde']);
} else {
$jslist = array();
}
foreach ($this->_files as $key => $val) {
if ($key != 'horde') {
$jslist[$key] = $val;
}
}
return $jslist;
}
/**
* Disable auto-loading of the horde.js script.
* Needs to auto-load by default for BC.
*
* @todo Remove for Horde 4
*/
function disableAutoloadHordeJS()
{
$this->_loadhordejs = false;
}
}
|