Add extra test for mime-type on view/download; Switch to egw vars and constants; Cleanup formatting

This commit is contained in:
Miles Lott 2005-09-14 01:58:20 +00:00
parent 868ce950cb
commit 03f22dfe1a
8 changed files with 339 additions and 302 deletions

View File

@ -1,8 +1,18 @@
<?php <?php
/**************************************************************************\
* eGroupWare - Filemanager *
* http://www.egroupware.org *
* ------------------------------------------------------------------------ *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class bofilemanager class bofilemanager
{ {
// used // used
var $so; var $so;
@ -29,42 +39,42 @@
$this->vfs = CreateObject('phpgwapi.vfs'); $this->vfs = CreateObject('phpgwapi.vfs');
error_reporting (4); error_reporting(4);
### Start Configuration Options ### ### Start Configuration Options ###
### These are automatically set in phpGW - do not edit ### ### These are automatically set in eGW - do not edit ###
$this->sep = SEP; $this->sep = SEP;
$this->rootdir = $this->vfs->basedir; $this->rootdir = $this->vfs->basedir;
$this->fakebase = $this->vfs->fakebase; $this->fakebase = $this->vfs->fakebase;
$this->appname = $GLOBALS['phpgw_info']['flags']['currentapp']; $this->appname = $GLOBALS['egw_info']['flags']['currentapp'];
if (stristr ($this->rootdir, PHPGW_SERVER_ROOT)) if(stristr($this->rootdir, EGW_SERVER_ROOT))
{ {
$this->filesdir = substr ($this->rootdir, strlen (PHPGW_SERVER_ROOT)); $this->filesdir = substr($this->rootdir, strlen(EGW_SERVER_ROOT));
} }
else else
{ {
unset ($this->filesdir); unset($this->filesdir);
} }
$this->hostname = $GLOBALS['phpgw_info']['server']['webserver_url'] . $this->filesdir; $this->hostname = $GLOBALS['egw_info']['server']['webserver_url'] . $this->filesdir;
// die($this->hostname); // die($this->hostname);
### ###
# Note that $userinfo["username"] is actually the id number, not the login name # Note that $userinfo["username"] is actually the id number, not the login name
### ###
$this->userinfo['username'] = $GLOBALS['phpgw_info']['user']['account_id']; $this->userinfo['username'] = $GLOBALS['egw_info']['user']['account_id'];
$this->userinfo['account_lid'] = $GLOBALS['phpgw']->accounts->id2name ($this->userinfo['username']); $this->userinfo['account_lid'] = $GLOBALS['egw']->accounts->id2name($this->userinfo['username']);
$this->userinfo['hdspace'] = 10000000000; // to settings $this->userinfo['hdspace'] = 10000000000; // to settings
$this->homedir = $this->fakebase.'/'.$this->userinfo['account_lid']; $this->homedir = $this->fakebase.'/'.$this->userinfo['account_lid'];
### End Configuration Options ### ### End Configuration Options ###
if (!defined ('NULL')) if(!defined('NULL'))
{ {
define ('NULL', ''); define('NULL', '');
} }
### ###
@ -86,66 +96,73 @@
'comment' => lang('Comment'), 'comment' => lang('Comment'),
'version' => lang('Version') 'version' => lang('Version')
); );
###
# Calculate and display B or KB
# And yes, that first if is strange,
# but it does do something
###
} }
###
function borkb ($size, $enclosed = NULL, $return = 1) # Calculate and display B or KB
# And yes, that first if is strange,
# but it does do something
###
function borkb($size, $enclosed = NULL, $return = 1)
{ {
if (!$size) if(!$size)
$size = 0; {
$size = 0;
}
if ($enclosed) if($enclosed)
{ {
$left = '('; $left = '(';
$right = ')'; $right = ')';
} }
if ($size < 1024) if($size < 1024)
$rstring = $left . $size . 'B' . $right; {
$rstring = $left . $size . 'B' . $right;
}
else else
$rstring = $left . round($size/1024) . 'KB' . $right; {
$rstring = $left . round($size/1024) . 'KB' . $right;
}
return ($this->eor ($rstring, $return)); return($this->eor($rstring, $return));
} }
### ###
# Check for and return the first unwanted character # Check for and return the first unwanted character
### ###
function bad_chars ($string, $all = True, $return = 0) function bad_chars($string, $all = True, $return = 0)
{ {
if ($all) if($all)
{ {
if (preg_match("-([\\/<>\'\"\&])-", $string, $badchars)) if(preg_match("-([\\/<>\'\"\&])-", $string, $badchars))
$rstring = $badchars[1]; {
$rstring = $badchars[1];
}
} }
else else
{ {
if (preg_match("-([\\/<>])-", $string, $badchars)) if(preg_match("-([\\/<>])-", $string, $badchars))
$rstring = $badchars[1]; {
$rstring = $badchars[1];
}
} }
return trim (($this->eor ($rstring, $return))); return trim(($this->eor($rstring, $return)));
} }
### ###
# Match character in string using ord (). # Match character in string using ord().
### ###
function ord_match ($string, $charnum) function ord_match($string, $charnum)
{ {
for ($i = 0; $i < strlen ($string); $i++) for($i = 0; $i < strlen($string); $i++)
{ {
$character = ord (substr ($string, $i, 1)); $character = ord(substr($string, $i, 1));
if ($character == $charnum) if($character == $charnum)
{ {
return True; return True;
} }
@ -158,33 +175,45 @@
# Decide whether to echo or return. Used by HTML functions # Decide whether to echo or return. Used by HTML functions
### ###
function eor ($rstring, $return) function eor($rstring, $return)
{ {
if ($return) if($return)
return ($rstring); {
return($rstring);
}
else else
{ {
$this->html_text ($rstring . "\n"); $this->html_text($rstring . "\n");
return (0); return(0);
} }
} }
function html_text ($string, $times = 1, $return = 0, $lang = 0) function html_text($string, $times = 1, $return = 0, $lang = 0)
{ {
if ($lang) if($lang)
$string = lang($string);
if ($times == NULL)
$times = 1;
for ($i = 0; $i != $times; $i++)
{ {
if ($return) $string = lang($string);
$rstring .= $string; }
else
echo $string; if($times == NULL)
{
$times = 1;
}
for($i = 0; $i != $times; $i++)
{
if($return)
{
$rstring .= $string;
}
else
{
echo $string;
}
}
if($return)
{
return($rstring);
} }
if ($return)
return ($rstring);
} }
### ###
@ -193,48 +222,46 @@
# Note: this is a hack. It was made to work with form actions, form values, and links only, # Note: this is a hack. It was made to work with form actions, form values, and links only,
# but should be able to handle any normal query string or URL # but should be able to handle any normal query string or URL
### ###
function string_encode($string, $return = False)
function string_encode ($string, $return = False)
{ {
//var_dump($string); //var_dump($string);
if (preg_match ("/=(.*)(&|$)/U", $string)) if(preg_match("/=(.*)(&|$)/U", $string))
{ {
$rstring = $string; $rstring = $string;
preg_match_all ("/=(.*)(&|$)/U", $string, $matches, PREG_SET_ORDER);//FIXME matches not defined preg_match_all("/=(.*)(&|$)/U", $string, $matches, PREG_SET_ORDER);//FIXME matches not defined
reset ($matches);//FIXME matches not defined reset($matches);//FIXME matches not defined
while (list (,$match_array) = each ($matches))//FIXME matches not defined
while(list(,$match_array) = each($matches))//FIXME matches not defined
{ {
$var_encoded = rawurlencode (base64_encode ($match_array[1])); $var_encoded = rawurlencode(base64_encode($match_array[1]));
$rstring = str_replace ($match_array[0], '=' . $var_encoded . $match_array[2], $rstring); $rstring = str_replace($match_array[0], '=' . $var_encoded . $match_array[2], $rstring);
} }
} }
elseif ($this->hostname != "" && ereg('^'.$this->hostname, $string)) elseif($this->hostname != "" && ereg('^'.$this->hostname, $string))
// elseif (ereg ('^'.$this->hostname, $string)) // elseif(ereg('^'.$this->hostname, $string))
{ {
$rstring = ereg_replace ('^'.$this->hostname.'/', '', $string); $rstring = ereg_replace('^'.$this->hostname.'/', '', $string);
$rstring = preg_replace ("/(.*)(\/|$)/Ue", "rawurlencode (base64_encode ('\\1')) . '\\2'", $rstring); $rstring = preg_replace("/(.*)(\/|$)/Ue", "rawurlencode(base64_encode('\\1')) . '\\2'", $rstring);
$rstring = $this->hostname.'/'.$rstring; $rstring = $this->hostname.'/'.$rstring;
} }
else else
{ {
$rstring = rawurlencode ($string); $rstring = rawurlencode($string);
/* Terrible hack, decodes all /'s back to normal */ /* Terrible hack, decodes all /'s back to normal */
$rstring = preg_replace ("/%2F/", '/', $rstring); $rstring = preg_replace("/%2F/", '/', $rstring);
} }
return ($this->eor ($rstring, $return)); return($this->eor($rstring, $return));
} }
function string_decode ($string, $return = False) function string_decode($string, $return = False)
{ {
$rstring = rawurldecode ($string); $rstring = rawurldecode($string);
return ($this->eor ($rstring, $return)); return($this->eor($rstring, $return));
} }
### ###
@ -242,11 +269,11 @@
# This should be used with anything in an HTML tag that might contain < or > # This should be used with anything in an HTML tag that might contain < or >
### ###
function html_encode ($string, $return) function html_encode($string, $return)
{ {
$rstring = htmlspecialchars ($string); $rstring = htmlspecialchars($string);
return ($this->eor ($rstring, $return)); return($this->eor($rstring, $return));
} }
} }
?> ?>

