util.dependencies: Make the commands line up properly in the "missing dependency...
[prosody.git] / util / dependencies.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 local fatal;
11
12 local function softreq(...) local ok, lib =  pcall(require, ...); if ok then return lib; else return nil, lib; end end
13
14 local function missingdep(name, sources, msg)
15         print("");
16         print("**************************");
17         print("Prosody was unable to find "..tostring(name));
18         print("This package can be obtained in the following ways:");
19         print("");
20         local longest_platform = 0;
21         for platform in pairs(sources) do
22                 longest_platform = math.max(longest_platform, #platform);
23         end
24         for platform, source in pairs(sources) do
25                 print("", platform..":"..(" "):rep(4+longest_platform-#platform)..source);
26         end
27         print("");
28         print(msg or (name.." is required for Prosody to run, so we will now exit."));
29         print("More help can be found on our website, at http://prosody.im/doc/depends");
30         print("**************************");
31         print("");
32 end
33
34 local lxp = softreq "lxp"
35
36 if not lxp then
37         missingdep("luaexpat", { ["Ubuntu 8.04 (Hardy)"] = "sudo apt-get install liblua5.1-expat0"; ["luarocks"] = "luarocks install luaexpat"; });
38         fatal = true;
39 end
40
41 local socket = softreq "socket"
42
43 if not socket then
44         missingdep("luasocket", { ["Ubuntu 8.04 (Hardy)"] = "sudo apt-get install liblua5.1-socket2"; ["luarocks"] = "luarocks install luasocket"; });
45         fatal = true;
46 end
47         
48 local ssl = softreq "ssl"
49
50 if not ssl then
51         if config.get("*", "core", "run_without_ssl") then
52                 log("warn", "Running without SSL support because run_without_ssl is defined in the config");
53         else
54                 missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available");
55         end
56 end
57
58 local encodings, err = softreq "util.encodings"
59 if not encodings then
60         if err:match("not found") then
61                 missingdep("util.encodings", { ["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
62                                         ["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/encodings.so";
63                                 });
64         else
65                 print "***********************************"
66                 print("util/encodings couldn't be loaded. Check that you have a recent version of libidn");
67                 print ""
68                 print("The full error was:");
69                 print(err)
70                 print "***********************************"
71         end
72         fatal = true;
73 end
74
75 local hashes, err = softreq "util.hashes"
76 if not hashes then
77         if err:match("not found") then
78                 missingdep("util.hashes", { ["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
79                                         ["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/hashes.so";
80                                 });
81         else
82                 print "***********************************"
83                 print("util/hashes couldn't be loaded. Check that you have a recent version of OpenSSL (libcrypto in particular)");
84                 print ""
85                 print("The full error was:");
86                 print(err)
87                 print "***********************************"
88         end
89         fatal = true;
90 end
91
92 if fatal then os.exit(1); end