89ff6f2153b7e86b6558d01d51c6cc34d187af5e
[apps/madmutt.git] / lib-lua / madmutt.cpkg
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2007 Pierre Habouzit
18  */
19
20 #include <lib-lib/lib-lib.h>
21 #include <lib-lua/lib-lua.h>
22
23 #include <sys/types.h>
24 #include <pwd.h>
25
26 #include "../mutt.h"
27
28 static const char *madmutt_init_shell(void)
29 {
30     struct passwd *pw = getpwuid(getuid());
31     return pw ? pw->pw_shell : (getenv("SHELL") ?: "/bin/sh");
32 }
33
34 static const char *madmutt_init_username(void)
35 {
36     struct passwd *pw = getpwuid(getuid());
37     return pw ? pw->pw_name : (getenv("USER") ?: "john_doe");
38 }
39
40 static const char *madmutt_init_homedir(void)
41 {
42     struct passwd *pw = getpwuid(getuid());
43     return pw ? pw->pw_dir : (getenv("HOME") ?: "/");
44 }
45
46 static const char *madmutt_pwd(void)
47 {
48     char path[_POSIX_PATH_MAX];
49     getcwd(path, sizeof(path));
50     return path;
51 }
52
53 static const char *luaM_path_post(const char *val)
54 {
55     char path[PATH_MAX];
56     _mutt_expand_path(path, sizeof(path), val, 0);
57     return path;
58 }
59
60 @type bool = {
61     .kind = 'b';
62     .ctype = unsigned : 1;
63 };
64
65 @type string_t = {
66     .kind = 's';
67     .ctype = const char *;
68 };
69
70 @type path_t = {
71     .push  = luaM_path_post($$);
72     .kind  = 's';
73     .ctype = char *;
74 };
75
76 @type quadopt_t = {
77     .kind  = 'i';
78     .check = luaM_checkquadopt($L, $$);
79     .ctype = unsigned : 2;
80 };
81
82 #if defined(HAVE_QDBM)
83 #  define HCACHE_BACKEND "qdbm"
84 #elif defined(HAVE_GDBM)
85 #  define HCACHE_BACKEND "gdbm"
86 #elif defined(HAVE_DB4)
87 #  define HCACHE_BACKEND "db4"
88 #else
89 #  define HCACHE_BACKEND "unknown"
90 #endif
91
92 @package MCore {
93     const string_t version    = VERSION;
94     const string_t sysconfdir = SYSCONFDIR;
95     const string_t bindir     = BINDIR;
96     const string_t docdir     = PKGDOCDIR;
97     const string_t hcache_backend = HCACHE_BACKEND;
98
99     path_t dotlock  = BINDIR "/mutt_dotlock";
100     path_t editor   = getenv("VISUAL") ?: getenv("EDITOR") ?: "vi";
101     path_t shell    = madmutt_init_shell();
102     path_t username = madmutt_init_username();
103     path_t homedir  = madmutt_init_homedir();
104     path_t tmpdir   = getenv("TMPDIR") ?: "/tmp";
105
106     quadopt_t quit     = M_YES;
107     bool      beep     = 1;
108     bool      beep_new = 0;
109
110     const string_t pwd(void) = madmutt_pwd();
111 } MCore;
112
113 @package MTransport {
114     path_t   sendmail = SENDMAIL " -eom -oi";
115
116     string_t dsn_notify = NULL;
117     string_t dsn_return = NULL;
118 } MTransport;
119
120 /* vim:set ft=c: */