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
|
<?php
// Sort types
/**
* Sort by file type.
*/
define('GOLLEM_SORT_TYPE', 0);
/**
* Sort by file name.
*/
define('GOLLEM_SORT_NAME', 1);
/**
* Sort by file date.
*/
define('GOLLEM_SORT_DATE', 2);
/**
* Sort by file size.
*/
define('GOLLEM_SORT_SIZE', 3);
// Sort direction
/**
* Sort ascending.
*/
define('GOLLEM_SORT_ASCEND', 0);
/**
* Sort descending.
*/
define('GOLLEM_SORT_DESCEND', 1);
/**
* Gollem Base Class.
*
* $Horde: gollem/lib/Gollem.php,v 1.172.2.18 2006/02/22 06:48:38 slusarz 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 Max Kalika <max@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
* @package Gollem
*/
class Gollem {
/**
* Check Gollem authentication and change to the currently active
* directory. Redirects to login page on authentication/session failure.
*
* @param boolean $redirect Redirect to the logout page if authentication
* is unsuccessful?
* @param string $mode The authentication mode we are using.
*
* @return boolean True on success, false on failure.
*/
function checkAuthentication($redirect = true, $mode = null)
{
$auth_gollem = &Auth::singleton(array('gollem', 'gollem'));
$reason = $auth_gollem->authenticate();
if ($reason !== true) {
if ($redirect) {
if ($mode = 'selectlist') {
$url = Util::addParameter($GLOBALS['registry']->get('webroot', 'gollem') . '/login.php', 'selectlist_login', 1, false);
} else {
$url = Auth::addLogoutParameters(Gollem::logoutUrl());
}
$url = Util::addParameter($url, 'url', Horde::selfUrl(true, true, true), false);
header('Location: ' . $url);
exit;
} else {
return false;
}
}
return true;
}
/**
* Can we log in without a login screen for the requested backend key?
*
* @param string $key The backend key to check. Defaults to
* Gollem::getPreferredBackend().
* @param boolean $force If true, check the backend key even if there is
* more than one backend.
*
* @return boolean True if autologin possible, false if not.
*/
function canAutoLogin($key = null, $force = false)
{
$auto_server = Gollem::getPreferredBackend();
if (is_null($key)) {
$key = $auto_server;
}
return (((count($auto_server) == 1) || $force) &&
Auth::getAuth() &&
empty($GLOBALS['gollem_backends'][$key]['loginparams']) &&
!empty($GLOBALS['gollem_backends'][$key]['hordeauth']));
}
/**
* Changes the current directory of the Gollem session to the supplied
* value.
*
* @param string $dir Directory name.
*
* @return mixed True on Success, PEAR_Error on failure.
*/
function setDir($dir)
{
$dir = Gollem::realPath($dir);
if (!Gollem::verifyDir($dir)) {
return PEAR::raiseError(sprintf(_("Access denied to folder \"%s\"."), $dir));
}
$GLOBALS['gollem_be']['dir'] = $dir;
Gollem::_setLabel();
return true;
}
/**
* Changes the current directory of the Gollem session based on the
* 'dir' form field.
*
* @return mixed True on Success, PEAR_Error on failure.
*/
function changeDir()
{
$dir = Util::getFormData('dir');
if (!is_null($dir)) {
if (strpos($dir, '/') !== 0) {
$dir = $GLOBALS['gollem_be']['dir'] . '/' . $dir;
}
return Gollem::setDir($dir);
} else {
Gollem::_setLabel();
return true;
}
}
/**
* Get the root directory of the Gollem session.
*
* @return string The root directory.
*/
function getRoot()
{
return $GLOBALS['gollem_be']['root'];
}
/**
* Get the home directory of the Gollem session.
*
* @return string The home directory.
*/
function getHome()
{
return $GLOBALS['gollem_be']['home'];
}
/**
* Get the current directory of the Gollem session.
*
* @return mixed Current dir on success or null on failure.
*/
function getDir()
{
return $GLOBALS['gollem_be']['dir'];
}
/**
* Set the lable to use for the current page.
*
* @access private
*/
function _setLabel()
{
$GLOBALS['gollem_be']['label'] = Gollem::getDisplayPath($GLOBALS['gollem_be']['dir']);
if (empty($GLOBALS['gollem_be']['label'])) {
$GLOBALS['gollem_be']['label'] = '/';
}
}
/**
* Internal helper to sort directories first if pref set.
*
* @access private
*/
function _sortDirs($a, $b)
{
/* Sort symlinks to dirs as dirs */
$dira = ($a['type'] === '**dir') ||
(($a['type'] === '**sym') && ($a['linktype'] === '**dir'));
$dirb = ($b['type'] === '**dir') ||
(($b['type'] === '**sym') && ($b['linktype'] === '**dir'));
if ($GLOBALS['prefs']->getValue('sortdirsfirst')) {
if ($dira && !$dirb) {
return -1;
} elseif (!$dira && $dirb) {
return 1;
}
}
return 0;
}
/**
* Internal sorting function for 'date'.
*
* @access private
*/
function _sortDate($a, $b)
{
$dirs = Gollem::_sortDirs($a, $b);
if ($dirs) {
return $dirs;
}
if ($a['date'] > $b['date']) {
return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1;
} elseif ($a['date'] === $b['date']) {
return Gollem::_sortName($a, $b);
} else {
return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1;
}
}
/**
* Internal sorting function for 'size'.
*
* @access private
*/
function _sortSize($a, $b)
{
$dirs = Gollem::_sortDirs($a, $b);
if ($dirs) {
return $dirs;
}
if ($a['size'] > $b['size']) {
return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1;
} elseif ($a['size'] === $b['size']) {
return 0;
} else {
return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1;
}
}
/**
* Internal sorting function for 'type'.
*
* @access private
*/
function _sortType($a, $b)
{
$dirs = Gollem::_sortDirs($a, $b);
if ($dirs) {
return $dirs;
}
if ($a['type'] === $b['type']) {
return Gollem::_sortName($a, $b);
} elseif ($a['type'] === '**dir') {
return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1;
} elseif ($b['type'] === '**dir') {
return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1;
} else {
$res = strcasecmp($a['type'], $b['type']);
return $GLOBALS['prefs']->getValue('sortdir') ? ($res * -1) : $res;
}
}
/**
* Internal sorting function for 'name'.
*
* @access private
*/
function _sortName($a, $b)
{
$dirs = Gollem::_sortDirs($a, $b);
if ($dirs) {
return $dirs;
}
$res = strcasecmp($a['name'], $b['name']);
return $GLOBALS['prefs']->getValue('sortdir') ? ($res * -1) : $res;
}
/**
* List the current folder.
*
* @param string $dir The directory name.
*
* @return array The sorted list of files.
*/
function listFolder($dir)
{
$files = $GLOBALS['gollem_vfs']->listFolder($dir, isset($GLOBALS['gollem_be']['filter']) ? $GLOBALS['gollem_be']['filter'] : null, $GLOBALS['prefs']->getValue('show_dotfiles'));
if (!is_a($files, 'PEAR_Error')) {
switch ($GLOBALS['prefs']->getValue('sortby')) {
case GOLLEM_SORT_TYPE:
usort($files, array('Gollem', '_sortType'));
break;
case GOLLEM_SORT_NAME:
usort($files, array('Gollem', '_sortName'));
break;
case GOLLEM_SORT_DATE:
usort($files, array('Gollem', '_sortDate'));
break;
case GOLLEM_SORT_SIZE:
usort($files, array('Gollem', '_sortSize'));
break;
}
}
return $files;
}
/**
* Generate correct subdirectory links.
*
* @param string $base The base directory.
* @param string $dir The directory string.
*
* @return string The correct subdirectoy string.
*/
function subdirectory($base, $dir)
{
if (empty($base)) {
return $dir;
}
if (substr($base, -1) == '/') {
return $base . $dir;
}
return $base . '/' . $dir;
}
/**
* Generate an URL to the logout screen that includes any known
* information, such as username, server, etc., that can be filled
* in on the login form.
*
* @return string The logout URL with parameters added.
*/
function logoutUrl()
{
$params = array();
$url = 'login.php';
if (!empty($GLOBALS['gollem_be']['params']['username'])) {
$params['username'] = $GLOBALS['gollem_be']['params']['username'];
} elseif (Util::getFormData('username')) {
$params['username'] = Util::getFormData('username');
}
if (!empty($GLOBALS['gollem_be']['params']['port'])) {
$params['port'] = $GLOBALS['gollem_be']['params']['port'];
}
foreach ($params as $key => $val) {
if (!empty($val)) {
$url = Util::addParameter($url, $key, $val);
}
}
return Horde::applicationUrl($url, true);
}
/**
* Create a folder using the current Gollem session settings.
*
* @param string $dir The directory path.
* @param string $name The folder to create.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function createFolder($dir, $name)
{
$totalpath = Gollem::realPath($dir . '/' . $name);
if (!Gollem::verifyDir($totalpath)) {
return PEAR::raiseError(sprintf(_("Access denied to folder \"%s\"."), $totalpath));
}
/* The $name parameter may contain additional directories so we
* need to pass autocreatePath everything but the base filename. */
$pos = strrpos($totalpath, '/');
$dir = substr($totalpath, 0, $pos);
$name = substr($totalpath, $pos + 1);
/* Unfortunately, autocreatePath() is broken in VFS versions prior to
* Horde 3.0.5. We can work around this by simply clipping the root
* '/' off the path. */
require_once HORDE_BASE . '/lib/version.php';
if ((version_compare(HORDE_VERSION, '3.0.5') == -1) &&
(strpos($dir, '/') === 0)) {
$autodir = substr($dir, 1);
} else {
$autodir = $dir;
}
$res = $GLOBALS['gollem_vfs']->autocreatePath($autodir);
if (is_a($res, 'PEAR_Error')) {
return $res;
}
$res = $GLOBALS['gollem_vfs']->createFolder($dir, $name);
if (is_a($res, 'PEAR_Error')) {
return $res;
}
if (!empty($GLOBALS['gollem_be']['params']['permissions'])) {
$GLOBALS['gollem_vfs']->changePermissions($dir, $name, $GLOBALS['gollem_be']['params']['permissions']);
}
return true;
}
/**
* Rename files using the current Gollem session settings.
*
* @param string $oldDir Old directory name.
* @param string $old Old file name.
* @param string $newDir New directory name.
* @param string $old New file name.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function renameItem($oldDir, $old, $newDir, $new)
{
return $GLOBALS['gollem_vfs']->rename($oldDir, $old, $newDir, $new);
}
/**
* Delete a folder using the current Gollem session settings.
*
* @param string $dir The subdirectory name.
* @param string $name The folder name to delete.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function deleteFolder($dir, $name)
{
if (!Gollem::verifyDir($dir)) {
return PEAR::raiseError(sprintf(_("Access denied to folder \"%s\"."), $dir));
}
if ($GLOBALS['prefs']->getValue('recursive_deletes') != 'disabled') {
return $GLOBALS['gollem_vfs']->deleteFolder($dir, $name, true);
}
else {
return $GLOBALS['gollem_vfs']->deleteFolder($dir, $name, false);
}
}
/**
* Delete a file using the current Gollem session settings.
*
* @param string $dir The directory name.
* @param string $name The filename to delete.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function deleteFile($dir, $name)
{
if (!Gollem::verifyDir($dir)) {
return PEAR::raiseError(sprintf(_("Access denied to folder \"%s\"."), $dir));
}
return $GLOBALS['gollem_vfs']->deleteFile($dir, $name);
}
/**
* Change permissions on files using the current Gollem session settings.
*
* @param string $dir The directory name.
* @param string $name The filename to change permissions on.
* @param string $permission The permission mode to set.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function changePermissions($dir, $name, $permission)
{
if (!Gollem::verifyDir($dir)) {
return PEAR::raiseError(sprintf(_("Access denied to folder \"%s\"."), $dir));
}
return $GLOBALS['gollem_vfs']->changePermissions($dir, $name, $permission);
}
/**
* Write an uploaded file to the VFS backend.
*
* @param string $dir The directory name.
* @param string $name The filename to create.
* @param string $filename The local file containing the file data.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function writeFile($dir, $name, $filename)
{
$res = $GLOBALS['gollem_vfs']->write($dir, $name, $filename);
if (is_a($res, 'PEAR_Error')) {
return $res;
}
if (!empty($GLOBALS['gollem_be']['params']['permissions'])) {
$GLOBALS['gollem_vfs']->changePermissions($dir, $name, $GLOBALS['gollem_be']['params']['permissions']);
}
return true;
}
/**
* Moves a file using the current Gollem session settings.
*
* @param string $backend_f The backend to move the file from.
* @param string $dir The directory name of the original file.
* @param string $name The original filename.
* @param string $backend_t The backend to move the file to.
* @param string $newdir The directory to move the file to.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function moveFile($backend_f, $dir, $name, $backend_t, $newdir)
{
return Gollem::_copyFile('move', $backend_f, $dir, $name, $backend_t, $newdir);
}
/**
* Copies a file using the current Gollem session settings.
*
* @param string $backend_f The backend to copy the file from.
* @param string $dir The directory name of the original file.
* @param string $name The original filename.
* @param string $backend_t The backend to copy the file to.
* @param string $newdir The directory to copy the file to.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function copyFile($backend_f, $dir, $name, $backend_t, $newdir)
{
return Gollem::_copyFile('copy', $backend_f, $dir, $name, $backend_t, $newdir);
}
/**
* Private function that copies/moves files.
*
* @access private
*/
function _copyFile($mode, $backend_f, $dir, $name, $backend_t, $newdir)
{
/* If the from/to backends are the same, we can just use the built-in
VFS functions. */
if ($backend_f == $backend_t) {
if ($backend_f == $_SESSION['gollem']['backend_key']) {
$ob = &$GLOBALS['gollem_vfs'];
} else {
$ob = &Gollem::getVFSOb($backend_f);
$valid = $ob->checkCredentials();
if (is_a($valid, 'PEAR_Error')) {
return $valid;
}
}
return ($mode == 'copy') ? $ob->copy($dir, $name, $newdir) : $ob->move($dir, $name, $newdir);
}
/* Else, get the two VFS objects and copy/move the files. */
if ($backend_f == $_SESSION['gollem']['backend_key']) {
$from_be = &$GLOBALS['gollem_vfs'];
} else {
$from_be = &Gollem::getVFSOb($backend_f);
$valid = $from_be->checkCredentials();
if (is_a($valid, 'PEAR_Error')) {
return $valid;
}
}
if ($backend_t == $_SESSION['gollem']['backend_key']) {
$to_be = &$GLOBALS['gollem_vfs'];
} else {
$from_be = &Gollem::getVFSOb($backend_t);
$valid = $to_be->checkCredentials();
if (is_a($valid, 'PEAR_Error')) {
return $valid;
}
}
/* Read the source data. */
$data = $from_be->read($dir, $name);
/* Write the target data. */
$res = $to_be->writeData($newdir, $name, $data);
if (is_a($res, 'PEAR_Error')) {
return $res;
}
/* If moving, delete the source data. */
if ($mode == 'move') {
$from_be->deleteFile($dir, $name);
}
return true;
}
/**
* Get the current preferred backend key.
*
* @return string The preferred backend key.
*/
function getPreferredBackend()
{
$backend_key = null;
if (!empty($_SESSION['gollem']['backend_key'])) {
$backend_key = $_SESSION['gollem']['backend_key'];
} else {
/* Determine the preferred backend. */
foreach ($GLOBALS['gollem_backends'] as $key => $val) {
if (empty($backend_key) && (substr($key, 0, 1) != '_')) {
$backend_key = $key;
}
if (!empty($val['preferred'])) {
$preferred = false;
if (!is_array($val['preferred'])) {
$val['preferred'] = array($val['preferred']);
}
foreach ($val['preferred'] as $backend) {
if (($backend == $_SERVER['SERVER_NAME']) ||
($backend == $_SERVER['HTTP_HOST'])) {
$preferred = true;
break;
}
}
if ($preferred) {
$backend_key = $key;
break;
}
}
}
}
return $backend_key;
}
/**
* This function verifies whether a given directory is below the root.
*
* @param string $dir The directory to check.
*
* @return boolean True if the directory is below the root.
*/
function verifyDir($dir)
{
$rootdir = Gollem::getRoot();
return (String::substr(Gollem::realPath($dir), 0, String::length($rootdir)) == $rootdir);
}
/**
* Parse the 'columns' preference.
*
* @return array The list of columns to be displayed.
*/
function displayColumns()
{
$ret = array();
$lines = explode("\n", $GLOBALS['prefs']->getValue('columns'));
foreach ($lines as $line) {
$line = trim($line);
if (!empty($line)) {
$columns = explode("\t", $line);
if (count($columns) > 1) {
$source = array_splice($columns, 0, 1);
$ret[$source[0]] = $columns;
}
}
}
return $ret;
}
/**
* Checks if a user has the specified permissions on the selected backend.
*
* @param string $filter What are we checking for.
* @param integer $permission What permission to check for.
* @param string $backend The backend to check. If empty, check
* the current backend.
*
* @return boolean Returns true if the user has permission, false if
* they do not.
*/
function checkPermissions($filter, $permission = PERMS_READ,
$backend = null)
{
$userID = Auth::getAuth();
if (is_null($backend)) {
$backend = $_SESSION['gollem']['backend_key'];
}
switch ($filter) {
case 'backend':
$backendTag = 'gollem:backends:' . $backend;
if (!$GLOBALS['perms']->exists($backendTag) ||
$GLOBALS['perms']->hasPermission($backendTag, $userID, $permission)) {
return true;
}
break;
}
return false;
}
/**
* Produces a directory link used for navigation.
*
* @param string $currdir The current directory string.
* @param string $url The URL to link to.
*
* @return string The directory navigation string.
*/
function directoryNavLink($currdir, $url)
{
$label = array();
$root_dir = Gollem::getRoot();
if ($currdir == $root_dir) {
$label[] = '[' . _("Root") . ']';
} else {
$parts = explode('/', $currdir);
$parts_count = count($parts);
$label[] = Horde::link(Util::addParameter($url, 'dir', $root_dir), sprintf(_("Up to %s"), _("Root"))) . '[' . _("Root") . ']</a>';
for ($i = 1; $i <= $parts_count; $i++) {
$part = array_slice($parts, 0, $i);
$dir = implode('/', $part);
if ((strstr($dir, $root_dir) !== false) &&
($root_dir != $dir)) {
if ($i == $parts_count) {
$label[] = $parts[($i - 1)];
} else {
$label[] = Horde::link(Util::addParameter($url, 'dir', $dir), sprintf(_("Up to %s"), $dir)) . $parts[($i - 1)] . '</a>';
}
}
}
}
return implode('/', $label);
}
/**
* Build Gollem's list of menu items.
*
* @param string $returnType Either 'object' or 'string'.
*
* @return mixed Either a Horde_Menu object or the rendered menu text.
*/
function getMenu($returnType = 'object')
{
require_once 'Horde/Menu.php';
$menu = &new Menu();
$menu->add(Util::addParameter(Horde::applicationUrl('manager.php'), 'dir', Gollem::getHome()), _("Home"), 'home.png');
if (strpos($_SERVER['PHP_SELF'], 'manager.php') !== false) {
if (Gollem::checkPermissions('backend', PERMS_EDIT)) {
$menu->add('#', _("Create Folder"), 'mkdir.png', null, '', 'createFolder(); return false;');
}
if (Gollem::checkPermissions('backend', PERMS_READ)) {
$menu->add('#', _("Change Folder"), 'cd.png', null, '', 'changeDirectory(); return false;');
}
}
if (!empty($_SESSION['gollem'])) {
if (Auth::isAdmin()) {
$menu->add(Util::addParameter(Horde::applicationUrl('permissions.php'), 'backend', $_SESSION['gollem']['backend_key']), _("Permissions"), 'administration.png', $GLOBALS['registry']->getImageDir('horde'));
}
if ($_SESSION['gollem']['hasquota']) {
if ($GLOBALS['browser']->hasFeature('javascript')) {
Horde::addScriptFile('open_quota_win.js', 'gollem');
$quota_url = 'javascript:open_quota_win(\'' . addslashes('backend=' . $_SESSION['gollem']['backend_key']) . '\');';
} else {
$quota_url = Util::addParameter(Horde::applicationUrl('quota.php'), 'backend', $_SESSION['gollem']['backend_key']);
}
$menu->add($quota_url, _("Check Quota"), 'info_icon.png', $GLOBALS['registry']->getImageDir('horde'));
}
}
if ($returnType == 'object') {
return $menu;
} else {
return $menu->render();
}
}
/**
* Outputs Gollem's menu to the current output stream.
*
* @since Gollem 1.0.2
*/
function menu()
{
require_once 'Horde/Template.php';
$t = &new Horde_Template();
$t->set('forminput', Util::formInput());
$t->set('be_select', Gollem::backendSelect(), true);
if ($t->get('be_select')) {
$t->set('accesskey', $GLOBALS['prefs']->getValue('widget_accesskey') ? Horde::getAccessKey(_("_Change Server")) : '');
$menu_view = $GLOBALS['prefs']->getValue('menu_view');
$link = Horde::link('#', _("Change Server"), '', '', 'serverSubmit(true);return false;');
$t->set('slink', sprintf('<ul><li>%s%s<br />%s</a></li></ul>', $link, ($menu_view != 'text') ? Horde::img('gollem.png') : '', ($menu_view != 'icon') ? Horde::highlightAccessKey(_("_Change Server"), $t->get('accesskey')) : ''));
}
$t->set('menu_string', Gollem::getMenu('string'));
echo $t->fetch(GOLLEM_TEMPLATES . '/menu.html');
}
/**
* Outputs Gollem's status/notification bar.
*/
function status()
{
$GLOBALS['notification']->notify(array('listeners' => 'status'));
}
/**
* Generate the backend selection list for use in the menu.
*
* @return string The backend selection list.
*/
function backendSelect()
{
$text = '';
if (($GLOBALS['conf']['backend']['backend_list'] == 'shown') &&
(count($GLOBALS['gollem_backends']) > 1)) {
foreach ($GLOBALS['gollem_backends'] as $key => $val) {
$sel = ($_SESSION['gollem']['backend_key'] == $key) ? ' selected="selected"' : '';
$text .= sprintf('<option value="%s"%s>%s</option>%s', (empty($sel)) ? $key : '', $sel, $val['name'], "\n");
}
}
return $text;
}
/**
* Load the backends list into the global $gollem_backends variable.
*/
function loadBackendList()
{
if (!empty($_SESSION['gollem']['be_list'])) {
$GLOBALS['gollem_backends'] = $_SESSION['gollem']['be_list'];
} else {
require GOLLEM_BASE . '/config/backends.php';
$GLOBALS['gollem_backends'] = array();
foreach ($backends as $key => $val) {
if (Gollem::checkPermissions('backend', PERMS_SHOW, $key)) {
$GLOBALS['gollem_backends'][$key] = $val;
}
}
}
}
/**
* Get the authentication ID to use for autologins based on the value of
* the 'hordeauth' parameter.
*
* @param string $backend The backend to login to.
*
* @return string The ID string to use for logins.
*/
function getAutologinID($backend)
{
if (!empty($GLOBALS['gollem_backends'][$backend]['hordeauth']) &&
(strcasecmp($GLOBALS['gollem_backends'][$backend]['hordeauth'], 'full') === 0)) {
return Auth::getAuth();
} else {
return Auth::getBareAuth();
}
}
/**
* Returns the canonical path of the string. Like PHP's built-in
* realpath() except the directory need not exist on the local server.
*
* Algorithim loosely based on code from the Perl File::Spec::Unix module
* (version 1.5).
*
* TODO: Remove once Gollem requires a minimum version of Horde that
* containts Util::realPath().
*
* @param string $path A file path.
*
* @return string The canonicalized file path.
*/
function realPath($path)
{
/* Standardize on UNIX directory separators. */
if (substr(PHP_OS, 0, 3) == 'WIN') {
$path = str_replace('\\', '/', $path);
}
/* xx////xx -> xx/xx
* xx/././xx -> xx/xx */
$path = preg_replace(array("|/+|", "@(/\.)+(/|\Z(?!\n))@"), array('/', '/'), $path);
/* ./xx -> xx */
if ($path != './') {
$path = preg_replace("|^(\./)+|", '', $path);
}
/* /../../xx -> xx */
$path = preg_replace("|^/(\.\./?)+|", '/', $path);
/* xx/ -> xx */
if ($path != '/') {
$path = preg_replace("|/\Z(?!\n)|", '', $path);
}
/* /xx/.. -> / */
while (strpos($path, '/..') !== false) {
$path = preg_replace("|/[^/]+/\.\.|", '', $path);
}
return empty($path) ? '/' : $path;
}
/**
* Return a Horde_VFS object for the given backend.
*
* @param string $backend_key The backend_key VFS object to return.
*
* @return object The Horde_VFS object requested.
*/
function &getVFSOb($backend_key)
{
$be_config = &$_SESSION['gollem']['backends'][$backend_key];
$params = $be_config['params'];
if (!empty($params['password'])) {
$params['password'] = Secret::read(Secret::getKey('gollem'), $params['password']);
}
$ob = &VFS::singleton($be_config['driver'], $params);
if (!isset($be_config['quota_val'])) {
/* Only set quota information when we are finished with session
* initialization (a VFS object is created in
* MIMP_Session::createSession before all session variables -
* e.g. 'hasquota' - are set.) */
$sess_setup = isset($_SESSION['gollem']['hasquota']);
if ($sess_setup) {
$be_config['quota_val'] = -1;
}
if ((!$sess_setup || !empty($_SESSION['gollem']['hasquota'])) &&
!empty($be_config['quota'])) {
$quota_metric = array(
'B' => VFS_QUOTA_METRIC_BYTE,
'KB' => VFS_QUOTA_METRIC_KB,
'MB' => VFS_QUOTA_METRIC_MB,
'GB' => VFS_QUOTA_METRIC_GB
);
$quota_str = explode(' ', $be_config['quota'], 2);
if (is_numeric($quota_str[0])) {
$metric = trim(strtoupper($quota_str[1]));
if (!isset($quota_metric[$metric])) {
$metric = 'B';
}
$ob->setQuota($quota_str[0], $quota_metric[$metric]);
$ob->setQuotaRoot(Gollem::getRoot());
if ($sess_setup) {
$be_config['quota_val'] = $quota_str[0];
$be_config['quota_metric'] = $quota_metric[$metric];
}
}
}
} elseif ($be_config['quota_val'] > -1) {
$ob->setQuota($be_config['quota_val'], $be_config['quota_metric']);
$ob->setQuotaRoot(Gollem::getRoot());
}
return $ob;
}
/**
* Generate the display path (the path with any root information stripped
* out).
*
* @param string $path The path to display.
*
* @return string The display path.
*/
function getDisplayPath($path)
{
$path = Gollem::realPath($path);
$rootdir = Gollem::getRoot();
if (($rootdir != '/') && (strpos($path, $rootdir) === 0)) {
$path = substr($path, String::length($rootdir));
}
return $path;
}
/**
* Get a list of the available backends for permissions setup.
*
* @param string $perms 'all' - Return all backends.
* 'perms' - Return backends which have perms set.
* 'noperms' - Return backends which have no perms
* set.
*
* @return array The requested backend list.
*/
function &getBackends($perms = 'all')
{
$backends = $_SESSION['gollem']['backends'];
$perms = strtolower($perms);
if ($perms != 'all') {
foreach (array_keys($backends) as $key) {
$exists = $GLOBALS['perms']->exists('gollem:backends:' . $key);
/* Don't list if the perms don't exist for this backend and we
* want backends with perms only OR if the perms exist for
* this backend and we only want backends which have none. */
if ((!$exists && ($perms == 'perms')) ||
($exists && ($perms == 'noperms'))) {
unset($backends[$key]);
}
}
}
return $backends;
}
}
|