Add missing include; patch by Christian Hesse
[claws.git] / src / plugins / rssyl / rssyl_update_format.c
1 /*
2  * Copyright (C) 2006 Andrej Kacian <andrej@kacian.sk>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 /* Global includes */
25 #include <glib/gi18n.h>
26 #include <gtk/gtk.h>
27
28 /* Claws Mail includes */
29 #include <alertpanel.h>
30 #include <log.h>
31 #include <mainwindow.h>
32 #include <msgcache.h>
33
34 /* Local includes */
35 #include "old_feeds.h"
36 #include "rssyl.h"
37 #include "rssyl_feed.h"
38 #include "strutils.h"
39
40 struct _RUpdateFormatCtx {
41         FolderItem *o_prev;
42         FolderItem *o_parent;
43         FolderItem *n_prev;
44         FolderItem *n_parent;
45         Folder *n_first;
46         GSList *oldfeeds;
47         GSList *oldroots;
48         gboolean reached_first_new;
49 };
50
51 typedef struct _RUpdateFormatCtx RUpdateFormatCtx;
52
53 extern FolderClass rssyl_class;
54
55 static void rssyl_update_format_move_contents(FolderItem *olditem,
56                 FolderItem *newitem);
57 static gchar *_old_rssyl_item_get_path(Folder *folder, FolderItem *item);
58 static void _delete_old_roots_func(gpointer data, gpointer user_data);
59
60 static void rssyl_update_format_func(FolderItem *item, gpointer data)
61 {
62         RFolderItem *ritem;
63         RUpdateFormatCtx *ctx = (RUpdateFormatCtx *)data;
64         Folder *f = NULL;
65         FolderItem *new_item = NULL;
66         gchar *name;
67         OldRFeed *of;
68
69         if( !IS_RSSYL_FOLDER_ITEM(item) )
70                 return;
71
72         /* Do not do anything once we reached first new folder
73          * (which we created earlier in this process) */
74         if( ctx->reached_first_new )
75                 return;
76
77         if( item->folder == ctx->n_first ) {
78                 ctx->reached_first_new = TRUE;
79                 debug_print("RSSyl: (FORMAT) reached first new folder\n");
80                 return;
81         }
82
83         debug_print("RSSyl: (FORMAT) item '%s'\n", item->name);
84
85         if( folder_item_parent(item) == NULL ) {
86                 /* Root rssyl folder */
87                 ctx->oldroots = g_slist_prepend(ctx->oldroots, item);
88
89                 /* Create its counterpart */
90                 name = rssyl_strreplace(folder_item_get_name(item), " (RSSyl)", "");
91                 debug_print("RSSyl: (FORMAT) adding new root folder '%s'\n", name);
92                 f = folder_new(rssyl_folder_get_class(), name, NULL);
93                 g_free(name);
94                 g_return_if_fail(f != NULL);
95                 folder_add(f);
96
97                 folder_write_list();
98
99                 new_item = FOLDER_ITEM(f->node->data);
100
101                 /* If user has more than one old rssyl foldertrees, keep the n_first
102                  * pointer at the beginning of first one. */
103                 if (ctx->n_first == NULL)
104                         ctx->n_first = f;
105
106                 ctx->n_parent = new_item;
107         } else {
108                 /* Non-root folder */
109
110                 if (folder_item_parent(item) == ctx->o_prev) {
111                         /* We went one step deeper in folder hierarchy, adjust pointers
112                          * to parents */
113                         ctx->o_parent = ctx->o_prev;
114                         ctx->n_parent = ctx->n_prev;
115                 } else if (folder_item_parent(item) != ctx->o_parent) {
116                         /* We are not in same folder anymore, which can only mean we have
117                          * moved up in the hierarchy. Find a correct parent */
118                         while (folder_item_parent(item) != ctx->o_parent) {
119                                 ctx->o_parent = folder_item_parent(ctx->o_parent);
120                                 ctx->n_parent = folder_item_parent(ctx->n_parent);
121                                 if (ctx->o_parent == NULL) {
122                                         /* This shouldn't happen, unless we are magically moved to a
123                                          * completely different folder structure */
124                                         debug_print("RSSyl: MISHAP WHILE UPGRADING STORAGE FORMAT: couldn't find folder parent\n");
125                                         alertpanel_error(_("Internal problem while upgrading storage format. This should not happen. Please report this, with debug output attached.\n"));
126                                         return;
127                                 }
128                         }
129                 } else {
130                         /* We have remained in the same subfolder, nothing to do here */
131                 }
132
133                 debug_print("RSSyl: (FORMAT) adding folder '%s'\n", item->name);
134                 new_item = folder_create_folder(ctx->n_parent, item->name);
135
136                 if (new_item == NULL) {
137                         debug_print("RSSyl: (FORMAT) couldn't add folder '%s', skipping it\n",
138                                         item->name);
139                         return;
140                 }
141
142                 of = rssyl_old_feed_get_by_name(ctx->oldfeeds, item->name);
143                 if (of != NULL && of->url != NULL) {
144                         /* Folder with an actual subscribed feed */
145                         debug_print("RSSyl: (FORMAT) making '%s' a feed with URL '%s'\n",
146                                         item->name, of->url);
147
148                         ritem = (RFolderItem *)new_item;
149                         ritem->url = g_strdup(of->url);
150
151                         rssyl_feed_start_refresh_timeout(ritem);
152
153                         /* TODO: copy feed preferences from old structure */
154                         ritem->official_title = g_strdup(of->official_name);
155                         ritem->default_refresh_interval =
156                                 (of->default_refresh_interval != 0 ? TRUE : FALSE);
157                         ritem->refresh_interval = of->refresh_interval;
158                         ritem->keep_old = (of->expired_num > -1 ? TRUE : FALSE);
159                         ritem->fetch_comments =
160                                 (of->fetch_comments != 0 ? TRUE : FALSE);
161                         ritem->fetch_comments_max_age = of->fetch_comments_for;
162                         ritem->silent_update = of->silent_update;
163                         ritem->ssl_verify_peer = of->ssl_verify_peer;
164                 }
165
166                 rssyl_update_format_move_contents(item, new_item);
167
168                 /* destroy the new folder's cache so we'll re-read the migrated one */
169                 if (new_item->cache) {
170                         msgcache_destroy(new_item->cache);
171                         new_item->cache = NULL;
172                 }
173
174                 /* Store folderlist with the new folder */
175                 folder_item_scan(new_item);
176                 folder_write_list();
177         }
178
179         ctx->o_prev = item;
180         ctx->n_prev = new_item;
181 }
182
183
184 void rssyl_update_format()
185 {
186         RUpdateFormatCtx *ctx = NULL;
187         GSList *oldfeeds;
188         gchar *old_feeds_xml = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
189                         RSSYL_DIR, G_DIR_SEPARATOR_S, "feeds.xml", NULL);
190
191         if (!g_file_test(old_feeds_xml,
192                                 G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)) {
193                 g_free(old_feeds_xml);
194                 return;
195         }
196
197         debug_print("RSSyl: Old format found, updating.\n");
198
199         oldfeeds = rssyl_old_feed_metadata_parse(old_feeds_xml);
200
201         /* We find all rssyl root folders and perform magic on each */
202         ctx = g_new0(RUpdateFormatCtx, 1);
203         ctx->o_prev = NULL;
204         ctx->o_parent = NULL;
205         ctx->n_prev = NULL;
206         ctx->n_parent = NULL;
207         ctx->n_first = NULL;
208         ctx->oldfeeds = oldfeeds;
209         ctx->oldroots = NULL;
210         ctx->reached_first_new = FALSE;
211
212         folder_item_update_freeze();
213
214         /* Go through all RSSyl folders, making new copies */
215         folder_func_to_all_folders((FolderItemFunc)rssyl_update_format_func, ctx);
216
217         g_slist_foreach(ctx->oldroots, _delete_old_roots_func, NULL);
218         g_slist_free(ctx->oldroots);
219
220         folder_item_update_thaw();
221
222         g_free(ctx);
223
224         g_remove(old_feeds_xml);
225         g_free(old_feeds_xml);
226 }
227
228 static void _delete_old_roots_func(gpointer data, gpointer user_data)
229 {
230         FolderItem *item = (FolderItem *)data;
231
232         folder_destroy(item->folder);
233 }
234
235 /* Copy each item in a feed to the new directory */
236 static void rssyl_update_format_move_contents(FolderItem *olditem,
237                 FolderItem *newitem)
238 {
239         gchar *oldpath, *newpath, *fname, *fpath, *nfpath;
240         GDir *d = NULL;
241         GError *error = NULL;
242
243         oldpath = _old_rssyl_item_get_path(NULL, olditem);
244         newpath = folder_item_get_path(newitem);
245
246         if ((d = g_dir_open(oldpath, 0, &error)) == NULL) {
247                 debug_print("RSSyl: (FORMAT) couldn't open dir '%s': %s\n", oldpath,
248                                 error->message);
249                 g_error_free(error);
250                 return;
251         }
252
253         debug_print("RSSyl: (FORMAT) moving contents of '%s' to '%s'\n",
254                         oldpath, newpath);
255
256         while ((fname = (gchar *)g_dir_read_name(d)) != NULL) {
257                 gboolean migrate_file = to_number(fname) > 0 || strstr(fname, ".claws_") == fname;
258                 fpath = g_strconcat(oldpath, G_DIR_SEPARATOR_S, fname, NULL);
259                 if (migrate_file && g_file_test(fpath, G_FILE_TEST_IS_REGULAR)) {
260                         nfpath = g_strconcat(newpath, G_DIR_SEPARATOR_S, fname, NULL);
261                         move_file(fpath, nfpath, FALSE);
262                         g_free(nfpath);
263                 }
264                 g_remove(fpath);
265                 g_free(fpath);
266         }
267
268         g_dir_close(d);
269         g_rmdir(oldpath);
270
271         g_free(oldpath);
272         g_free(newpath);
273 }
274
275 static gchar *_old_rssyl_item_get_path(Folder *folder, FolderItem *item)
276 {
277         gchar *result, *tmp;
278
279         if (folder_item_parent(item) == NULL)
280                 return g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, RSSYL_DIR, NULL);
281
282         tmp = rssyl_strreplace(item->name, "/", "\\");
283         result = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, RSSYL_DIR,
284                         G_DIR_SEPARATOR_S, tmp, NULL);
285         g_free(tmp);
286         return result;
287 }