Merge from waqas
[prosody.git] / prosody
1 #!/usr/bin/env lua
2 -- Prosody IM v0.1
3 -- Copyright (C) 2008 Matthew Wild
4 -- Copyright (C) 2008 Waqas Hussain
5 -- 
6 -- This program is free software; you can redistribute it and/or
7 -- modify it under the terms of the GNU General Public License
8 -- as published by the Free Software Foundation; either version 2
9 -- of the License, or (at your option) any later version.
10 -- 
11 -- This program is distributed in the hope that it will be useful,
12 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
13 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 -- GNU General Public License for more details.
15 -- 
16 -- You should have received a copy of the GNU General Public License
17 -- along with this program; if not, write to the Free Software
18 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 --
20
21
22
23 -- Config here --
24
25 CFG_SOURCEDIR=nil;
26 CFG_CONFIGDIR=os.getenv("PROSODY_CFGDIR");
27 CFG_PLUGINDIR=nil;
28 CFG_DATADIR=os.getenv("PROSODY_DATADIR");
29
30 -- -- -- -- -- --
31
32 if CFG_SOURCEDIR then
33         package.path = CFG_SOURCEDIR.."/?.lua;"..package.path
34         package.cpath = CFG_SOURCEDIR.."/?.so;"..package.cpath
35 end
36
37 if CFG_DATADIR then
38         if os.getenv("HOME") then
39                 CFG_DATADIR = CFG_DATADIR:gsub("^~", os.getenv("HOME"));
40         end
41 end
42
43 -- Required to be able to find packages installed with luarocks
44 pcall(require, "luarocks.require")
45
46
47 config = require "core.configmanager"
48 log = require "util.logger".init("general");
49
50 do
51         -- TODO: Check for other formats when we add support for them
52         -- Use lfs? Make a new conf/ dir?
53         local ok, err = config.load((CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
54         if not ok then
55                 log("error", "Couldn't load config file: %s", err);
56                 log("info", "Falling back to old config file format...")
57                 ok, err = pcall(dofile, "lxmppd.cfg");
58                 if not ok then
59                         log("error", "Old config format loading failed too: %s", err);
60                 else
61                         for _, host in ipairs(_G.config.hosts) do
62                                 config.set(host, "core", "defined", true);
63                         end
64                         
65                         config.set("*", "core", "modules_enabled", _G.config.modules);
66                         config.set("*", "core", "ssl", _G.config.ssl_ctx);
67                 end
68         end
69 end
70
71 local server = require "net.server"
72
73 require "util.dependencies"
74
75 -- Maps connections to sessions --
76 sessions = {};
77 hosts = {};
78
79 -- Load and initialise core modules --
80
81 require "util.import"
82 require "core.xmlhandlers"
83 require "core.rostermanager"
84 require "core.offlinemessage"
85 require "core.eventmanager"
86 require "core.hostmanager"
87 require "core.modulemanager"
88 require "core.usermanager"
89 require "core.sessionmanager"
90 require "core.stanza_router"
91
92 --[[
93 pcall(require, "remdebug.engine");
94 if remdebug then remdebug.engine.start() end
95 ]]
96
97 local cl = require "net.connlisteners";
98
99 require "util.stanza"
100 require "util.jid"
101
102 ------------------------------------------------------------------------
103
104
105 ------------- Begin code without a home ---------------------
106
107 local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data";
108 require "util.datamanager".set_data_path(data_path);
109
110
111 local path_separator = "/"; if os.getenv("WINDIR") then path_separator = "\\" end
112 local _mkdir = {}
113 function mkdir(path)
114         path = path:gsub("/", path_separator);
115         local x = io.popen("mkdir \""..path.."\" 2>&1"):read("*a");
116 end
117 function encode(s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
118 function mkdirs(host)
119         if not _mkdir[host] then
120                 local host_dir = string.format("%s/%s", data_path, encode(host));
121                 mkdir(host_dir);
122                 mkdir(host_dir.."/accounts");
123                 mkdir(host_dir.."/vcard");
124                 mkdir(host_dir.."/roster");
125                 mkdir(host_dir.."/private");
126                 mkdir(host_dir.."/offline");
127                 _mkdir[host] = true;
128         end
129 end
130 mkdir(data_path);
131
132 eventmanager.add_event_hook("host-activated", mkdirs);
133
134 ----------- End of out-of-place code --------------
135
136 eventmanager.fire_event("server-starting");
137
138
139 -- setup error handling
140 setmetatable(_G, { __index = function (t, k) error("Attempt to read a non-existent global '"..k.."'", 2); end, __newindex = function (t, k, v) error("Attempt to set a global: "..tostring(k).." = "..tostring(v), 2); end });
141
142 local global_ssl_ctx = config.get("*", "core", "ssl");
143 if global_ssl_ctx then
144         local default_ssl_ctx = { mode = "server", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none"; };
145         setmetatable(global_ssl_ctx, { __index = default_ssl_ctx });
146 end
147
148 -- start listening on sockets
149 cl.start("xmppclient", { ssl = global_ssl_ctx })
150 cl.start("xmppserver", { ssl = global_ssl_ctx })
151
152 if config.get("*", "core", "console_enabled") then
153         if cl.get("console") then
154                 cl.start("console")
155         else
156                 log("error", "Console is enabled, but the console module appears not to be loaded");
157         end
158 end
159
160 eventmanager.fire_event("server-started");
161
162 server.loop();