aboutsummaryrefslogtreecommitdiffstats
path: root/modules/itip-formatter/e-mail-formatter-itip.c
blob: 1439cf16723408daee094ab4b3a41bcc1cf1103d (plain) (blame)
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
/*
 * e-mail-formatter-itip.c
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation.
 *
 * 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 Lesser General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 *
 */

#include "e-mail-formatter-itip.h"

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <glib/gi18n-lib.h>

#include <em-format/e-mail-formatter-extension.h>
#include <em-format/e-mail-formatter.h>
#include <em-format/e-mail-part-utils.h>
#include <libebackend/libebackend.h>

#include "itip-view.h"
#include "e-mail-part-itip.h"

#define d(x)

typedef EMailFormatterExtension EMailFormatterItip;
typedef EMailFormatterExtensionClass EMailFormatterItipClass;

GType e_mail_formatter_itip_get_type (void);
GType e_mail_formatter_itip_loader_get_type (void);

G_DEFINE_DYNAMIC_TYPE (
    EMailFormatterItip,
    e_mail_formatter_itip,
    E_TYPE_MAIL_FORMATTER_EXTENSION)

static const gchar *formatter_mime_types[] = {
    "text/calendar",
    "application/ics",
    NULL
};

static gboolean
emfe_itip_format (EMailFormatterExtension *extension,
                  EMailFormatter *formatter,
                  EMailFormatterContext *context,
                  EMailPart *part,
                  GOutputStream *stream,
                  GCancellable *cancellable)
{
    GString *buffer;
    EMailPartItip *itip_part;

    g_return_val_if_fail (E_IS_MAIL_PART_ITIP (part), FALSE);

    itip_part = (EMailPartItip *) part;

    if (context->mode == E_MAIL_FORMATTER_MODE_PRINTING) {
        buffer = g_string_sized_new (1024);

        itip_part->view = itip_view_new (
            itip_part, itip_part->client_cache);

        itip_view_init_view (itip_part->view);
        itip_view_write_for_printing (itip_part->view, buffer);

    } else if (context->mode == E_MAIL_FORMATTER_MODE_RAW) {
        buffer = g_string_sized_new (2048);

        itip_view_write (formatter, buffer);

    } else {
        CamelFolder *folder;
        CamelMimeMessage *message;
        const gchar *message_uid;
        const gchar *default_charset, *charset;
        gchar *uri;

        folder = e_mail_part_list_get_folder (context->part_list);
        message = e_mail_part_list_get_message (context->part_list);
        message_uid = e_mail_part_list_get_message_uid (context->part_list);

        /* mark message as containing calendar, thus it will show the
         * icon in message list now on */
        if (message_uid != NULL && folder != NULL &&
            !camel_folder_get_message_user_flag (
                folder, message_uid, "$has_cal")) {

            camel_folder_set_message_user_flag (
                folder, message_uid, "$has_cal", TRUE);
        }

        itip_part->folder = g_object_ref (folder);
        itip_part->uid = g_strdup (message_uid);
        itip_part->msg = g_object_ref (message);

        default_charset = e_mail_formatter_get_default_charset (formatter);
        charset = e_mail_formatter_get_charset (formatter);

        if (!default_charset)
            default_charset = "";
        if (!charset)
            charset = "";

        uri = e_mail_part_build_uri (
            folder, message_uid,
            "part_id", G_TYPE_STRING, e_mail_part_get_id (part),
            "mode", G_TYPE_INT, E_MAIL_FORMATTER_MODE_RAW,
            "formatter_default_charset", G_TYPE_STRING, default_charset,
            "formatter_charset", G_TYPE_STRING, charset,
            NULL);

        buffer = g_string_sized_new (256);
        g_string_append_printf (
            buffer,
            "<div class=\"part-container\" "
            "style=\"border: none; background: none;\">"
            "<iframe width=\"100%%\" height=\"auto\""
            " frameborder=\"0\" src=\"%s\" name=\"%s\" id=\"%s\"></iframe>"
            "</div>",
            uri,
            e_mail_part_get_id (part),
            e_mail_part_get_id (part));

        g_free (uri);
    }

    g_output_stream_write_all (
        stream, buffer->str, buffer->len, NULL, cancellable, NULL);

    g_string_free (buffer, TRUE);

    return TRUE;
}

static void
e_mail_formatter_itip_class_init (EMailFormatterExtensionClass *class)
{
    class->display_name = _("ITIP");
    class->description = _("Display part as an invitation");
    class->mime_types = formatter_mime_types;
    class->format = emfe_itip_format;
}

static void
e_mail_formatter_itip_class_finalize (EMailFormatterExtensionClass *class)
{
}

static void
e_mail_formatter_itip_init (EMailFormatterExtension *extension)
{
}

void
e_mail_formatter_itip_type_register (GTypeModule *type_module)
{
    e_mail_formatter_itip_register_type (type_module);
}