View File

@ -1,4 +1,15 @@
<?php <?php
/**************************************************************************\
* eGroupWare - Filemanager *
* http://www.egroupware.org *
* ------------------------------------------------------------------------ *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
class sofilemanager class sofilemanager
{ {
@ -6,28 +17,27 @@
function sofilemanager() function sofilemanager()
{ {
$this->db = $GLOBALS['phpgw']->db; $this->db = clone($GLOBALS['egw']->db);
} }
/* Any initializations that need to be done */ /* Any initializations that need to be done */
function db_init () function db_init()
{ {
$this->db->Auto_Free = 0; $this->db->Auto_Free = 0;
} }
/* General SQL query */ /* General SQL query */
function db_query ($query) function db_query($query)
{ {
return $this->db->query ($query); return $this->db->query($query);
} }
/* Fetch next array for $query_id */ /* Fetch next array for $query_id */
function db_fetch_array ($query_id) function db_fetch_array($query_id)
{ {
// $egw->db->Query_ID = $query_id;
// $phpgw->db->Query_ID = $query_id; $this->db->next_record();
$this->db->next_record ();
return $this->db->Record; return $this->db->Record;
} }
@ -35,13 +45,10 @@
General wrapper for all other db calls General wrapper for all other db calls
Calls in here are simply returned, so not all will work Calls in here are simply returned, so not all will work
*/ */
function db_call ($function, $query_id) function db_call($function, $query_id)
{ {
// $egw->db->Query_ID = $query_id;
// $phpgw->db->Query_ID = $query_id; return $this->db->$function();
return $this->db->$function ();
} }
} }
?> ?>

View File

