summaryrefslogtreecommitdiffstats
path: root/subprojects/extensions-tool/src/command-install.c
blob: 2eefabafa3fbbe1926cea8f6f8cfbad9c8c2a537 (plain)
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
/* command-install.c
 *
 * Copyright 2018 Florian Müllner <fmuellner@gnome.org>
 *
 * 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 3 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 details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

#include <glib/gi18n.h>
#include <gio/gio.h>

#include <gnome-autoar/gnome-autoar.h>
#include <json-glib/json-glib.h>

#include "commands.h"
#include "common.h"
#include "config.h"

static JsonObject *
load_metadata (GFile   *dir,
               GError **error)
{
  g_autoptr (JsonParser) parser = NULL;
  g_autoptr (GInputStream) stream = NULL;
  g_autoptr (GFile) file = NULL;

  file = g_file_get_child (dir, "metadata.json");
  stream = G_INPUT_STREAM (g_file_read (file, NULL, error));
  if (stream == NULL)
    return NULL;

  parser = json_parser_new_immutable ();
  if (!json_parser_load_from_stream (parser, stream, NULL, error))
    return NULL;

  return json_node_dup_object (json_parser_get_root (parser));
}

static void
on_error (AutoarExtractor *extractor,
          GError          *error,
          gpointer         data)
{
  *((GError **)data) = g_error_copy (error);
}

static GFile *
on_decide_destination (AutoarExtractor *extractor,
                       GFile           *dest,
                       GList           *files,
                       gpointer         data)
{
  g_autofree char *dest_path = NULL;
  GFile *new_dest;
  int copy = 1;

  dest_path = g_file_get_path (dest);
  new_dest = g_object_ref (dest);

  while (g_file_query_exists (new_dest, NULL))
    {
      g_autofree char *new_path = g_strdup_printf ("%s (%d)", dest_path, copy);

      g_object_unref (new_dest);
      new_dest = g_file_new_for_path (new_path);

      copy++;
    }

  *((GFile **)data) = g_object_ref (new_dest);

  return new_dest;
}

static int
install_extension (const char *bundle,
                   gboolean    force)
{
  g_autoptr (AutoarExtractor) extractor = NULL;
  g_autoptr (JsonObject) metadata = NULL;
  g_autoptr (GFile) cachedir = NULL;
  g_autoptr (GFile) tmpdir = NULL;
  g_autoptr (GFile) src = NULL;
  g_autoptr (GFile) dst = NULL;
  g_autoptr (GFile) dstdir = NULL;
  g_autoptr (GError) error = NULL;
  g_autofree char *cwd = NULL;
  const char *uuid;

  cwd = g_get_current_dir ();
  src = g_file_new_for_commandline_arg_and_cwd (bundle, cwd);
  cachedir = g_file_new_for_path (g_get_user_cache_dir ());

  extractor = autoar_extractor_new (src, cachedir);

  g_signal_connect (extractor, "error", G_CALLBACK (on_error), &error);
  g_signal_connect (extractor, "decide-destination", G_CALLBACK (on_decide_destination), &tmpdir);

  autoar_extractor_start (extractor, NULL);

  if (error != NULL)
    goto err;

  metadata = load_metadata (tmpdir, &error);
  if (metadata == NULL)
    goto err;

  dstdir = g_file_new_build_filename (g_get_user_data_dir (),
                                      "gnome-shell", "extensions", NULL);

  if (!g_file_make_directory_with_parents (dstdir, NULL, &error))
    {
      if (error->code == G_IO_ERROR_EXISTS)
        g_clear_error (&error);
      else
        goto err;
    }

  uuid = json_object_get_string_member (metadata, "uuid");
  dst = g_file_get_child (dstdir, uuid);

  if (g_file_query_exists (dst, NULL))
    {
      if (!force)
        {
          g_set_error (&error, G_IO_ERROR, G_IO_ERROR_EXISTS,
                       "%s exists and --force was not specified", uuid);
          goto err;
        }
      else if (!file_delete_recursively (dst, &error))
        {
          goto err;
        }
    }

  if (!g_file_move (tmpdir, dst, G_FILE_COPY_NONE, NULL, NULL, NULL, &error))
    goto err;

  return 0;

err:
  if (error != NULL)
    g_printerr ("%s\n", error->message);

  if (tmpdir != NULL)
    file_delete_recursively (tmpdir, NULL);

  return 2;
}

int
handle_install (int argc, char *argv[], gboolean do_help)
{
  g_autoptr (GOptionContext) context = NULL;
  g_autoptr (GError) error = NULL;
  g_auto (GStrv) filenames = NULL;
  gboolean force = FALSE;
  GOptionEntry entries[] = {
    { .long_name = "force", .short_name = 'f',
      .arg = G_OPTION_ARG_NONE, .arg_data = &force,
      .description = _("Overwrite an existing extension") },
    { .long_name = G_OPTION_REMAINING,
      .arg_description =_("EXTENSION_BUNDLE"),
      .arg = G_OPTION_ARG_FILENAME_ARRAY, .arg_data = &filenames },
    { NULL }
  };

  g_set_prgname ("gnome-extensions install");

  context = g_option_context_new (NULL);
  g_option_context_set_help_enabled (context, FALSE);
  g_option_context_set_summary (context, _("Install an extension bundle"));
  g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
  g_option_context_add_group (context, get_option_group());

  if (do_help)
    {
      show_help (context, NULL);
      return 0;
    }

  if (!g_option_context_parse (context, &argc, &argv, &error))
    {
      show_help (context, error->message);
      return 1;
    }

  if (filenames == NULL)
    {
      show_help (context, _("No extension bundle specified"));
      return 1;
    }

  if (g_strv_length (filenames) > 1)
    {
      show_help (context, _("More than one extension bundle specified"));
      return 1;
    }

  return install_extension (*filenames, force);
}