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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2004 Roberto Majadas <roberto.majadas@openshine.com>
* Copyright (C) 2012 Stefano Karapetsas <stefano@karapetsas.com>
*
* 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 2 of the
* License, 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 av.
*
* 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.
*
* Authors: Roberto Majadas <roberto.majadas@openshine.com>
* Stefano Karapetsas <stefano@karapetsas.com>
*/
#include "config.h"
#include <glib/gi18n-lib.h>
#include <string.h>
#include "caja-sendto-plugin.h"
#include <gio/gio.h>
typedef enum {
MAILER_UNKNOWN,
MAILER_EVO,
MAILER_BALSA,
MAILER_SYLPHEED,
MAILER_THUNDERBIRD,
} MailerType;
static char *mail_cmd = NULL;
static MailerType type = MAILER_UNKNOWN;
static char *
get_evo_cmd (void)
{
char *tmp = NULL;
char *retval;
char *cmds[] = {"evolution",
"evolution-2.0",
"evolution-2.2",
"evolution-2.4",
"evolution-2.6",
"evolution-2.8", /* for the future */
"evolution-3.0", /* but how far to go ? */
NULL};
guint i;
for (i = 0; cmds[i] != NULL; i++) {
tmp = g_find_program_in_path (cmds[i]);
if (tmp != NULL)
break;
}
if (tmp == NULL)
return NULL;
retval = g_strdup_printf ("%s --component=mail %%s", tmp);
g_free (tmp);
return retval;
}
static gboolean
init (NstPlugin *plugin)
{
GAppInfo *app_info = NULL;
g_print ("Init email client plugin\n");
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
app_info = g_app_info_get_default_for_uri_scheme ("mailto");
if (app_info) {
mail_cmd = g_strdup(g_app_info_get_executable (app_info));
g_object_unref (app_info);
}
if (mail_cmd == NULL || *mail_cmd == '\0') {
g_free (mail_cmd);
mail_cmd = get_evo_cmd ();
type = MAILER_EVO;
} else {
/* Find what the default mailer is */
if (strstr (mail_cmd, "balsa"))
type = MAILER_BALSA;
else if (strstr (mail_cmd, "thunder") || strstr (mail_cmd, "seamonkey") || strstr (mail_cmd, "icedove")) {
char **strv;
type = MAILER_THUNDERBIRD;
/* Thunderbird sucks, see
* https://bugzilla.gnome.org/show_bug.cgi?id=614222 */
strv = g_strsplit (mail_cmd, " ", -1);
g_free (mail_cmd);
mail_cmd = g_strdup_printf ("%s %%s", strv[0]);
g_strfreev (strv);
} else if (strstr (mail_cmd, "sylpheed") || strstr (mail_cmd, "claws"))
type = MAILER_SYLPHEED;
else if (strstr (mail_cmd, "anjal"))
type = MAILER_EVO;
}
if (mail_cmd == NULL)
return FALSE;
return TRUE;
}
static
GtkWidget* get_contacts_widget (NstPlugin *plugin)
{
GtkWidget *entry;
// TODO: add an email address format check
entry = gtk_entry_new();
return entry;
}
static void
get_evo_mailto (GtkWidget *contact_widget, GString *mailto, GList *file_list)
{
GList *l;
g_string_append (mailto, "mailto:");
const char *text;
text = gtk_entry_get_text (GTK_ENTRY (contact_widget));
if (text != NULL && *text != '\0')
g_string_append_printf (mailto, "\"%s\"", text);
else
g_string_append (mailto, "\"\"");
g_string_append_printf (mailto,"?attach=\"%s\"", (char *)file_list->data);
for (l = file_list->next ; l; l=l->next){
g_string_append_printf (mailto,"&attach=\"%s\"", (char *)l->data);
}
}
static void
get_balsa_mailto (GtkWidget *contact_widget, GString *mailto, GList *file_list)
{
GList *l;
if (strstr (mail_cmd, " -m ") == NULL && strstr (mail_cmd, " --compose=") == NULL)
g_string_append (mailto, " --compose=");
const char *text;
text = gtk_entry_get_text (GTK_ENTRY (contact_widget));
if (text != NULL && *text != '\0')
g_string_append_printf (mailto, "\"%s\"", text);
else
g_string_append (mailto, "\"\"");
g_string_append_printf (mailto," --attach=\"%s\"", (char *)file_list->data);
for (l = file_list->next ; l; l=l->next){
g_string_append_printf (mailto," --attach=\"%s\"", (char *)l->data);
}
}
static void
get_thunderbird_mailto (GtkWidget *contact_widget, GString *mailto, GList *file_list)
{
GList *l;
g_string_append (mailto, "-compose \"");
const char *text;
text = gtk_entry_get_text (GTK_ENTRY (contact_widget));
if (text != NULL && *text != '\0')
g_string_append_printf (mailto, "to='%s',", text);
g_string_append_printf (mailto,"attachment='%s", (char *)file_list->data);
for (l = file_list->next ; l; l=l->next){
g_string_append_printf (mailto,",%s", (char *)l->data);
}
g_string_append (mailto, "'\"");
}
static void
get_sylpheed_mailto (GtkWidget *contact_widget, GString *mailto, GList *file_list)
{
GList *l;
g_string_append (mailto, "--compose ");
const char *text;
text = gtk_entry_get_text (GTK_ENTRY (contact_widget));
if (text != NULL && *text != '\0')
g_string_append_printf (mailto, "\"%s\" ", text);
else
g_string_append (mailto, "\"\"");
g_string_append_printf (mailto,"--attach \"%s\"", (char *)file_list->data);
for (l = file_list->next ; l; l=l->next){
g_string_append_printf (mailto," \"%s\"", (char *)l->data);
}
}
static gboolean
send_files (NstPlugin *plugin,
GtkWidget *contact_widget,
GList *file_list)
{
gchar *cmd;
GString *mailto;
mailto = g_string_new ("");
switch (type) {
case MAILER_BALSA:
get_balsa_mailto (contact_widget, mailto, file_list);
break;
case MAILER_SYLPHEED:
get_sylpheed_mailto (contact_widget, mailto, file_list);
break;
case MAILER_THUNDERBIRD:
get_thunderbird_mailto (contact_widget, mailto, file_list);
break;
case MAILER_EVO:
default:
get_evo_mailto (contact_widget, mailto, file_list);
}
cmd = g_strdup_printf (mail_cmd, mailto->str);
g_string_free (mailto, TRUE);
g_message ("Mailer type: %d", type);
g_message ("Command: %s", cmd);
g_spawn_command_line_async (cmd, NULL);
g_free (cmd);
return TRUE;
}
static
gboolean destroy (NstPlugin *plugin){
g_free (mail_cmd);
mail_cmd = NULL;
return TRUE;
}
static
NstPluginInfo plugin_info = {
"emblem-mail",
"emailclient",
N_("Email"),
NULL,
CAJA_CAPS_NONE,
init,
get_contacts_widget,
NULL,
send_files,
destroy
};
NST_INIT_PLUGIN (plugin_info)
|