Diff

core/moduleapi.lua @ 7127:27557dd7b460

moduleapi: Add API method for getting a file path
author Kim Alvefur <zash@zash.se>
date Thu, 04 Feb 2016 10:05:35 +0100
parent 7115:805d068d2fd5
child 7141:362545c3f8bb
child 7162:d0b64f1e4f5d
line wrap: on
line diff
--- a/core/moduleapi.lua	Thu Feb 04 14:56:49 2016 +0000
+++ b/core/moduleapi.lua	Thu Feb 04 10:05:35 2016 +0100
@@ -301,6 +301,20 @@
 	return value;
 end
 
+function api:get_option_path(name, default, parent)
+	if parent == nil then
+		parent = parent or self:get_directory();
+	elseif prosody.paths[parent] then
+		parent = prosody.paths[parent];
+	end
+	local value = self:get_option_string(name, default);
+	if value == nil then
+		return nil;
+	end
+	return resolve_relative_path(parent, value);
+end
+
+
 function api:context(host)
 	return setmetatable({host=host or "*"}, {__index=self,__newindex=self});
 end