mu/src/mu-cmd.c

178 lines
3.9 KiB
C
Raw Normal View History

2011-05-22 16:39:10 +02:00
/* -*-mode: c; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-*/
/*
** Copyright (C) 2010-2011 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.
**
*/
2010-11-30 08:02:29 +01:00
#if HAVE_CONFIG_H
#include "config.h"
#endif /*HAVE_CONFIG_H*/
#include <stdlib.h>
#include "mu-msg.h"
#include "mu-msg-part.h"
#include "mu-cmd.h"
#include "mu-util.h"
2011-01-05 19:38:33 +01:00
#include "mu-str.h"
#include "mu-maildir.h"
#include "mu-contacts.h"
#include "mu-runtime.h"
2011-01-05 19:38:33 +01:00
static void
each_part (MuMsg *msg, MuMsgPart *part, gchar **attach)
{
if (mu_msg_part_looks_like_attachment (part, TRUE) &&
(part->file_name)) {
char *tmp = *attach;
*attach = g_strdup_printf ("%s%s'%s'",
*attach ? *attach : "",
*attach ? ", " : "",
part->file_name);
g_free (tmp);
}
}
/* return comma-sep'd list of attachments */
2011-05-22 16:39:10 +02:00
static gchar *
get_attach_str (MuMsg *msg)
{
gchar *attach;
attach = NULL;
mu_msg_part_foreach (msg, (MuMsgPartForeachFunc)each_part, &attach);
return attach;
}
2011-01-05 19:38:33 +01:00
/* we ignore fields for now */
static gboolean
view_msg (MuMsg *msg, const gchar *fields, size_t summary_len)
{
const char *field;
gchar *attachs;
2011-01-05 19:38:33 +01:00
time_t date;
if ((field = mu_msg_get_from (msg)))
g_print ("From: %s\n", field);
if ((field = mu_msg_get_to (msg)))
g_print ("To: %s\n", field);
if ((field = mu_msg_get_cc (msg)))
g_print ("Cc: %s\n", field);
if ((field = mu_msg_get_subject (msg)))
g_print ("Subject: %s\n", field);
if ((date = mu_msg_get_date (msg)))
g_print ("Date: %s\n", mu_str_date_s ("%c", date));
if ((attachs = get_attach_str (msg))) {
g_print ("Attachment(s): %s\n", attachs);
g_free (attachs);
}
2011-05-15 09:40:29 +02:00
if (!(field = mu_msg_get_body_text (msg)))
return TRUE; /* no body -- nothing more to do */
if (summary_len > 0) {
gchar *summ;
summ = mu_str_summarize (field, summary_len);
g_print ("Summary: %s\n", summ);
g_free (summ);
} else
2011-01-05 19:38:33 +01:00
g_print ("\n%s\n", field);
return TRUE;
}
MuExitCode
mu_cmd_view (MuConfig *opts)
{
int rv, i;
g_return_val_if_fail (opts, MU_EXITCODE_ERROR);
g_return_val_if_fail (opts->cmd == MU_CONFIG_CMD_VIEW,
MU_EXITCODE_ERROR);
/* note: params[0] will be 'view' */
if (!opts->params[0] || !opts->params[1]) {
g_warning ("usage: mu view [options] <file> [<files>]");
return MU_EXITCODE_ERROR;
}
2011-01-06 12:14:42 +01:00
;
for (i = 1, rv = MU_EXITCODE_OK;
opts->params[i] && rv == MU_EXITCODE_OK; ++i) {
2011-01-05 19:38:33 +01:00
GError *err = NULL;
MuMsg *msg = mu_msg_new_from_file (opts->params[i], NULL, &err);
2011-01-05 19:38:33 +01:00
if (!msg) {
g_warning ("error: %s", err->message);
g_error_free (err);
return MU_EXITCODE_ERROR;
}
if (!view_msg (msg, NULL, opts->summary_len))
rv = MU_EXITCODE_ERROR;
mu_msg_unref (msg);
2011-01-05 19:38:33 +01:00
}
return rv;
}
MuExitCode
mu_cmd_mkdir (MuConfig *opts)
{
int i;
2011-01-06 12:14:42 +01:00
2011-01-05 19:38:33 +01:00
g_return_val_if_fail (opts, MU_EXITCODE_ERROR);
g_return_val_if_fail (opts->cmd == MU_CONFIG_CMD_MKDIR,
MU_EXITCODE_ERROR);
if (!opts->params[1]) {
g_warning ("usage: mu mkdir [-u,--mode=<mode>] "
"<dir> [more dirs]");
return MU_EXITCODE_ERROR;
}
for (i = 1; opts->params[i]; ++i) {
GError *err;
err = NULL;
2011-01-05 19:38:33 +01:00
if (!mu_maildir_mkdir (opts->params[i], opts->dirmode,
2011-01-06 12:14:42 +01:00
FALSE, &err)) {
2011-01-05 19:38:33 +01:00
if (err && err->message) {
g_warning ("%s", err->message);
g_error_free (err);
}
2011-01-06 12:14:42 +01:00
return MU_EXITCODE_ERROR;
}
2011-01-05 19:38:33 +01:00
}
return MU_EXITCODE_OK;
}