diff options
author | Ted Trask <ttrask01@yahoo.com> | 2009-12-28 10:32:40 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2009-12-28 10:32:40 +0000 |
commit | 2678d43e1f155b2b692c729bb0470967072a8d58 (patch) | |
tree | 3eb10f930770897e028bac3079d7eb46e5a481c8 /lib | |
parent | bd7a0266eb07cb8859fa7518f0000ef0240923d6 (diff) | |
download | acf-core-2678d43e1f155b2b692c729bb0470967072a8d58.tar.bz2 acf-core-2678d43e1f155b2b692c729bb0470967072a8d58.tar.xz |
Removed redundant/buggy basename and dirname functions. Added parse_redir_string to www controller.
Removed basename and dirname from mvc and fs, use posix functions instead.
parse_path_info was buggy and used 2 ways, rewrote and created parse_redir_string for backwards parsing.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fs.lua | 38 | ||||
-rw-r--r-- | lib/menubuilder.lua | 5 | ||||
-rw-r--r-- | lib/roles.lua | 2 |
3 files changed, 15 insertions, 30 deletions
@@ -10,22 +10,6 @@ module (..., package.seeall) require("posix") require("format") -basename = function (string, suffix) - string = string or "" - local basename = string.gsub (string, "[^/]*/", "") - if suffix then - basename = string.gsub ( basename, suffix, "" ) - end - return basename -end - -dirname = function ( string) - string = string or "" - local basename = basename(string) - string = string.sub(string, 1, #string - #basename - 1) - return string -end - -- generic wrapper funcs function is_dir ( pathstr ) return posix.stat ( pathstr or "", "type" ) == "directory" @@ -71,7 +55,7 @@ end -- Creates a blank file (and the directory if necessary) function create_file ( path ) path = path or "" - if dirname(path) and not posix.stat(dirname(path)) then create_directory(dirname(path)) end + if posix.dirname(path) and not posix.stat(posix.dirname(path)) then create_directory(posix.dirname(path)) end local f = io.open(path, "w") if f then f:close() end return is_file(path) @@ -80,11 +64,11 @@ end -- Copies a file to a directory or new filename (creating the directory if necessary) -- fails if new file is already a directory function copy_file(oldpath, newpath) - if not is_file(oldpath) or not newpath or newpath == "" or (basename(newpath) ~= "" and is_dir(newpath)) or (basename(newpath) == "" and is_dir(newpath .. basename(oldpath))) then + if not is_file(oldpath) or not newpath or newpath == "" or (posix.basename(newpath) ~= "." and is_dir(newpath)) or (posix.basename(newpath) == "." and is_dir(newpath .. posix.basename(oldpath))) then return false end - if dirname(newpath) and not posix.stat(dirname(newpath)) then create_directory(dirname(newpath)) end - if basename(newpath) == "" then newpath = newpath .. basename(oldpath) end + if posix.dirname(newpath) and not posix.stat(posix.dirname(newpath)) then create_directory(posix.dirname(newpath)) end + if posix.basename(newpath) == "." then newpath = newpath .. posix.basename(oldpath) end local old = io.open(oldpath, "r") local new = io.open(newpath, "w") new:write(old:read("*a")) @@ -96,11 +80,11 @@ end -- Moves a file to a directory or new filename (creating the directory if necessary) -- fails if new file is already a directory function move_file(oldpath, newpath) - if not is_file(oldpath) or not newpath or newpath == "" or (basename(newpath) ~= "" and is_dir(newpath)) or (basename(newpath) == "" and is_dir(newpath .. basename(oldpath))) then + if not is_file(oldpath) or not newpath or newpath == "" or (posix.basename(newpath) ~= "." and is_dir(newpath)) or (posix.basename(newpath) == "." and is_dir(newpath .. posix.basename(oldpath))) then return false end - if dirname(newpath) and not posix.stat(dirname(newpath)) then create_directory(dirname(newpath)) end - if basename(newpath) == "" then newpath = newpath .. basename(oldpath) end + if posix.dirname(newpath) and not posix.stat(posix.dirname(newpath)) then create_directory(posix.dirname(newpath)) end + if posix.basename(newpath) == "." then newpath = newpath .. posix.basename(oldpath) end local status, errstr, errno = os.rename(oldpath, newpath) -- errno 18 means Invalid cross-device link if status or errno ~= 18 then @@ -146,7 +130,7 @@ end -- write a string to a file, will replace file contents function write_file ( path, str ) path = path or "" - if dirname(path) and not posix.stat(dirname(path)) then create_directory(dirname(path)) end + if posix.dirname(path) and not posix.stat(posix.dirname(path)) then create_directory(posix.dirname(path)) end local file = io.open(path, "w") --append a newline char to EOF str = string.gsub(str or "", "\n*$", "\n") @@ -160,7 +144,7 @@ end -- fs.write_line_file ("filename", "Line1 \nLines2 \nLines3") function write_line_file ( path, str ) path = path or "" - if dirname(path) and not posix.stat(dirname(path)) then create_directory(dirname(path)) end + if posix.dirname(path) and not posix.stat(posix.dirname(path)) then create_directory(posix.dirname(path)) end local file = io.open(path) if ( file) then local c = file:read("*a") or "" @@ -179,7 +163,7 @@ function find_files_as_array ( what, where, follow, t ) if follow and fs.is_link(where) then link = posix.readlink(where) if not string.find(link, "^/") then - link = dirname(where).."/"..link + link = posix.dirname(where).."/"..link end end @@ -195,7 +179,7 @@ function find_files_as_array ( what, where, follow, t ) table.insert (t, ( string.gsub ( where .. "/" .. d, "/+", "/" ) ) ) end end - elseif (string.match (basename(where), "^" .. what .. "$" )) then + elseif (string.match (posix.basename(where), "^" .. what .. "$" )) then table.insert (t, where ) end diff --git a/lib/menubuilder.lua b/lib/menubuilder.lua index 8c93795..51ed76d 100644 --- a/lib/menubuilder.lua +++ b/lib/menubuilder.lua @@ -5,6 +5,7 @@ ]]-- module(..., package.seeall) +require("posix") require("format") -- returns a table of the "*.menu" tables @@ -63,8 +64,8 @@ get_menuitems = function (startdir) local reversecats = {} startdir = (string.gsub(startdir, "/$", "")) --remove trailing / for k,filename in pairs(get_candidates(startdir)) do - local controller = mvc.basename(filename, ".menu") - local prefix = (string.gsub(mvc.dirname(filename), startdir, "")).."/" + local controller = string.gsub(posix.basename(filename), ".menu$", "") + local prefix = (string.gsub(posix.dirname(filename), startdir, "")).."/" -- open the menu file, and parse the contents local handle = io.open(filename) diff --git a/lib/roles.lua b/lib/roles.lua index 9d89f0c..f38ce6a 100644 --- a/lib/roles.lua +++ b/lib/roles.lua @@ -170,7 +170,7 @@ local determine_perms = function(self,roles) if reverseroles[entry.id] then temp = format.string_to_table(entry.entry, ",") for z,perm in pairs(temp) do - local prefix,control,action = mvc.parse_path_info(perm) + local prefix,control,action = self.parse_path_info(perm) if control then if nil == permissions[prefix] then permissions[prefix] = {} |