]>
git.p6c8.net - devedit.git/blob - modules/Tool.pm
4 # Dev-Editor - Module Tool
6 # Some shared sub routines
8 # Author: Patrick Canterino <patshaping@gmx.net>
9 # Last modified: 2004-11-13
26 use base
qw(Exporter);
28 @EXPORT = qw(check_path
38 # Check if a virtual path is above a virtual root directory
39 # (currently no check if the path exists - check otherwise!)
41 # Params: 1. Virtual root directory
42 # 2. Virtual path to check
44 # Return: Array with the physical and the cleaned virtual path;
45 # false, if the submitted path is above the root directory
49 my ($root,$path) = @_;
53 $root = abs_path
($root);
54 $root = File
::Spec
->canonpath($root);
57 $path = $root."/".$path;
59 # We extract the last part of the path and create the absolute path
61 my $first = upper_path
($path);
62 my $last = file_name
($path);
64 $first = abs_path
($first);
65 $path = $first."/".$last;
67 $first = File
::Spec
->canonpath($first);
68 $path = File
::Spec
->canonpath($path);
70 # Check if the path is above the root directory
72 return if(index($path,$root) != 0);
73 return if($first eq $root && $last =~ m!^(/|\\)?\.\.(/|\\)?$!);
75 # Create short path name
77 my $short_path = substr($path,length($root));
78 $short_path =~ tr!\\!\/!;
79 $short_path = "/".$short_path if($short_path !~ m
!^/!);
80 $short_path = $short_path."/" if($short_path !~ m
!/$! && -d
$path);
82 return ($path,$short_path);
87 # Clean up a path logically and replace backslashes with
92 # Return: Cleaned path
97 $path = File
::Spec
->canonpath($path);
105 # Create a HTTP redirection header to load Dev-Editor
106 # with some other parameters
108 # Params: Hash Reference (will be merged to a query string)
110 # Return: HTTP redirection header (Scalar Reference)
112 sub devedit_reload
($)
116 # Detect the protocol (simple HTTP or SSL encrypted HTTP)
117 # and check if the server listens on the default port
124 # SSL encrypted HTTP (HTTPS)
127 $port = ":".$ENV{'SERVER_PORT'} if($ENV{'SERVER_PORT'} != 443);
134 $port = ":".$ENV{'SERVER_PORT'} if($ENV{'SERVER_PORT'} != 80);
137 # The following code is grabbed from Template::_query of
138 # Andre Malo's selfforum (http://sourceforge.net/projects/selfforum/)
139 # and modified by Patrick Canterino
141 my $query = '?'.join ('&' =>
144 ?
map{escape
($_).'='.escape
($params -> {$_})} @
{$params -> {$_}}
145 : escape
($_).'='.escape
($params -> {$_})
149 # Create the redirection header
151 my $header = redirect
($protocol."://".virtual_host
.$port.$ENV{'SCRIPT_NAME'}.$query);
158 # Create URL equal to a file or directory
160 # Params: 1. HTTP root
163 # Return: Formatted link (String)
167 my ($root,$path) = @_;
172 $url = $root."/".$path;
179 # Return the last part of a path
183 # Return: Last part of the path
192 $path = substr($path,0,-1) if($path =~ m!/$!);
193 $path = substr($path,rindex($path,"/")+1);
201 # Convert a file mode number into a human readable string (rwxr-x-r-x)
202 # (also supports SetUID, SetGID and Sticky Bit)
204 # Params: File mode number
206 # Return: Human readable mode string
215 $string = ($mode & 00400) ?
"r" : "-";
216 $string .= ($mode & 00200) ?
"w" : "-";
217 $string .= ($mode & 00100) ?
(($mode & 04000) ?
"s" : "x") :
218 ($mode & 04000) ?
"S" : "-";
222 $string .= ($mode & 00040) ?
"r" : "-";
223 $string .= ($mode & 00020) ?
"w" : "-";
224 $string .= ($mode & 00010) ?
(($mode & 02000) ?
"s" : "x") :
225 ($mode & 02000) ?
"S" : "-";
229 $string .= ($mode & 00004) ?
"r" : "-";
230 $string .= ($mode & 00002) ?
"w" : "-";
231 $string .= ($mode & 00001) ?
(($mode & 01000) ?
"t" : "x") :
232 ($mode & 01000) ?
"T" : "-";
239 # Cut away the last part of a path
243 # Return: Truncated path
252 $path = substr($path,0,-1) if($path =~ m!/$!);
253 $path = substr($path,0,rindex($path,"/")+1);
259 # it's true, baby ;-)
patrick-canterino.de