Also change bg color of attachments view.
[modest] / src / modest-local-folder-info.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <glib/gi18n.h>
31 #include <string.h> /* strcmp */
32 #include <modest-local-folder-info.h>
33 #include <modest-defs.h>
34 #include <stdio.h>
35
36 typedef struct {
37         TnyFolderType   type;
38         const gchar     *name;
39         const gchar     *display_name;
40 } ModestLocalFolder;
41
42 const ModestLocalFolder ModestLocalFolderMap[] = {
43         { TNY_FOLDER_TYPE_UNKNOWN,  "<unknown>",  N_("<Unknown>")},
44         { TNY_FOLDER_TYPE_NORMAL,   "<normal>",   N_("<Normal>")},
45         { TNY_FOLDER_TYPE_OUTBOX,   "outbox",     N_("mcen_me_folder_outbox")},
46         { TNY_FOLDER_TYPE_TRASH,    "trash",      N_("Trash")},
47         { TNY_FOLDER_TYPE_JUNK,     "junk",       N_("Junk")},
48         { TNY_FOLDER_TYPE_SENT,     "sent",       N_("mcen_me_folder_sent")},
49         { TNY_FOLDER_TYPE_ROOT,     "<root>",     N_("<root>")},
50         { TNY_FOLDER_TYPE_NOTES,    "notes",      N_("Notes")},
51         { TNY_FOLDER_TYPE_DRAFTS,   "drafts",     N_("mcen_me_folder_drafts")},
52         { TNY_FOLDER_TYPE_ARCHIVE,  "archive",    N_("mcen_me_folder_archive")}
53 };
54
55
56 TnyFolderType
57 modest_local_folder_info_get_type (const gchar *name)
58 {
59         int i;
60         g_return_val_if_fail (name, TNY_FOLDER_TYPE_UNKNOWN);
61
62         for (i = 0; i != G_N_ELEMENTS(ModestLocalFolderMap); ++i) {
63                 if (strcmp (ModestLocalFolderMap[i].name, name) == 0)
64                         return ModestLocalFolderMap[i].type;
65         }
66         return TNY_FOLDER_TYPE_UNKNOWN;
67 }
68
69
70 const gchar*
71 modest_local_folder_info_get_type_name (TnyFolderType type)
72 {
73         int i = 0;
74         g_return_val_if_fail (type >= TNY_FOLDER_TYPE_UNKNOWN &&
75                               type <  TNY_FOLDER_TYPE_NUM, NULL);
76         
77         for (i = 0; i != G_N_ELEMENTS(ModestLocalFolderMap); ++i) {
78                 if (ModestLocalFolderMap[i].type == type)
79                         return ModestLocalFolderMap[i].name;
80         }
81         return NULL;    
82 }
83
84 const gchar*
85 modest_local_folder_info_get_type_display_name (TnyFolderType type)
86 {
87         int i = 0;
88         g_return_val_if_fail (type >= TNY_FOLDER_TYPE_UNKNOWN &&
89                               type <  TNY_FOLDER_TYPE_NUM, NULL);
90         
91         /* Note that we call _() to get the localized name.
92          * This works because we used N_() on the static string when we initialized the array,
93          * to mark the string for translation.
94          */
95         for (i = 0; i != G_N_ELEMENTS(ModestLocalFolderMap); ++i) {
96                 if (ModestLocalFolderMap[i].type == type)
97                         return _(ModestLocalFolderMap[i].display_name);
98         }
99         return NULL;    
100 }
101
102
103 gchar *
104 modest_local_folder_info_get_maildir_path (const gchar* location_filepath)
105 {
106         return g_build_filename (location_filepath ? location_filepath : g_get_home_dir(),
107                                  MODEST_DIR,
108                                  MODEST_LOCAL_FOLDERS_MAILDIR, 
109                                  NULL);
110 }
111
112 gchar*
113 modest_per_account_local_outbox_folder_info_get_maildir_path (const gchar* account_name)
114 {
115         /* This directory should contain an "outbox" child directory: */
116         gchar *escaped, *filename;
117
118 #if GLIB_CHECK_VERSION(2, 16, 0)
119         escaped = g_uri_escape_string (account_name, NULL, FALSE);
120 #else
121         /* TODO: escape without calling glib */
122         escaped = g_strdup (account_name);
123 #endif
124         filename = g_build_filename (g_get_home_dir(),
125                                      MODEST_DIR,
126                                      MODEST_PER_ACCOUNT_LOCAL_OUTBOX_FOLDERS_MAILDIR, 
127                                      escaped,
128                                      NULL);
129         g_free (escaped);
130
131         return filename;
132 }
133
134 gchar*
135 modest_per_account_local_outbox_folder_info_get_maildir_path_to_outbox_folder (const gchar* account_name)
136 {
137         gchar *path_to_account_folder = 
138                 modest_per_account_local_outbox_folder_info_get_maildir_path(account_name);
139         if (!path_to_account_folder)
140                 return NULL;
141
142         gchar *path = g_build_filename (path_to_account_folder, "outbox", NULL);
143
144         g_free (path_to_account_folder);
145
146         return path;
147 }
148
149
150