Branch data Line data Source code
1 : : /*
2 : : * Copyright 2015 Red Hat, Inc.
3 : : *
4 : : * SPDX-License-Identifier: LGPL-2.1-or-later
5 : : *
6 : : * This library is free software; you can redistribute it and/or
7 : : * modify it under the terms of the GNU Lesser General Public
8 : : * License as published by the Free Software Foundation; either
9 : : * version 2.1 of the License, or (at your option) any later version.
10 : : *
11 : : * This library is distributed in the hope that it will be useful,
12 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 : : * Lesser General Public License for more details.
15 : : *
16 : : * You should have received a copy of the GNU Lesser General Public
17 : : * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 : : *
19 : : * Author: Matthias Clasen <mclasen@redhat.com>
20 : : */
21 : :
22 : : #include "config.h"
23 : :
24 : : #include <gio/gio.h>
25 : : #include <gi18n.h>
26 : :
27 : : #include "gio-tool.h"
28 : :
29 : :
30 : : static gboolean global_force = FALSE;
31 : : static gboolean empty = FALSE;
32 : : static gboolean restore = FALSE;
33 : : static gboolean list = FALSE;
34 : : static const GOptionEntry entries[] = {
35 : : { "force", 'f', 0, G_OPTION_ARG_NONE, &global_force, N_("Ignore nonexistent files, never prompt"), NULL },
36 : : { "empty", 0, 0, G_OPTION_ARG_NONE, &empty, N_("Empty the trash"), NULL },
37 : : { "list", 0, 0, G_OPTION_ARG_NONE, &list, N_("List files in the trash with their original locations"), NULL },
38 : : { "restore", 0, 0, G_OPTION_ARG_NONE, &restore, N_("Restore a file from trash to its original location (possibly "
39 : : "recreating the directory)"), NULL },
40 : : G_OPTION_ENTRY_NULL
41 : : };
42 : :
43 : : static void
44 : 0 : delete_trash_file (GFile *file, gboolean del_file, gboolean del_children)
45 : : {
46 : : GFileInfo *info;
47 : : GFile *child;
48 : : GFileEnumerator *enumerator;
49 : :
50 : 0 : g_return_if_fail (g_file_has_uri_scheme (file, "trash"));
51 : :
52 : 0 : if (del_children)
53 : : {
54 : 0 : enumerator = g_file_enumerate_children (file,
55 : : G_FILE_ATTRIBUTE_STANDARD_NAME ","
56 : : G_FILE_ATTRIBUTE_STANDARD_TYPE,
57 : : G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
58 : : NULL,
59 : : NULL);
60 : 0 : if (enumerator)
61 : : {
62 : 0 : while ((info = g_file_enumerator_next_file (enumerator, NULL, NULL)) != NULL)
63 : : {
64 : 0 : child = g_file_get_child (file, g_file_info_get_name (info));
65 : :
66 : : /* The g_file_delete operation works differently for locations
67 : : * provided by the trash backend as it prevents modifications of
68 : : * trashed items. For that reason, it is enough to call
69 : : * g_file_delete on top-level items only.
70 : : */
71 : 0 : delete_trash_file (child, TRUE, FALSE);
72 : :
73 : 0 : g_object_unref (child);
74 : 0 : g_object_unref (info);
75 : : }
76 : 0 : g_file_enumerator_close (enumerator, NULL, NULL);
77 : 0 : g_object_unref (enumerator);
78 : : }
79 : : }
80 : :
81 : 0 : if (del_file)
82 : 0 : g_file_delete (file, NULL, NULL);
83 : : }
84 : :
85 : : static gboolean
86 : 0 : restore_trash (GFile *file,
87 : : gboolean force,
88 : : GCancellable *cancellable,
89 : : GError **error)
90 : : {
91 : 0 : GFileInfo *info = NULL;
92 : 0 : GFile *target = NULL;
93 : 0 : GFile *dir_target = NULL;
94 : 0 : gboolean ret = FALSE;
95 : 0 : gchar *orig_path = NULL;
96 : 0 : GError *local_error = NULL;
97 : :
98 : 0 : info = g_file_query_info (file, G_FILE_ATTRIBUTE_TRASH_ORIG_PATH, G_FILE_QUERY_INFO_NONE, cancellable, &local_error);
99 : 0 : if (local_error)
100 : : {
101 : 0 : g_propagate_error (error, local_error);
102 : 0 : goto exit_func;
103 : : }
104 : :
105 : 0 : orig_path = g_file_info_get_attribute_as_string (info, G_FILE_ATTRIBUTE_TRASH_ORIG_PATH);
106 : 0 : if (!orig_path)
107 : : {
108 : 0 : g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("Unable to find original path"));
109 : 0 : goto exit_func;
110 : : }
111 : :
112 : 0 : target = g_file_new_for_commandline_arg (orig_path);
113 : 0 : g_free (orig_path);
114 : :
115 : 0 : dir_target = g_file_get_parent (target);
116 : 0 : if (dir_target)
117 : : {
118 : 0 : g_file_make_directory_with_parents (dir_target, cancellable, &local_error);
119 : 0 : if (g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_EXISTS))
120 : : {
121 : 0 : g_clear_error (&local_error);
122 : : }
123 : 0 : else if (local_error != NULL)
124 : : {
125 : 0 : g_propagate_prefixed_error (error, local_error, _("Unable to recreate original location: "));
126 : 0 : goto exit_func;
127 : : }
128 : : }
129 : :
130 : 0 : if (!g_file_move (file,
131 : : target,
132 : : force ? G_FILE_COPY_OVERWRITE : G_FILE_COPY_NONE,
133 : : cancellable,
134 : : NULL,
135 : : NULL,
136 : : &local_error))
137 : : {
138 : 0 : g_propagate_prefixed_error (error, local_error, _("Unable to move file to its original location: "));
139 : 0 : goto exit_func;
140 : : }
141 : 0 : ret = TRUE;
142 : :
143 : 0 : exit_func:
144 : 0 : g_clear_object (&target);
145 : 0 : g_clear_object (&dir_target);
146 : 0 : g_clear_object (&info);
147 : 0 : return ret;
148 : : }
149 : :
150 : : static gboolean
151 : 0 : trash_list (GFile *file,
152 : : GCancellable *cancellable,
153 : : GError **error)
154 : : {
155 : : GFileEnumerator *enumerator;
156 : : GFileInfo *info;
157 : 0 : GError *local_error = NULL;
158 : : gboolean res;
159 : :
160 : 0 : enumerator = g_file_enumerate_children (file,
161 : : G_FILE_ATTRIBUTE_STANDARD_NAME ","
162 : : G_FILE_ATTRIBUTE_TRASH_ORIG_PATH,
163 : : G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
164 : : cancellable,
165 : : &local_error);
166 : 0 : if (!enumerator)
167 : : {
168 : 0 : g_propagate_error (error, local_error);
169 : 0 : return FALSE;
170 : : }
171 : :
172 : 0 : res = TRUE;
173 : 0 : while ((info = g_file_enumerator_next_file (enumerator, cancellable, &local_error)) != NULL)
174 : : {
175 : : const char *name;
176 : : char *orig_path;
177 : : char *uri;
178 : : GFile* child;
179 : :
180 : 0 : name = g_file_info_get_name (info);
181 : 0 : child = g_file_get_child (file, name);
182 : 0 : uri = g_file_get_uri (child);
183 : 0 : g_object_unref (child);
184 : 0 : orig_path = g_file_info_get_attribute_as_string (info, G_FILE_ATTRIBUTE_TRASH_ORIG_PATH);
185 : :
186 : 0 : g_print ("%s\t%s\n", uri, orig_path);
187 : :
188 : 0 : g_object_unref (info);
189 : 0 : g_free (orig_path);
190 : 0 : g_free (uri);
191 : : }
192 : :
193 : 0 : if (local_error)
194 : : {
195 : 0 : g_propagate_error (error, local_error);
196 : 0 : local_error = NULL;
197 : 0 : res = FALSE;
198 : : }
199 : :
200 : 0 : if (!g_file_enumerator_close (enumerator, cancellable, &local_error))
201 : : {
202 : 0 : print_file_error (file, local_error->message);
203 : 0 : g_clear_error (&local_error);
204 : 0 : res = FALSE;
205 : : }
206 : :
207 : 0 : g_object_unref (enumerator);
208 : :
209 : 0 : return res;
210 : : }
211 : :
212 : : int
213 : 0 : handle_trash (int argc, char *argv[], gboolean do_help)
214 : : {
215 : : GOptionContext *context;
216 : : gchar *param;
217 : 0 : GError *error = NULL;
218 : 0 : int retval = 0;
219 : : GFile *file;
220 : :
221 : 0 : g_set_prgname ("gio trash");
222 : :
223 : : /* Translators: commandline placeholder */
224 : 0 : param = g_strdup_printf ("[%s…]", _("LOCATION"));
225 : 0 : context = g_option_context_new (param);
226 : 0 : g_free (param);
227 : 0 : g_option_context_set_help_enabled (context, FALSE);
228 : 0 : g_option_context_set_summary (context,
229 : 0 : _("Move/Restore files or directories to the trash."));
230 : 0 : g_option_context_set_description (context,
231 : 0 : _("Note: for --restore switch, if the original location of the trashed file \n"
232 : : "already exists, it will not be overwritten unless --force is set."));
233 : 0 : g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
234 : :
235 : 0 : if (do_help)
236 : : {
237 : 0 : show_help (context, NULL);
238 : 0 : g_option_context_free (context);
239 : 0 : return 0;
240 : : }
241 : :
242 : 0 : if (!g_option_context_parse (context, &argc, &argv, &error))
243 : : {
244 : 0 : show_help (context, error->message);
245 : 0 : g_error_free (error);
246 : 0 : g_option_context_free (context);
247 : 0 : return 1;
248 : : }
249 : :
250 : 0 : if (argc > 1)
251 : : {
252 : : int i;
253 : :
254 : 0 : for (i = 1; i < argc; i++)
255 : : {
256 : 0 : file = g_file_new_for_commandline_arg (argv[i]);
257 : 0 : error = NULL;
258 : 0 : if (restore)
259 : : {
260 : 0 : if (!g_file_has_uri_scheme (file, "trash"))
261 : : {
262 : 0 : print_file_error (file, _("Location given doesn't start with trash:///"));
263 : 0 : retval = 1;
264 : : }
265 : 0 : else if (!restore_trash (file, global_force, NULL, &error))
266 : : {
267 : 0 : print_file_error (file, error->message);
268 : 0 : retval = 1;
269 : : }
270 : : }
271 : 0 : else if (!g_file_trash (file, NULL, &error))
272 : : {
273 : 0 : if (!global_force ||
274 : 0 : !g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
275 : : {
276 : 0 : print_file_error (file, error->message);
277 : 0 : retval = 1;
278 : : }
279 : : }
280 : 0 : g_clear_error (&error);
281 : 0 : g_object_unref (file);
282 : : }
283 : : }
284 : 0 : else if (list)
285 : : {
286 : 0 : file = g_file_new_for_uri ("trash:");
287 : 0 : trash_list (file, NULL, &error);
288 : 0 : if (error)
289 : : {
290 : 0 : print_file_error (file, error->message);
291 : 0 : g_clear_error (&error);
292 : 0 : retval = 1;
293 : : }
294 : 0 : g_object_unref (file);
295 : : }
296 : 0 : else if (empty)
297 : : {
298 : 0 : file = g_file_new_for_uri ("trash:");
299 : 0 : delete_trash_file (file, FALSE, TRUE);
300 : 0 : g_object_unref (file);
301 : : }
302 : :
303 : 0 : if (argc == 1 && !empty && !list)
304 : : {
305 : 0 : show_help (context, _("No locations given"));
306 : 0 : g_option_context_free (context);
307 : 0 : return 1;
308 : : }
309 : :
310 : 0 : g_option_context_free (context);
311 : :
312 : 0 : return retval;
313 : : }
|