From 7298dfdca1babc44d36b5c1c36f315786df09f13 Mon Sep 17 00:00:00 2001 From: cajus Date: Wed, 19 Jul 2006 13:44:42 +0000 Subject: [PATCH] Updated files to handle umlauts git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@4238 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/systems/class_servNfs.inc | 29 +++++++++++++++---- .../environment/class_environment.inc | 15 ++++++++-- 2 files changed, 36 insertions(+), 8 deletions(-) diff --git a/plugins/admin/systems/class_servNfs.inc b/plugins/admin/systems/class_servNfs.inc index e89bab3ea..34e2a2203 100644 --- a/plugins/admin/systems/class_servNfs.inc +++ b/plugins/admin/systems/class_servNfs.inc @@ -32,7 +32,7 @@ class servnfs extends plugin { plugin::plugin ($config, $dn); - $this->types = array("NFS"=>"NFS","samba"=>"samba","netatalk"=>"netatalk","NCP"=>"NCP"); + $this->types = array("CIFS" => "CIFS", "NFS"=>"NFS","samba"=>"samba","netatalk"=>"netatalk","NCP"=>"NCP"); if($dn){ $this->host = substr($dn, 3, strpos($dn, ',')-3); } @@ -71,10 +71,16 @@ class servnfs extends plugin list($this->name, $this->description, $this->type, $this->charset, $this->path, $this->option, $this->volume)= split("\|",$entry."|"); $this->is_edit = true; + + /* Decode if path is base64 */ + if (!preg_match('%/%', $this->path)){ + $this->path= base64_decode($this->path); + } }else{ $this->attributes[] = "name"; } + $this->create_mount_init = $mount; } @@ -181,7 +187,7 @@ class servnfs extends plugin // only 0-9a-z if(!$this->is_edit){ - if(preg_match("/[^a-z0-9\.\-_]/i",$this->name)){ + if(!preg_match("/^[a-z0-9\.\-_]+$/i",$this->name)){ $message[]=_("Please specify a valid name for your share."); } if(empty($this->name)){ @@ -189,11 +195,11 @@ class servnfs extends plugin } } - if(preg_match("/\|/",$this->description)){ + if(preg_match("/[^a-z0-9._+ \|-]+/i",$this->description)){ $message[]=_("Description contains invalid characters."); } - if(preg_match("/\|/",$this->volume)){ + if(preg_match("/[^a-z0-9._+ |-]/i",$this->volume)){ $message[]=_("Volume contains invalid characters."); } @@ -201,7 +207,11 @@ class servnfs extends plugin $message[]=_("Path contains invalid characters."); } - if(preg_match("/\|/",$this->option)){ + if(!preg_match("%/%",$this->path)){ + $message[]=_("Path must contain at least one slash."); + } + + if(preg_match("/[^a-z0-9._+ \|-]/i",$this->option)){ $message[]=_("Option contains invalid characters."); } @@ -244,7 +254,14 @@ class servnfs extends plugin $s_return.= $this->description."|"; $s_return.= $this->type."|"; $s_return.= $this->charset."|"; - $s_return.= $this->path."|"; + + /* Encode path if it contains non ascii letters */ + $path= $this->path; + if (!preg_match('=^[a-z0-9+_/%-]+$=i', $path)){ + $path= base64_encode($this->path); + } + + $s_return.= $path."|"; $s_return.= $this->option."|"; $s_return.= $this->volume; diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc index c411cd138..7028202a2 100644 --- a/plugins/personal/environment/class_environment.inc +++ b/plugins/personal/environment/class_environment.inc @@ -149,7 +149,14 @@ class environment extends plugin $tmp = split("\|",$share); $tmp2['server'] =$tmp[0]; $tmp2['name'] =$tmp[1]; - $tmp2['mountPoint'] =$tmp[2]; + + /* Decode base64 if needed */ + if (!preg_match('%/%', $tmp[2])){ + $tmp2['mountPoint'] =base64_decode($tmp[2]); + } else { + $tmp2['mountPoint'] =$tmp[2]; + } + if(isset($tmp[3])){ $tmp2['PwdHash'] =$tmp[3]; }else{ @@ -1004,7 +1011,11 @@ class environment extends plugin /* Prepare Shares */ $this->attrs['gotoShare']=array(); foreach($this->gotoShares as $name => $share){ - $this->attrs['gotoShare'][] =$share['server']."|".$share['name']."|".$share['mountPoint']."|".$share['PwdHash']."|".$share['Username']; + $mntp= $share['mountPoint']; + if (!preg_match('=^[a-z0-9+_/%-]+$=i', $mntp)){ + $mntp= base64_encode($mntp); + } + $this->attrs['gotoShare'][] =$share['server']."|".$share['name']."|".$mntp."|".$share['PwdHash']."|".$share['Username']; } -- 2.30.2