@ -1,29 +1,24 @@
<?php <?php
/**************************************************************************\ /**************************************************************************\
* -------------------------------------------------------------------------* * eGroupWare - Filemanager *
* This library is free software; you can redistribute it and/or modify it * * http://www.egroupware.org *
* under the terms of the GNU Lesser General Public License as published by * * ------------------------------------------------------------------------ *
* the Free Software Foundation; either version 2.1 of the License, * * This program is free software; you can redistribute it and/or modify it *
* or any later version. * * under the terms of the GNU General Public License as published by the *
* This library is distributed in the hope that it will be useful, but * * Free Software Foundation; either version 2 of the License, or (at your *
* WITHOUT ANY WARRANTY; without even the implied warranty of * * option) any later version. *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * \**************************************************************************/
* See the GNU Lesser General Public License for more details. *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
\**************************************************************************/
/* $Id$ */ /* $Id$ */
class uifilemanager class uifilemanager
{ {
var $public_functions = array( var $public_functions = array(
'index' => True, 'index' => True,
'help' => True, 'help' => True,
'view' => True, 'view' => True,
'history' => True, 'history' => True,
'edit' => True, 'edit' => True,
'download'=>True 'download'=>True
); );
@ -88,13 +83,13 @@
function uifilemanager() function uifilemanager()
{ {
// error_reporting(8); // error_reporting(8);
$GLOBALS['phpgw']->browser = CreateObject('phpgwapi.browser'); $GLOBALS['egw']->browser = CreateObject('phpgwapi.browser');
$this->now = date('Y-m-d'); $this->now = date('Y-m-d');
$this->bo = CreateObject('filemanager.bofilemanager'); $this->bo = CreateObject('filemanager.bofilemanager');
$this->t = $GLOBALS['phpgw']->template; $this->t = $GLOBALS['egw']->template;
// here local vars are created from the HTTP vars // here local vars are created from the HTTP vars
@reset($GLOBALS['HTTP_POST_VARS']); @reset($GLOBALS['HTTP_POST_VARS']);
@ -163,22 +158,20 @@
// get appl. and user prefs // get appl. and user prefs
$pref = CreateObject('phpgwapi.preferences', $this->bo->userinfo['username']); $pref = CreateObject('phpgwapi.preferences', $this->bo->userinfo['username']);
$pref->read_repository(); $pref->read_repository();
// $GLOBALS['phpgw']->hooks->single('add_def_pref', $GLOBALS['appname']); // $GLOBALS['egw']->hooks->single('add_def_pref', $GLOBALS['appname']);
$pref->save_repository(True); $pref->save_repository(True);
$pref_array = $pref->read_repository(); $pref_array = $pref->read_repository();
$this->prefs = $pref_array[$this->bo->appname]; //FIXME check appname var in _debug_array $this->prefs = $pref_array[$this->bo->appname]; //FIXME check appname var in _debug_array
//always show name //always show name
$this->prefs[name] =1; $this->prefs['name'] = 1;
if($this->prefs['viewinnewwin']) if($this->prefs['viewinnewwin'])
{ {
$this->target = '_blank'; $this->target = '_blank';
} }
/* /*
Check for essential directories Check for essential directories
admin must be able to disable these tests admin must be able to disable these tests
@ -186,15 +179,14 @@
// check if basedir exist // check if basedir exist
$test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir, 'relatives' => array(RELATIVE_NONE), 'relative' => False)); $test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir, 'relatives' => array(RELATIVE_NONE), 'relative' => False));
if($test[mime_type]!='Directory') if($test['mime_type'] != 'Directory')
{ {
die('Base directory does not exist, Ask adminstrator to check the global configuration.'); die('Base directory does not exist, Ask adminstrator to check the global configuration.');
} }
$test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->fakebase, 'relatives' => array(RELATIVE_NONE), 'relative' => False)); $test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->fakebase, 'relatives' => array(RELATIVE_NONE), 'relative' => False));
if($test[mime_type]!='Directory') if($test['mime_type'] != 'Directory')
{ {
$this->bo->vfs->override_acl = 1; $this->bo->vfs->override_acl = 1;
$this->bo->vfs->mkdir(array( $this->bo->vfs->mkdir(array(
@ -207,13 +199,13 @@
//test one more time //test one more time
$test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->fakebase, 'relatives' => array(RELATIVE_NONE), 'relative' => False)); $test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->fakebase, 'relatives' => array(RELATIVE_NONE), 'relative' => False));
if($test[mime_type]!='Directory') if($test['mime_type']!='Directory')
{ {
die('Fake Base directory does not exist and could not be created, please ask the administrator to check the global configuration.'); die('Fake Base directory does not exist and could not be created, please ask the administrator to check the global configuration.');
} }
else else
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array( $this->messages[]= $GLOBALS['egw']->common->error_list(array(
lang('Fake Base Dir did not exist, eGroupWare created a new one.') lang('Fake Base Dir did not exist, eGroupWare created a new one.')
)); ));
} }
@ -221,7 +213,7 @@
// die($this->bo->homedir); // die($this->bo->homedir);
$test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->homedir, 'relatives' => array(RELATIVE_NONE), 'relative' => False)); $test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->homedir, 'relatives' => array(RELATIVE_NONE), 'relative' => False));
if($test[mime_type]!='Directory') if($test['mime_type'] != 'Directory')
{ {
$this->bo->vfs->override_acl = 1; $this->bo->vfs->override_acl = 1;
@ -235,20 +227,18 @@
//test one more time //test one more time
$test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->homedir, 'relatives' => array(RELATIVE_NONE), 'relative' => False)); $test=$this->bo->vfs->get_real_info(array('string' => $this->bo->basedir.$this->bo->homedir, 'relatives' => array(RELATIVE_NONE), 'relative' => False));
if($test[mime_type]!='Directory') if($test['mime_type'] != 'Directory')
{ {
die('Your Home Dir does not exist and could not be created, please ask the adminstrator to check the global configuration.'); die('Your Home Dir does not exist and could not be created, please ask the adminstrator to check the global configuration.');
} }
else else
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array( $this->messages[]= $GLOBALS['egw']->common->error_list(array(
lang('Your Home Dir did not exist, eGroupWare created a new one.') lang('Your Home Dir did not exist, eGroupWare created a new one.')
)); ));
// FIXME we just created a fresh home dir so we know there nothing in it so we have to remove all existing content // FIXME we just created a fresh home dir so we know there nothing in it so we have to remove all existing content
} }
} }
} }
function index() function index()
@ -262,7 +252,7 @@
} }
else else
{ {
$GLOBALS['phpgw_info']['flags'] = array $GLOBALS['egw_info']['flags'] = array
( (
'currentapp' => 'filemanager', 'currentapp' => 'filemanager',
'noheader' => $noheader, 'noheader' => $noheader,
@ -272,11 +262,9 @@
'enable_browser_class' => True 'enable_browser_class' => True
); );
$GLOBALS['phpgw']->common->phpgw_header(); $GLOBALS['egw']->common->phpgw_header();
} }
# Page to process users # Page to process users
# Code is fairly hackish at the beginning, but it gets better # Code is fairly hackish at the beginning, but it gets better
# Highly suggest turning wrapping off due to long SQL queries # Highly suggest turning wrapping off due to long SQL queries
@ -340,13 +328,13 @@
# Get their readable groups to be used throughout the script # Get their readable groups to be used throughout the script
$groups = array(); $groups = array();
$groups = $GLOBALS['phpgw']->accounts->get_list('groups'); $groups = $GLOBALS['egw']->accounts->get_list('groups');
$this->readable_groups = array(); $this->readable_groups = array();
while(list($num, $account) = each($groups)) while(list($num, $account) = each($groups))
{ {
if($this->bo->vfs->acl_check(array('owner_id' => $account['account_id'], 'operation' => PHPGW_ACL_READ))) if($this->bo->vfs->acl_check(array('owner_id' => $account['account_id'],'operation' => EGW_ACL_READ)))
{ {
$this->readable_groups[$account['account_lid']] = Array('account_id' => $account['account_id'], 'account_name' => $account['account_lid']); $this->readable_groups[$account['account_lid']] = Array('account_id' => $account['account_id'], 'account_name' => $account['account_lid']);
} }
@ -356,7 +344,7 @@
while(list($num, $group_array) = each($this->readable_groups)) while(list($num, $group_array) = each($this->readable_groups))
{ {
$group_id = $GLOBALS['phpgw']->accounts->name2id($group_array['account_name']); $group_id = $GLOBALS['egw']->accounts->name2id($group_array['account_name']);
$applications = CreateObject('phpgwapi.applications', $group_id); $applications = CreateObject('phpgwapi.applications', $group_id);
$this->groups_applications[$group_array['account_name']] = $applications->read_account_specific(); $this->groups_applications[$group_array['account_name']] = $applications->read_account_specific();
@ -365,29 +353,26 @@
# We determine if they're in their home directory or a group's directory, # We determine if they're in their home directory or a group's directory,
# and set the VFS working_id appropriately # and set the VFS working_id appropriately
if((preg_match('+^'.$this->bo->fakebase.'\/(.*)(\/|$)+U', $this->path, $matches)) && $matches[1] != $this->bo->userinfo['account_lid']) //FIXME matches not defined if((preg_match('+^'.$this->bo->fakebase.'\/(.*)(\/|$)+U', $this->path, $matches)) && $matches[1] != $this->bo->userinfo['account_lid']) //FIXME matches not defined
{ {
$this->bo->vfs->working_id = $GLOBALS['phpgw']->accounts->name2id($matches[1]);//FIXME matches not defined $this->bo->vfs->working_id = $GLOBALS['egw']->accounts->name2id($matches[1]);//FIXME matches not defined
} }
else else
{ {
$this->bo->vfs->working_id = $this->bo->userinfo['username']; $this->bo->vfs->working_id = $this->bo->userinfo['username'];
} }
# FIXME # comment waht happens here # FIXME # comment waht happens here
if($this->path != $this->bo->homedir && $this->path != $this->bo->fakebase && $this->path != '/' && !$this->bo->vfs->acl_check(array('string' => $this->path, 'relatives' => array(RELATIVE_NONE),'operation' => PHPGW_ACL_READ))) if($this->path != $this->bo->homedir && $this->path != $this->bo->fakebase && $this->path != '/' && !$this->bo->vfs->acl_check(array('string' => $this->path, 'relatives' => array(RELATIVE_NONE),'operation' => EGW_ACL_READ)))
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array(lang('You do not have access to %1', $this->path))); $this->messages[]= $GLOBALS['egw']->common->error_list(array(lang('You do not have access to %1', $this->path)));
$this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->homedir, lang('Go to your home directory')); $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->homedir, lang('Go to your home directory'));
$GLOBALS['phpgw']->common->phpgw_footer(); $GLOBALS['egw']->common->phpgw_footer();
$GLOBALS['phpgw']->common->phpgw_exit(); $GLOBALS['egw']->common->phpgw_exit();
} }
$this->bo->userinfo['working_id'] = $this->bo->vfs->working_id; $this->bo->userinfo['working_id'] = $this->bo->vfs->working_id;
$this->bo->userinfo['working_lid'] = $GLOBALS['phpgw']->accounts->id2name($this->bo->userinfo['working_id']); $this->bo->userinfo['working_lid'] = $GLOBALS['egw']->accounts->id2name($this->bo->userinfo['working_id']);
# If their home directory doesn't exist, we try to create it # If their home directory doesn't exist, we try to create it
# Same for group directories # Same for group directories
@ -406,7 +391,7 @@
{ {
$p = $this->bo->vfs->path_parts($pim_tmp_arr); $p = $this->bo->vfs->path_parts($pim_tmp_arr);
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array( $this->messages[]= $GLOBALS['egw']->common->error_list(array(
lang('Could not create directory %1', lang('Could not create directory %1',
$this->bo->homedir . ' (' . $p->real_full_path . ')' $this->bo->homedir . ' (' . $p->real_full_path . ')'
))); )));
@ -424,11 +409,11 @@
'relatives' => array(RELATIVE_NONE) 'relatives' => array(RELATIVE_NONE)
))) )))
{ {
$this->messages[] = $GLOBALS['phpgw']->common->error_list(array(lang('Directory %1 does not exist', $this->path))); $this->messages[] = $GLOBALS['egw']->common->error_list(array(lang('Directory %1 does not exist', $this->path)));
$this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->bo->homedir, lang('Go to your home directory')); $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->bo->homedir, lang('Go to your home directory'));
$GLOBALS['phpgw']->common->phpgw_footer(); $GLOBALS['egw']->common->phpgw_footer();
$GLOBALS['phpgw']->common->phpgw_exit(); $GLOBALS['egw']->common->phpgw_exit();
} }
} }
@ -446,7 +431,7 @@
if($this->bo->vfs->acl_check(array( if($this->bo->vfs->acl_check(array(
'string' => $this->path, 'string' => $this->path,
'relatives' => array(RELATIVE_NONE), 'relatives' => array(RELATIVE_NONE),
'operation' => PHPGW_ACL_ADD 'operation' => EGW_ACL_ADD
))) )))
{ {
$this->can_add = True; $this->can_add = True;
@ -541,8 +526,8 @@
} }
$columns++; $columns++;
$vars[toolbar0]=$this->toolbar('location'); $vars['toolbar0'] = $this->toolbar('location');
$vars[toolbar1]=$this->toolbar('list_nav'); $vars['toolbar1'] = $this->toolbar('list_nav');
if(count($this->messages)>0) if(count($this->messages)>0)
{ {
@ -552,7 +537,7 @@
} }
} }
$vars[messages]=$messages; $vars['messages'] = $messages;
$this->t->set_var($vars); $this->t->set_var($vars);
$this->t->pparse('out','filemanager_header'); $this->t->pparse('out','filemanager_header');
@ -588,8 +573,7 @@
{ {
$lang_nofiles=lang('No files in this directory.'); $lang_nofiles=lang('No files in this directory.');
} }
$vars[lang_no_files]=$lang_nofiles; $vars['lang_no_files'] = $lang_nofiles;
if($this->prefs['dotdot'] && $this->prefs['name'] && $this->path != '/') if($this->prefs['dotdot'] && $this->prefs['name'] && $this->path != '/')
{ {
@ -597,7 +581,7 @@
$link=$this->encode_href('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->lesspath); $link=$this->encode_href('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->lesspath);
$col_data='<a href="'.$link.'"><img src="'.$GLOBALS['phpgw']->common->image('filemanager','mime16up').' "alt="'.lang('Folder Up').'" /></a>'; $col_data='<a href="'.$link.'"><img src="'.$GLOBALS['egw']->common->image('filemanager','mime16up').' "alt="'.lang('Folder Up').'" /></a>';
$col_data.='&nbsp;<a href="'.$link.'">..</a>'; $col_data.='&nbsp;<a href="'.$link.'">..</a>';
$this->t->set_var('col_data',$col_data); $this->t->set_var('col_data',$col_data);
@ -763,7 +747,7 @@
# Owner name # Owner name
if($this->prefs['owner']) if($this->prefs['owner'])
{ {
$this->t->set_var('col_data',$GLOBALS['phpgw']->accounts->id2name($files['owner_id'])); $this->t->set_var('col_data',$GLOBALS['egw']->accounts->id2name($files['owner_id']));
$this->t->parse('columns','column',True); $this->t->parse('columns','column',True);
} }
@ -773,7 +757,7 @@
$this->html_table_col_begin(); $this->html_table_col_begin();
if($files['createdby_id']) if($files['createdby_id'])
{ {
$col_data=$GLOBALS['phpgw']->accounts->id2name($files['createdby_id']); $col_data=$GLOBALS['egw']->accounts->id2name($files['createdby_id']);
} }
else $col_data=''; else $col_data='';
@ -786,7 +770,7 @@
{ {
if($files['modifiedby_id']) if($files['modifiedby_id'])
{ {
$col_data=$GLOBALS['phpgw']->accounts->id2name($files['modifiedby_id']); $col_data=$GLOBALS['egw']->accounts->id2name($files['modifiedby_id']);
} }
else $col_data=''; else $col_data='';
$this->t->set_var('col_data',$col_data); $this->t->set_var('col_data',$col_data);
@ -852,16 +836,16 @@
} }
// The file and directory information // The file and directory information
$vars[lang_files_in_this_dir]=lang('Files in this directory'); $vars['lang_files_in_this_dir'] = lang('Files in this directory');
$vars[files_in_this_dir]=$this->numoffiles; $vars['files_in_this_dir'] = $this->numoffiles;
$vars[lang_used_space]=lang('Used space'); $vars['lang_used_space'] = lang('Used space');
$vars[used_space]=$this->bo->borkb($usedspace, NULL, 1); $vars['used_space'] = $this->bo->borkb($usedspace, NULL, 1);
if($this->path == $this->bo->homedir || $this->path == $this->bo->fakebase) if($this->path == $this->bo->homedir || $this->path == $this->bo->fakebase)
{ {
$vars[lang_unused_space]=lang('Unused space'); $vars['lang_unused_space'] = lang('Unused space');
$vars[unused_space]=$this->bo->borkb($this->bo->userinfo['hdspace'] - $usedspace, NULL, 1); $vars['unused_space'] = $this->bo->borkb($this->bo->userinfo['hdspace'] - $usedspace, NULL, 1);
$tmp_arr=array( $tmp_arr=array(
'string' => $this->path, 'string' => $this->path,
@ -870,15 +854,15 @@
$ls_array = $this->bo->vfs->ls($tmp_arr); $ls_array = $this->bo->vfs->ls($tmp_arr);
$vars[lang_total_files]=lang('Total Files'); $vars['lang_total_files'] = lang('Total Files');
$vars[total_files]= count($ls_array); $vars['total_files'] = count($ls_array);
} }
$this->t->set_var($vars); $this->t->set_var($vars);
$this->t->pparse('out','filemanager_footer'); $this->t->pparse('out','filemanager_footer');
$GLOBALS['phpgw']->common->phpgw_footer(); $GLOBALS['egw']->common->phpgw_footer();
$GLOBALS['phpgw']->common->phpgw_exit(); $GLOBALS['egw']->common->phpgw_exit();
} }
function readFilesInfo() function readFilesInfo()
@ -915,7 +899,6 @@
continue; continue;
} }
if(!$this->bo->vfs->file_exists(array('string' => $this->bo->fakebase.'/'.$group_array['account_name'],'relatives' => array(RELATIVE_NONE)))) if(!$this->bo->vfs->file_exists(array('string' => $this->bo->fakebase.'/'.$group_array['account_name'],'relatives' => array(RELATIVE_NONE))))
{ {
$this->bo->vfs->override_acl = 1; $this->bo->vfs->override_acl = 1;
@ -926,7 +909,6 @@
// FIXME we just created a fresh group dir so we know there nothing in it so we have to remove all existing content // FIXME we just created a fresh group dir so we know there nothing in it so we have to remove all existing content
$this->bo->vfs->override_acl = 0; $this->bo->vfs->override_acl = 0;
$this->bo->vfs->set_attributes(array('string' => $this->bo->fakebase.'/'.$group_array['account_name'],'relatives' => array(RELATIVE_NONE),'attributes' => array('owner_id' => $group_array['account_id'],'createdby_id' => $group_array['account_id']))); $this->bo->vfs->set_attributes(array('string' => $this->bo->fakebase.'/'.$group_array['account_name'],'relatives' => array(RELATIVE_NONE),'attributes' => array('owner_id' => $group_array['account_id'],'createdby_id' => $group_array['account_id'])));
@ -982,9 +964,9 @@
<table cellspacing="1" cellpadding="0" border="0"> <table cellspacing="1" cellpadding="0" border="0">
<tr> <tr>
'; ';
$toolbar.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>'; $toolbar.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>';
$toolbar.=' $toolbar.='
<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; <td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
// go up icon when we're not at the top, dont allow to go outside /home = fakebase // go up icon when we're not at the top, dont allow to go outside /home = fakebase
if($this->path != '/' && $this->path != $this->bo->fakebase) if($this->path != '/' && $this->path != $this->bo->fakebase)
@ -1017,9 +999,9 @@
if($this->path != '/' && $this->path != $this->bo->fakebase && $this->can_add) if($this->path != '/' && $this->path != $this->bo->fakebase && $this->can_add)
{ {
$toolbar.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; $toolbar.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
$toolbar.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>'; $toolbar.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>';
$toolbar.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; $toolbar.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
// $toolbar.=$this->inputImage('download','download',lang('Download')); // $toolbar.=$this->inputImage('download','download',lang('Download'));
// upload button // upload button
@ -1036,9 +1018,9 @@
// submit buttons for // submit buttons for
if($this->path != '/' && $this->path != $this->bo->fakebase) if($this->path != '/' && $this->path != $this->bo->fakebase)
{ {
$toolbar.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>'; $toolbar.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>';
$toolbar.=' $toolbar.='
<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; <td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
if(!$this->rename_x && !$this->edit_comments_x) if(!$this->rename_x && !$this->edit_comments_x)
{ {
@ -1060,7 +1042,7 @@
{ {
$toolbar.=$this->inputImage('edit_comments','edit_comments',lang('Edit comments')); $toolbar.=$this->inputImage('edit_comments','edit_comments',lang('Edit comments'));
} }
$toolbar.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; $toolbar.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
} }
// $toolbar.='</tr></table>'; // $toolbar.='</tr></table>';
@ -1069,8 +1051,8 @@
// copy and move buttons // copy and move buttons
if($this->path != '/' && $this->path != $this->bo->fakebase) if($this->path != '/' && $this->path != $this->bo->fakebase)
{ {
$toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>'; $toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>';
$toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; $toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
$dirs_options=$this->all_other_directories_options(); $dirs_options=$this->all_other_directories_options();
$toolbar3.='<td><select name="todir">'.$dirs_options.'</select></td>'; $toolbar3.='<td><select name="todir">'.$dirs_options.'</select></td>';
@ -1078,15 +1060,15 @@
$toolbar3.=$this->inputImage('copy_to','copy_to',lang('Copy to')); $toolbar3.=$this->inputImage('copy_to','copy_to',lang('Copy to'));
$toolbar3.=$this->inputImage('move_to','move_to',lang('Move to')); $toolbar3.=$this->inputImage('move_to','move_to',lang('Move to'));
$toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; $toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
} }
// create dir and file button // create dir and file button
if($this->path != '/' && $this->path != $this->bo->fakebase && $this->can_add) if($this->path != '/' && $this->path != $this->bo->fakebase && $this->can_add)
{ {
$toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>'; $toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('phpgwapi','buttonseparator').'" height="27" width="8"></td>';
$toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['phpgw']->common->image('filemanager','spacer').'" height="27" width="1"></td>'; $toolbar3.='<td><img alt="spacer" src="'.$GLOBALS['egw']->common->image('filemanager','spacer').'" height="27" width="1"></td>';
$toolbar3.='<td><input type=text size="15" name="newfile_or_dir" value="" /></td>'; $toolbar3.='<td><input type=text size="15" name="newfile_or_dir" value="" /></td>';
$toolbar3.=$this->inputImage('newdir','createdir',lang('Create Folder')); $toolbar3.=$this->inputImage('newdir','createdir',lang('Create Folder'));
@ -1123,7 +1105,7 @@
{ {
if($badchar = $this->bo->bad_chars($_FILES['upload_file']['name'][$i], True, True)) if($badchar = $this->bo->bad_chars($_FILES['upload_file']['name'][$i], True, True))
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array($this->bo->html_encode(lang('File names cannot contain "%1"', $badchar), 1))); $this->messages[]= $GLOBALS['egw']->common->error_list(array($this->bo->html_encode(lang('File names cannot contain "%1"', $badchar), 1)));
continue; continue;
} }
@ -1142,7 +1124,7 @@
{ {
if($fileinfo['mime_type'] == 'Directory') if($fileinfo['mime_type'] == 'Directory')
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array(lang('Cannot replace %1 because it is a directory', $fileinfo['name']))); $this->messages[]= $GLOBALS['egw']->common->error_list(array(lang('Cannot replace %1 because it is a directory', $fileinfo['name'])));
continue; continue;
} }
} }
@ -1177,7 +1159,6 @@
} }
else else
{ {
$this->bo->vfs->cp(array( $this->bo->vfs->cp(array(
'from'=> $_FILES['upload_file']['tmp_name'][$i], 'from'=> $_FILES['upload_file']['tmp_name'][$i],
'to'=> $_FILES['upload_file']['name'][$i], 'to'=> $_FILES['upload_file']['name'][$i],
@ -1228,7 +1209,7 @@
{ {
if($badchar = $this->bo->bad_chars($this->comment_files[$file], False, True)) if($badchar = $this->bo->bad_chars($this->comment_files[$file], False, True))
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array($file . $this->bo->html_encode(': ' . lang('Comments cannot contain "%1"', $badchar), 1))); $this->messages[]=$GLOBALS['egw']->common->error_list(array($file . $this->bo->html_encode(': ' . lang('Comments cannot contain "%1"', $badchar), 1)));
continue; continue;
} }
@ -1254,20 +1235,20 @@
{ {
if($badchar = $this->bo->bad_chars($to, True, True)) if($badchar = $this->bo->bad_chars($to, True, True))
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array($this->bo->html_encode(lang('File names cannot contain "%1"', $badchar), 1))); $this->messages[]=$GLOBALS['egw']->common->error_list(array($this->bo->html_encode(lang('File names cannot contain "%1"', $badchar), 1)));
continue; continue;
} }
if(ereg("/", $to) || ereg("\\\\", $to)) if(ereg("/", $to) || ereg("\\\\", $to))
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array(lang("File names cannot contain \\ or /"))); $this->messages[]=$GLOBALS['egw']->common->error_list(array(lang("File names cannot contain \\ or /")));
} }
elseif(!$this->bo->vfs->mv(array( elseif(!$this->bo->vfs->mv(array(
'from' => $from, 'from' => $from,
'to' => $to 'to' => $to
))) )))
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array(lang('Could not rename %1 to %2', $this->disppath.'/'.$from, $this->disppath.'/'.$to))); $this->messages[]= $GLOBALS['egw']->common->error_list(array(lang('Could not rename %1 to %2', $this->disppath.'/'.$from, $this->disppath.'/'.$to)));
} }
else else
{ {
@ -1283,7 +1264,7 @@
{ {
if(!$this->todir) if(!$this->todir)
{ {
$this->messages[] = $GLOBALS['phpgw']->common->error_list(array(lang('Could not move file because no destination directory is given ', $this->disppath.'/'.$file))); $this->messages[] = $GLOBALS['egw']->common->error_list(array(lang('Could not move file because no destination directory is given ', $this->disppath.'/'.$file)));
} }
else else
@ -1302,7 +1283,7 @@
} }
else else
{ {
$this->messages[] = $GLOBALS['phpgw']->common->error_list(array(lang('Could not move %1 to %2', $this->disppath.'/'.$file, $this->todir.'/'.$file))); $this->messages[] = $GLOBALS['egw']->common->error_list(array(lang('Could not move %1 to %2', $this->disppath.'/'.$file, $this->todir.'/'.$file)));
} }
} }
} }
@ -1321,7 +1302,7 @@
{ {
if(!$this->todir) if(!$this->todir)
{ {
$this->messages[] = $GLOBALS['phpgw']->common->error_list(array(lang('Could not copy file because no destination directory is given ', $this->disppath.'/'.$file))); $this->messages[] = $GLOBALS['egw']->common->error_list(array(lang('Could not copy file because no destination directory is given ', $this->disppath.'/'.$file)));
} }
else else
@ -1339,7 +1320,7 @@
} }
else else
{ {
$this->message .= $GLOBALS['phpgw']->common->error_list(array(lang('Could not copy %1 to %2', $this->disppath.'/'.$file, $this->todir.'/'.$file))); $this->message .= $GLOBALS['egw']->common->error_list(array(lang('Could not copy %1 to %2', $this->disppath.'/'.$file, $this->todir.'/'.$file)));
} }
} }
} }
@ -1358,13 +1339,13 @@
{ {
if($this->bo->badchar = $this->bo->bad_chars($this->newfile_or_dir, True, True)) if($this->bo->badchar = $this->bo->bad_chars($this->newfile_or_dir, True, True))
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array($this->bo->html_encode(lang('Directory names cannot contain "%1"', $badchar), 1))); $this->messages[]= $GLOBALS['egw']->common->error_list(array($this->bo->html_encode(lang('Directory names cannot contain "%1"', $badchar), 1)));
} }
/* TODO is this right or should it be a single $ ? */ /* TODO is this right or should it be a single $ ? */
if($$this->newfile_or_dir[strlen($this->newfile_or_dir)-1] == ' ' || $this->newfile_or_dir[0] == ' ') if($$this->newfile_or_dir[strlen($this->newfile_or_dir)-1] == ' ' || $this->newfile_or_dir[0] == ' ')
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array(lang('Cannot create directory because it begins or ends in a space'))); $this->messages[]= $GLOBALS['egw']->common->error_list(array(lang('Cannot create directory because it begins or ends in a space')));
} }
$ls_array = $this->bo->vfs->ls(array( $ls_array = $this->bo->vfs->ls(array(
@ -1380,14 +1361,14 @@
{ {
if($fileinfo['mime_type'] != 'Directory') if($fileinfo['mime_type'] != 'Directory')
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array( $this->messages[]= $GLOBALS['egw']->common->error_list(array(
lang('%1 already exists as a file', lang('%1 already exists as a file',
$fileinfo['name']) $fileinfo['name'])
)); ));
} }
else else
{ {
$this->messages[]= $GLOBALS['phpgw']->common->error_list(array(lang('Directory %1 already exists', $fileinfo['name']))); $this->messages[]= $GLOBALS['egw']->common->error_list(array(lang('Directory %1 already exists', $fileinfo['name'])));
} }
} }
else else
@ -1398,7 +1379,7 @@
} }
else else
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array(lang('Could not create %1', $this->disppath.'/'.$this->newfile_or_dir))); $this->messages[]=$GLOBALS['egw']->common->error_list(array(lang('Could not create %1', $this->disppath.'/'.$this->newfile_or_dir)));
} }
} }
@ -1419,14 +1400,14 @@
} }
else else
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array(lang('Could not delete %1', $this->disppath.'/'.$filename))); $this->messages[]=$GLOBALS['egw']->common->error_list(array(lang('Could not delete %1', $this->disppath.'/'.$filename)));
} }
} }
} }
else else
{ {
// make this a javascript func for quicker respons // make this a javascript func for quicker respons
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array(lang('Please select a file to delete.'))); $this->messages[]=$GLOBALS['egw']->common->error_list(array(lang('Please select a file to delete.')));
} }
$this->readFilesInfo(); $this->readFilesInfo();
$this->filelisting(); $this->filelisting();
@ -1445,7 +1426,7 @@
<b>eGroupware debug:</b><br> <b>eGroupware debug:</b><br>
real getabsolutepath: " . $this->bo->vfs->getabsolutepath(array('target' => False, 'mask' => False, 'fake' => False)) . "<br> real getabsolutepath: " . $this->bo->vfs->getabsolutepath(array('target' => False, 'mask' => False, 'fake' => False)) . "<br>
fake getabsolutepath: " . $this->bo->vfs->getabsolutepath(array('target' => False)) . "<br> fake getabsolutepath: " . $this->bo->vfs->getabsolutepath(array('target' => False)) . "<br>
appsession: " . $GLOBALS['phpgw']->session->appsession('vfs','') . "<br> appsession: " . $GLOBALS['egw']->session->appsession('vfs','') . "<br>
pwd: " . $this->bo->vfs->pwd() . "<br>"; pwd: " . $this->bo->vfs->pwd() . "<br>";
echo '<p></p>'; echo '<p></p>';
@ -1471,11 +1452,11 @@
# Show file upload boxes. Note the last argument to html(). Repeats $this->show_upload_boxes times # Show file upload boxes. Note the last argument to html(). Repeats $this->show_upload_boxes times
if($this->path != '/' && $this->path != $this->bo->fakebase && $this->can_add) if($this->path != '/' && $this->path != $this->bo->fakebase && $this->can_add)
{ {
$vars[form_action]=$GLOBALS[phpgw]->link('/index.php','menuaction=filemanager.uifilemanager.index'); $vars['form_action']=$GLOBALS['egw']->link('/index.php','menuaction=filemanager.uifilemanager.index');
$vars[path]=$this->path; $vars['path']=$this->path;
$vars[lang_file]=lang('File'); $vars['lang_file']=lang('File');
$vars[lang_comment]=lang('Comment'); $vars['lang_comment']=lang('Comment');
$vars[num_upload_boxes]=$this->show_upload_boxes; $vars['num_upload_boxes']=$this->show_upload_boxes;
$this->t->set_var($vars); $this->t->set_var($vars);
$this->t->pparse('out','upload_header'); $this->t->pparse('out','upload_header');
@ -1486,8 +1467,8 @@
$this->t->pparse('out','row'); $this->t->pparse('out','row');
} }
$vars[lang_upload]=lang('Upload files'); $vars['lang_upload']=lang('Upload files');
$vars[change_upload_boxes].=lang('Show') . '&nbsp;'; $vars['change_upload_boxes'].=lang('Show') . '&nbsp;';
$links.= $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','show_upload_boxes=5', '5'); $links.= $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','show_upload_boxes=5', '5');
$links.='&nbsp;'; $links.='&nbsp;';
$links.= $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','show_upload_boxes=10', '10'); $links.= $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','show_upload_boxes=10', '10');
@ -1497,7 +1478,7 @@
$links.= $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','show_upload_boxes=50', '50'); $links.= $this->html_link('/index.php','menuaction=filemanager.uifilemanager.index','show_upload_boxes=50', '50');
$links.='&nbsp;'; $links.='&nbsp;';
$links.= lang('upload fields'); $links.= lang('upload fields');
$vars[change_upload_boxes].=$links; $vars['change_upload_boxes'].=$links;
$this->t->set_var($vars); $this->t->set_var($vars);
$this->t->pparse('out','upload_footer'); $this->t->pparse('out','upload_footer');
} }
@ -1511,7 +1492,7 @@
{ {
if($badchar = $this->bo->bad_chars($this->createfile_var, True, True)) if($badchar = $this->bo->bad_chars($this->createfile_var, True, True))
{ {
$this->messages[] = $GLOBALS['phpgw']->common->error_list(array( $this->messages[] = $GLOBALS['egw']->common->error_list(array(
lang('File names cannot contain "%1"',$badchar), lang('File names cannot contain "%1"',$badchar),
1) 1)
); );
@ -1524,7 +1505,7 @@
'relatives' => array(RELATIVE_ALL) 'relatives' => array(RELATIVE_ALL)
))) )))
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array(lang('File %1 already exists. Please edit it or delete it first.', $this->createfile_var))); $this->messages[]=$GLOBALS['egw']->common->error_list(array(lang('File %1 already exists. Please edit it or delete it first.', $this->createfile_var)));
$this->fileListing(); $this->fileListing();
} }
@ -1541,7 +1522,7 @@
} }
else else
{ {
$this->messages[]=$GLOBALS['phpgw']->common->error_list(array(lang('File %1 could not be created.', $this->createfile_var))); $this->messages[]=$GLOBALS['egw']->common->error_list(array(lang('File %1 could not be created.', $this->createfile_var)));
$this->fileListing(); $this->fileListing();
} }
} }
@ -1555,7 +1536,7 @@
$this->t->set_file(array('filemanager_edit' => 'edit_file.tpl')); $this->t->set_file(array('filemanager_edit' => 'edit_file.tpl'));
$this->t->set_block('filemanager_edit','row','row'); $this->t->set_block('filemanager_edit','row','row');
$vars[preview_content]=''; $vars['preview_content'] = '';
if($this->edit_file) if($this->edit_file)
{ {
$this->edit_file_content = stripslashes($this->edit_file_content); $this->edit_file_content = stripslashes($this->edit_file_content);
@ -1565,9 +1546,9 @@
{ {
$content = $this->edit_file_content; $content = $this->edit_file_content;
$vars[lang_preview_of]=lang('Preview of %1', $this->path.'/'.$edit_file); $vars['lang_preview_of'] = lang('Preview of %1', $this->path.'/'.$edit_file);
$vars[preview_content]=nl2br($content); $vars['preview_content'] = nl2br($content);
} }
elseif($this->edit_save_x || $this->edit_save_done_x) elseif($this->edit_save_x || $this->edit_save_done_x)
{ {
@ -1618,23 +1599,26 @@
$content = $this->bo->vfs->read(array('string' => $this->fileman[$j])); $content = $this->bo->vfs->read(array('string' => $this->fileman[$j]));
} }
$vars[form_action]= $GLOBALS['phpgw']->link('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->path); $vars['form_action'] = $GLOBALS['egw']->link('/index.php','menuaction=filemanager.uifilemanager.index','path='.$this->path);
$vars[edit_file]=$this->fileman[$j]; $vars['edit_file'] = $this->fileman[$j];
# We need to include all of the fileman entries for each file's form, # We need to include all of the fileman entries for each file's form,
# so we loop through again # so we loop through again
for($i = 0; $i != $this->numoffiles; $i++) for($i = 0; $i != $this->numoffiles; $i++)
{ {
if($this->fileman[$i]) $value='value="'.$this->fileman[$i].'"'; if($this->fileman[$i])
$vars[filemans_hidden]='<input type="hidden" name="fileman['.$i.']" '.$value.' />'; {
$value='value="'.$this->fileman[$i].'"';
}
$vars['filemans_hidden'] = '<input type="hidden" name="fileman['.$i.']" '.$value.' />';
} }
$vars[file_content]=$content; $vars['file_content'] = $content;
$vars[buttonPreview]=$this->inputImage('edit_preview','edit_preview',lang('Preview %1', $this->bo->html_encode($this->fileman[$j], 1))); $vars['buttonPreview'] = $this->inputImage('edit_preview','edit_preview',lang('Preview %1', $this->bo->html_encode($this->fileman[$j], 1)));
$vars[buttonSave]=$this->inputImage('edit_save','save',lang('Save %1', $this->bo->html_encode($this->fileman[$j], 1))); $vars['buttonSave'] = $this->inputImage('edit_save','save',lang('Save %1', $this->bo->html_encode($this->fileman[$j], 1)));
$vars[buttonDone]=$this->inputImage('edit_save_done','ok',lang('Save %1, and go back to file listing ', $this->bo->html_encode($this->fileman[$j], 1))); $vars['buttonDone'] = $this->inputImage('edit_save_done','ok',lang('Save %1, and go back to file listing ', $this->bo->html_encode($this->fileman[$j], 1)));
$vars[buttonCancel]=$this->inputImage('edit_cancel','cancel',lang('Cancel editing %1 without saving', $this->bo->html_encode($this->fileman[$j], 1))); $vars['buttonCancel'] = $this->inputImage('edit_cancel','cancel',lang('Cancel editing %1 without saving', $this->bo->html_encode($this->fileman[$j], 1)));
$this->t->set_var($vars); $this->t->set_var($vars);
$this->t->parse('rows','row'); $this->t->parse('rows','row');
$this->t->pparse('out','row'); $this->t->pparse('out','row');
@ -1680,7 +1664,7 @@
$this->bo->html_text($journal_entry['version'] . '&nbsp;&nbsp;&nbsp;' ); $this->bo->html_text($journal_entry['version'] . '&nbsp;&nbsp;&nbsp;' );
$this->html_table_col_end(); $this->html_table_col_end();
$this->html_table_col_begin(); $this->html_table_col_begin();
$this->bo->html_text($GLOBALS['phpgw']->accounts->id2name($journal_entry['owner_id']) . '&nbsp;&nbsp;&nbsp;'); $this->bo->html_text($GLOBALS['egw']->accounts->id2name($journal_entry['owner_id']) . '&nbsp;&nbsp;&nbsp;');
$this->html_table_col_end(); $this->html_table_col_end();
$this->html_table_col_begin(); $this->html_table_col_begin();
$this->bo->html_text($journal_entry['comment']); $this->bo->html_text($journal_entry['comment']);
@ -1688,8 +1672,8 @@
} }
$this->html_table_end(); $this->html_table_end();
$GLOBALS['phpgw']->common->phpgw_footer(); $GLOBALS['egw']->common->phpgw_footer();
$GLOBALS['phpgw']->common->phpgw_exit(); $GLOBALS['egw']->common->phpgw_exit();
} }
else else
{ {
@ -1717,24 +1701,29 @@
{ {
$mime_type = 'text/plain'; $mime_type = 'text/plain';
} }
else
{
list($_first,$_ext) = split("\.",$this->file);
$mime_type = ExecMethod('phpgwapi.mime_magic.ext2mime',$_ext);
}
$viewable = array('','text/plain','text/csv','text/html','text/text'); $viewable = array('','text/plain','text/csv','text/html','text/text');
if(in_array($mime_type,$viewable) && !$_GET['download']) if(in_array($mime_type,$viewable) && !$_GET['download'])
{ {
header('Content-type: ' . $mime_type);
header('Content-type: ' . $mime_type);
header('Content-disposition: filename="' . $this->file . '"');//FIXME header('Content-disposition: filename="' . $this->file . '"');//FIXME
Header("Pragma: public"); Header("Pragma: public");
} }
else else
{ {
$GLOBALS['phpgw']->browser->content_header($this->file,$mime_type);//FIXME
$GLOBALS['egw']->browser->content_header($this->file,$mime_type);//FIXME
} }
echo $this->bo->vfs->read(array( echo $this->bo->vfs->read(array(
'string' => $this->path.'/'.$this->file,//FIXME 'string' => $this->path.'/'.$this->file,//FIXME
'relatives' => array(RELATIVE_NONE) 'relatives' => array(RELATIVE_NONE)
)); ));
$GLOBALS['phpgw']->common->phpgw_exit(); $GLOBALS['egw']->common->phpgw_exit();
} }
} }
@ -1750,7 +1739,7 @@
$download_browser = CreateObject('phpgwapi.browser'); $download_browser = CreateObject('phpgwapi.browser');
$download_browser->content_header($this->fileman[$i]); $download_browser->content_header($this->fileman[$i]);
echo $this->bo->vfs->read(array('string' => $this->fileman[$i])); echo $this->bo->vfs->read(array('string' => $this->fileman[$i]));
$GLOBALS['phpgw']->common->phpgw_exit(); $GLOBALS['egw']->common->phpgw_exit();
} }
} }
@ -1830,12 +1819,18 @@
/* seek icon for mimetype else return an unknown icon */ /* seek icon for mimetype else return an unknown icon */
function mime_icon($mime_type, $size=16) function mime_icon($mime_type, $size=16)
{ {
if(!$mime_type) $mime_type='unknown'; if(!$mime_type)
{
$mime_type='unknown';
}
$mime_type= str_replace ('/','_',$mime_type); $mime_type= str_replace ('/','_',$mime_type);
$img=$GLOBALS['phpgw']->common->image('filemanager','mime'.$size.'_'.strtolower($mime_type)); $img=$GLOBALS['egw']->common->image('filemanager','mime'.$size.'_'.strtolower($mime_type));
if(!$img) $img=$GLOBALS['phpgw']->common->image('filemanager','mime'.$size.'_unknown'); if(!$img)
{
$img = $GLOBALS['egw']->common->image('filemanager','mime'.$size.'_unknown');
}
$icon='<img src="'.$img.' "alt="'.lang($mime_type).'" />'; $icon='<img src="'.$img.' "alt="'.lang($mime_type).'" />';
return $icon; return $icon;
@ -1843,7 +1838,7 @@
function buttonImage($link,$img='',$help='') function buttonImage($link,$img='',$help='')
{ {
$image=$GLOBALS['phpgw']->common->image('filemanager','button_'.strtolower($img)); $image=$GLOBALS['egw']->common->image('filemanager','button_'.strtolower($img));
if($img) if($img)
{ {
@ -1855,7 +1850,7 @@
function inputImage($name,$img='',$help='') function inputImage($name,$img='',$help='')
{ {
$image=$GLOBALS['phpgw']->common->image('filemanager','button_'.strtolower($img)); $image=$GLOBALS['egw']->common->image('filemanager','button_'.strtolower($img));
if($img) if($img)
{ {
@ -1919,7 +1914,7 @@
$href = $this->bo->string_encode($href, 1); $href = $this->bo->string_encode($href, 1);
$all_args = $args.'&'.$this->bo->string_encode($extra_args, 1); $all_args = $args.'&'.$this->bo->string_encode($extra_args, 1);
$address = $GLOBALS['phpgw']->link($href, $all_args); $address = $GLOBALS['egw']->link($href, $all_args);
return $address; return $address;
} }
@ -1956,8 +1951,8 @@
/* $phpgw->link requires that the extra vars be passed separately */ /* $phpgw->link requires that the extra vars be passed separately */
// $link_parts = explode("?", $href); // $link_parts = explode("?", $href);
$address = $GLOBALS['phpgw']->link($href, $all_args); $address = $GLOBALS['egw']->link($href, $all_args);
// $address = $GLOBALS['phpgw']->link($href); // $address = $GLOBALS['egw']->link($href);
} }
else else
{ {

View File

@ -1,23 +1,34 @@
<?php <?php
/**************************************************************************\
* eGroupWare - Filemanager *
* http://www.egroupware.org *
* ------------------------------------------------------------------------ *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
global $pref; /* $Id$ */
$pref->change ("filemanager", "name", "True"); global $pref;
$pref->change ("filemanager", "mime_type", "True");
$pref->change ("filemanager", "size", "True"); $pref->change('filemanager', 'name', 'True');
$pref->change ("filemanager", "created", "True"); $pref->change('filemanager', 'mime_type', 'True');
$pref->change ("filemanager", "modified", "True"); $pref->change('filemanager', 'size', 'True');
//$pref->change ("filemanager", "owner", "False"); $pref->change('filemanager', 'created', 'True');
$pref->change ("filemanager", "createdby_id", "True"); $pref->change('filemanager', 'modified', 'True');
$pref->change ("filemanager", "modifiedby_id", "True"); //$pref->change('filemanager', 'owner', 'False');
//$pref->change ("filemanager", "app", "False"); $pref->change('filemanager', 'createdby_id', 'True');
$pref->change ("filemanager", "comment", "True"); $pref->change('filemanager', 'modifiedby_id', 'True');
//$pref->change ("filemanager", "viewinnewwin", "False"); //$pref->change('filemanager', 'app', 'False');
//$pref->change ("filemanager", "viewonserver", "False"); $pref->change('filemanager', 'comment', 'True');
$pref->change ("filemanager", "viewtextplain", True); //$pref->change('filemanager', 'viewinnewwin', 'False');
//$pref->change ("filemanager", "dotdot", "False"); //$pref->change('filemanager', 'viewonserver', 'False');
//$pref->change ("filemanager", "dotfiles", "False"); $pref->change('filemanager', 'viewtextplain', True);
//$pref->change ("filemanager", "show_help", "False"); //$pref->change('filemanager', 'dotdot', 'False');
$pref->change ("filemanager", "show_upload_boxes", "5"); //$pref->change('filemanager', 'dotfiles', 'False');
//$pref->change('filemanager', 'show_help', 'False');
$pref->change('filemanager', 'show_upload_boxes', '5');
?> ?>

View File

@ -1,6 +1,6 @@
<?php <?php
/**************************************************************************\ /**************************************************************************\
* eGroupWare - Calendar's Sidebox-Menu for idots-template * * eGroupWare - Filemanager Sidebox-Menu for idots-template *
* http://www.egroupware.org * * http://www.egroupware.org *
* Written by Pim Snel <pim@lingewoud.nl> * * Written by Pim Snel <pim@lingewoud.nl> *
* -------------------------------------------- * * -------------------------------------------- *

View File

@ -1,25 +1,25 @@
<?php <?php
/**************************************************************************\
* eGroupWare - Filemanager *
* http://www.egroupware.org *
* ------------------------------------------------------------------------ *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
// FIXME add copyright header /* $Id$ */
/*
eGroupWare - http://www.egroupware.org
written by Pim Snel <pim@lingewoud.nl>
*/
$GLOBALS['egw_info']['flags'] = array(
$phpgw_flags = Array( 'currentapp' => 'filemanager',
'currentapp' => 'filemanager', 'noheader' => True,
'noheader' => True, 'nonavbar' => True,
'nonavbar' => True, 'noappheader' => True,
'noappheader' => True, 'noappfooter' => True,
'noappfooter' => True, 'nofooter' => True
'nofooter' => True
); );
$GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
include('../header.inc.php'); include('../header.inc.php');
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=filemanager.uifilemanager.index')); ExecMethod('filemanager.uifilemanager.index');
$GLOBALS['phpgw']->common->phpgw_exit();
?> ?>

View File

@ -13,5 +13,4 @@
$oProc->query("INSERT INTO phpgw_vfs (owner_id, createdby_id, modifiedby_id, created, modified, size, mime_type, deleteable, comment, app, directory, name, link_directory, link_name) VALUES (1,0,0,'1970-01-01',NULL,NULL,'Directory','Y',NULL,NULL,'/','', NULL, NULL)"); $oProc->query("INSERT INTO phpgw_vfs (owner_id, createdby_id, modifiedby_id, created, modified, size, mime_type, deleteable, comment, app, directory, name, link_directory, link_name) VALUES (1,0,0,'1970-01-01',NULL,NULL,'Directory','Y',NULL,NULL,'/','', NULL, NULL)");
$oProc->query("INSERT INTO phpgw_vfs (owner_id, createdby_id, modifiedby_id, created, modified, size, mime_type, deleteable, comment, app, directory, name, link_directory, link_name) VALUES (2,0,0,'1970-01-01',NULL,NULL,'Directory','Y',NULL,NULL,'/','home', NULL, NULL)"); $oProc->query("INSERT INTO phpgw_vfs (owner_id, createdby_id, modifiedby_id, created, modified, size, mime_type, deleteable, comment, app, directory, name, link_directory, link_name) VALUES (2,0,0,'1970-01-01',NULL,NULL,'Directory','Y',NULL,NULL,'/','home', NULL, NULL)");
?> ?>

View File

@ -18,21 +18,19 @@
$setup_info['filemanager']['enable'] = 1; $setup_info['filemanager']['enable'] = 1;
/* The hooks this app includes, needed for hooks registration */ /* The hooks this app includes, needed for hooks registration */
$setup_info['filemanager']['hooks'] = array $setup_info['filemanager']['hooks'] = array(
(
'add_def_pref', 'add_def_pref',
'admin', 'admin',
'deleteaccount', 'deleteaccount',
'settings', 'settings',
'sidebox_menu', 'sidebox_menu',
'personalizer', 'personalizer',
'preferences', 'preferences'
); );
/* Dependencies for this app to work */ /* Dependencies for this app to work */
$setup_info['filemanager']['depends'][] = array $setup_info['filemanager']['depends'][] = array(
( 'appname' => 'phpgwapi',
'appname' => 'phpgwapi', 'versions' => array('0.9.14','0.9.16','1.0.0','1.0.1')
'versions' => array('0.9.14','0.9.16','1.0.0','1.0.1')
); );
?> ?>