summaryrefslogtreecommitdiff
path: root/mu/mu-cmd.hh
blob: e5ddb624c26861d980c4e87aecd473f486f88d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
** Copyright (C) 2008-2025 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/

#ifndef MU_CMD_HH__
#define MU_CMD_HH__

#include <glib.h>
#include <mu-store.hh>
#include <utils/mu-result.hh>

#include "mu-options.hh"

namespace Mu {

/**
 * Get message options from (sub)command options
 *
 * @param cmdopts (sub) command options
 *
 * @return message options
 */
template<typename CmdOpts>
constexpr Message::Options
message_options(const CmdOpts& cmdopts)
{
	Message::Options mopts{Message::Options::AllowRelativePath};

	if (cmdopts.decrypt)
		mopts |= Message::Options::Decrypt;
	if (cmdopts.auto_retrieve)
		mopts |= Message::Options::RetrieveKeys;

	return mopts;
}

/**
 * execute the 'add' command
 *
 * @param store store object to use
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_add(Store& store, const Options& opts);

/**
 * execute the 'cfind' command
 *
 * @param store store object to use
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_cfind(const Store& store, const Options& opts);

/**
 * execute the 'extract' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_extract(const Options& opts);

/**
 * execute the 'find' command
 *
 * @param store store object to use
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_find(const Store& store, const Options& opts);

/**
 * execute the 'index' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_index(const Options& opt);

/**
 * execute the 'info' command
 *
 * @param store message store object.
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_info(const Mu::Store& store, const Options& opts);

/**
 * execute the 'init' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_init(const Options& opts);

/**
 * execute the 'labels' sub-command
 *
 * @param store message store object.
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_labels(Store& store, const Options& opts);

/**
 * execute the 'mkdir' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_mkdir(const Options& opts);

/**
 * execute the 'move' command
 *
 * @param store message store object.
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_move(Store& store, const Options& opts);

/**
 * execute the 'remove' command
 *
 * @param store store object to use
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_remove(Store& store, const Options& opt);

/**
 * execute the 'script' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_script(const Options& opts);

/**
 * execute the server command
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_server(const Options& opts);

/**
 * execute the 'verify' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Mu::Result<void> mu_cmd_verify(const Options& opts);

/**
 * execute the 'view' command
 *
 * @param opts configuration options
 *
 * @return Ok() or some error
 */
Mu::Result<void> mu_cmd_view(const Options& opts);

/**
 * execute some mu command, based on 'opts'
 *
 * @param opts configuration option
 *
 * @return Ok() or some error
 */
Result<void> mu_cmd_execute(const Options& opts);

} // namespace Mu

#endif /*__MU_CMD_H__*/