270e198c48a28181c68442b16ba19f3a3f8ed02a
[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 char *madmutt_init_shell(void)
29 {
30     struct passwd *pw = getpwuid(getuid());
31     return m_strdup(pw ? pw->pw_shell : (getenv("SHELL") ?: "/bin/sh"));
32 }
33
34 static char *madmutt_init_username(void)
35 {
36     struct passwd *pw = getpwuid(getuid());
37     return m_strdup(pw ? pw->pw_name : (getenv("USER") ?: "john_doe"));
38 }
39
40 static char *madmutt_init_homedir(void)
41 {
42     struct passwd *pw = getpwuid(getuid());
43     return m_strdup(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 = char *;
68     .dtor  = p_delete($$);
69     .ctor  = m_strdup($$);
70 };
71
72 @type path_t = {
73     .push  = luaM_path_post($$);
74     .kind  = 's';
75     .ctype = char *;
76     .dtor  = p_delete($$);
77     .ctor  = m_strdup($$);
78 };
79
80 @type quadopt_t = {
81     .kind  = 'i';
82     .check = luaM_checkquadopt($L, $$);
83     .ctype = unsigned : 2;
84 };
85
86 #if defined(HAVE_QDBM)
87 #  define HCACHE_BACKEND "qdbm"
88 #elif defined(HAVE_GDBM)
89 #  define HCACHE_BACKEND "gdbm"
90 #elif defined(HAVE_DB4)
91 #  define HCACHE_BACKEND "db4"
92 #else
93 #  define HCACHE_BACKEND "unknown"
94 #endif
95
96 @package MCore {
97     const string_t version    = VERSION;
98     const string_t sysconfdir = SYSCONFDIR;
99     const string_t bindir     = BINDIR;
100     const string_t docdir     = PKGDOCDIR;
101     const string_t hcache_backend = HCACHE_BACKEND;
102
103     path_t dotlock  = m_strdup(BINDIR "/mutt_dotlock");
104     path_t editor   = m_strdup(getenv("VISUAL") ?: getenv("EDITOR") ?: "vi");
105     path_t shell    = madmutt_init_shell();
106     path_t username = madmutt_init_username();
107     path_t homedir  = madmutt_init_homedir();
108     path_t tmpdir   = m_strdup(getenv("TMPDIR") ?: "/tmp");
109
110     quadopt_t quit     = M_YES;
111     bool      beep     = 1;
112     bool      beep_new = 0;
113
114     const string_t pwd(void) = madmutt_pwd();
115 } MCore;
116
117 @package MTransport {
118     path_t   sendmail = m_strdup(SENDMAIL " -eom -oi");
119
120     string_t dsn_notify = NULL;
121     string_t dsn_return = NULL;
122 } MTransport;
123
124 /* vim:set ft=c: */