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
|
/*
* megatools - Mega.nz client library and tools
* Copyright (C) 2013 Ondřej Jirman <megi@xff.cz>
*
* 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 2 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "tools.h"
#include "shell.h"
static gchar *opt_path = "/Root";
static gboolean opt_noprogress = FALSE;
static GOptionEntry entries[] = {
{ "path", '\0', 0, G_OPTION_ARG_STRING, &opt_path, "Remote path to save files to", "PATH" },
{ "no-progress", '\0', 0, G_OPTION_ARG_NONE, &opt_noprogress, "Disable progress bar", NULL },
{ NULL }
};
static gchar *cur_file = NULL;
static void status_callback(struct mega_status_data *data, gpointer userdata)
{
if (!opt_noprogress && data->type == MEGA_STATUS_PROGRESS)
tool_show_progress(cur_file, data);
}
static int put_main(int ac, char *av[])
{
gc_error_free GError *local_err = NULL;
struct mega_session *s;
tool_init(&ac, &av, "- upload files to mega.nz", entries, TOOL_INIT_AUTH | TOOL_INIT_UPLOAD_OPTS);
if (ac < 2) {
g_printerr("ERROR: No files specified for upload!\n");
tool_fini(NULL);
return 1;
}
s = tool_start_session(TOOL_SESSION_OPEN);
if (!s) {
tool_fini(NULL);
return 1;
}
mega_session_watch_status(s, status_callback, NULL);
gint status = 0;
gint i;
for (i = 1; i < ac; i++) {
gchar *path = av[i];
g_free(cur_file);
cur_file = g_path_get_basename(path);
// perform download
if (!mega_session_put_compat(s, opt_path, path, &local_err)) {
if (!opt_noprogress && tool_is_stdout_tty())
g_print("\r" ESC_CLREOL "\n");
if (g_error_matches(local_err, MEGA_ERROR, MEGA_ERROR_EXISTS)) {
status = 2;
} else {
status = 1;
}
g_printerr("ERROR: Upload failed for '%s': %s\n", path, local_err->message);
g_clear_error(&local_err);
} else {
if (!opt_noprogress) {
if (tool_is_stdout_tty())
g_print("\r" ESC_CLREOL);
g_print("Uploaded %s\n", cur_file);
}
}
}
mega_session_save(s, NULL);
tool_fini(s);
return status;
}
const struct shell_tool shell_tool_put = {
.name = "put",
.main = put_main,
.usages = (char*[]){
"[--no-progress] [--path <remotepath>] <paths>...",
NULL
},
};
|