From 385fd64606ba2c860ce5bcd534a7de5f8bce4bd1 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 10 Nov 2010 19:46:53 +0000 Subject: prosody, configmanager, certmanager: Relocate prosody.resolve_relative_path() to configmanager, and update certmanager (the only user of this function) --- core/configmanager.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'core/configmanager.lua') diff --git a/core/configmanager.lua b/core/configmanager.lua index ca23b136..b9618f86 100644 --- a/core/configmanager.lua +++ b/core/configmanager.lua @@ -13,6 +13,8 @@ local setmetatable, loadfile, pcall, rawget, rawset, io, error, dofile, type, p local fire_event = prosody and prosody.events.fire_event or function () end; +local path_sep = package.config:sub(1,1); + module "configmanager" local parsers = {}; @@ -64,6 +66,25 @@ function _M.set(host, section, key, value) return set(config, host, section, key, value); end +-- Helper function to resolve relative paths (needed by config) +do + local rel_path_start = ".."..path_sep; + function resolve_relative_path(parent_path, path) + if path then + local is_relative; + if path_sep == "/" and path:sub(1,1) ~= "/" then + is_relative = true; + elseif path_sep == "\\" and (path:sub(1,1) ~= "/" and path:sub(2,3) ~= ":\\") then + is_relative = true; + end + if is_relative then + return parent_path..path_sep..path; + end + end + return path; + end +end + function load(filename, format) format = format or filename:match("%w+$"); -- cgit v1.2.3