2015-05-05 17:36:58 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-01-22 13:40:32 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2015-05-05 17:36:58 +02:00
|
|
|
*
|
|
|
|
* RetroArch 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 Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch 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 RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-09 20:10:58 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-05-05 17:36:58 +02:00
|
|
|
#include <net/net_http.h>
|
2016-01-20 04:07:24 +01:00
|
|
|
#include <string/stdstring.h>
|
2015-05-05 18:34:48 +02:00
|
|
|
#include <compat/strl.h>
|
2015-06-08 11:10:12 +02:00
|
|
|
#include <file/file_path.h>
|
2015-06-28 19:10:36 +02:00
|
|
|
#include <net/net_compat.h>
|
2017-06-28 04:41:38 +02:00
|
|
|
#include <retro_timers.h>
|
2015-05-05 17:36:58 +02:00
|
|
|
|
2019-05-22 09:55:10 +02:00
|
|
|
#ifdef RARCH_INTERNAL
|
2018-01-01 02:08:09 -05:00
|
|
|
#include "../gfx/video_display_server.h"
|
2019-05-22 09:55:10 +02:00
|
|
|
#endif
|
2019-01-20 02:17:43 +01:00
|
|
|
#include "task_file_transfer.h"
|
2016-02-09 17:12:39 +01:00
|
|
|
#include "tasks_internal.h"
|
2015-05-05 17:36:58 +02:00
|
|
|
|
2015-07-08 21:35:24 +02:00
|
|
|
enum http_status_enum
|
|
|
|
{
|
2017-05-20 14:02:16 +02:00
|
|
|
HTTP_STATUS_CONNECTION_TRANSFER = 0,
|
2015-07-08 21:35:24 +02:00
|
|
|
HTTP_STATUS_CONNECTION_TRANSFER_PARSE,
|
|
|
|
HTTP_STATUS_TRANSFER,
|
|
|
|
HTTP_STATUS_TRANSFER_PARSE,
|
|
|
|
HTTP_STATUS_TRANSFER_PARSE_FREE
|
|
|
|
};
|
|
|
|
|
2017-05-13 18:10:26 +02:00
|
|
|
struct http_transfer_info
|
2016-05-19 00:04:38 +02:00
|
|
|
{
|
2016-10-27 10:19:04 +02:00
|
|
|
char url[255];
|
2016-05-19 00:04:38 +02:00
|
|
|
int progress;
|
2017-05-13 18:10:26 +02:00
|
|
|
};
|
2016-05-19 00:04:38 +02:00
|
|
|
|
2017-05-13 18:10:26 +02:00
|
|
|
struct http_handle
|
2015-07-08 21:35:24 +02:00
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct http_connection_t *handle;
|
|
|
|
transfer_cb_t cb;
|
2016-10-27 10:19:04 +02:00
|
|
|
char elem1[255];
|
|
|
|
char url[255];
|
2015-07-08 21:35:24 +02:00
|
|
|
} connection;
|
|
|
|
struct http_t *handle;
|
|
|
|
transfer_cb_t cb;
|
|
|
|
unsigned status;
|
2015-11-24 23:12:31 -03:00
|
|
|
bool error;
|
2017-05-13 18:10:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct http_transfer_info http_transfer_info_t;
|
|
|
|
typedef struct http_handle http_handle_t;
|
2015-07-08 21:35:24 +02:00
|
|
|
|
2016-05-13 10:19:53 +02:00
|
|
|
static int task_http_con_iterate_transfer(http_handle_t *http)
|
2015-05-05 17:36:58 +02:00
|
|
|
{
|
|
|
|
if (!net_http_connection_iterate(http->connection.handle))
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 10:19:53 +02:00
|
|
|
static int task_http_conn_iterate_transfer_parse(
|
2016-02-03 17:41:04 +01:00
|
|
|
http_handle_t *http)
|
2015-05-05 17:36:58 +02:00
|
|
|
{
|
|
|
|
if (net_http_connection_done(http->connection.handle))
|
|
|
|
{
|
|
|
|
if (http->connection.handle && http->connection.cb)
|
|
|
|
http->connection.cb(http, 0);
|
|
|
|
}
|
2017-12-11 23:55:31 -08:00
|
|
|
|
2015-05-05 17:36:58 +02:00
|
|
|
net_http_connection_free(http->connection.handle);
|
|
|
|
|
|
|
|
http->connection.handle = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cb_http_conn_default(void *data_, size_t len)
|
|
|
|
{
|
|
|
|
http_handle_t *http = (http_handle_t*)data_;
|
|
|
|
|
|
|
|
if (!http)
|
|
|
|
return -1;
|
|
|
|
|
2015-06-28 19:10:36 +02:00
|
|
|
if (!network_init())
|
|
|
|
return -1;
|
|
|
|
|
2015-05-05 17:36:58 +02:00
|
|
|
http->handle = net_http_new(http->connection.handle);
|
|
|
|
|
|
|
|
if (!http->handle)
|
|
|
|
{
|
2015-11-24 23:12:31 -03:00
|
|
|
http->error = true;
|
2015-05-05 17:36:58 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
http->cb = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-13 10:19:53 +02:00
|
|
|
* task_http_iterate_transfer:
|
2015-05-05 17:36:58 +02:00
|
|
|
*
|
|
|
|
* Resumes HTTP transfer update.
|
|
|
|
*
|
|
|
|
* Returns: 0 when finished, -1 when we should continue
|
|
|
|
* with the transfer on the next frame.
|
|
|
|
**/
|
2016-05-13 10:19:53 +02:00
|
|
|
static int task_http_iterate_transfer(retro_task_t *task)
|
2015-05-05 17:36:58 +02:00
|
|
|
{
|
2015-11-30 09:17:46 -03:00
|
|
|
http_handle_t *http = (http_handle_t*)task->state;
|
2015-07-01 19:40:50 +02:00
|
|
|
size_t pos = 0, tot = 0;
|
|
|
|
|
2016-10-09 14:33:19 -03:00
|
|
|
/* FIXME: This wouldn't be needed if we could wait for a timeout */
|
2017-01-03 18:26:52 +01:00
|
|
|
if (task_queue_is_threaded())
|
2016-10-09 14:33:19 -03:00
|
|
|
retro_sleep(1);
|
|
|
|
|
2015-07-01 19:40:50 +02:00
|
|
|
if (!net_http_update(http->handle, &pos, &tot))
|
|
|
|
{
|
2020-01-22 17:42:55 -07:00
|
|
|
if (tot == 0)
|
|
|
|
task_set_progress(task, -1);
|
|
|
|
else if (pos < (((size_t)-1) / 100))
|
|
|
|
/* prefer multiply then divide for more accurate results */
|
|
|
|
task_set_progress(task, (signed)(pos * 100 / tot));
|
|
|
|
else
|
|
|
|
/* but invert the logic if it would cause an overflow */
|
|
|
|
task_set_progress(task, MAX((signed)pos / (tot / 100), 100));
|
2015-07-01 19:40:50 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-05-05 17:36:58 +02:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
static void task_http_transfer_handler(retro_task_t *task)
|
2015-05-05 17:36:58 +02:00
|
|
|
{
|
2016-05-13 10:28:44 +02:00
|
|
|
http_transfer_data_t *data = NULL;
|
|
|
|
http_handle_t *http = (http_handle_t*)task->state;
|
2015-05-05 17:36:58 +02:00
|
|
|
|
2016-12-29 00:50:18 -05:00
|
|
|
if (task_get_cancelled(task))
|
2016-05-05 15:32:36 -03:00
|
|
|
goto task_finished;
|
|
|
|
|
2015-05-05 17:36:58 +02:00
|
|
|
switch (http->status)
|
|
|
|
{
|
|
|
|
case HTTP_STATUS_CONNECTION_TRANSFER_PARSE:
|
2016-05-13 10:19:53 +02:00
|
|
|
task_http_conn_iterate_transfer_parse(http);
|
2015-05-05 17:36:58 +02:00
|
|
|
http->status = HTTP_STATUS_TRANSFER;
|
|
|
|
break;
|
|
|
|
case HTTP_STATUS_CONNECTION_TRANSFER:
|
2016-05-13 10:19:53 +02:00
|
|
|
if (!task_http_con_iterate_transfer(http))
|
2015-05-05 17:36:58 +02:00
|
|
|
http->status = HTTP_STATUS_CONNECTION_TRANSFER_PARSE;
|
|
|
|
break;
|
|
|
|
case HTTP_STATUS_TRANSFER:
|
2016-05-13 10:19:53 +02:00
|
|
|
if (!task_http_iterate_transfer(task))
|
2015-11-23 22:30:57 -03:00
|
|
|
goto task_finished;
|
2015-05-05 17:36:58 +02:00
|
|
|
break;
|
2015-11-23 22:30:57 -03:00
|
|
|
case HTTP_STATUS_TRANSFER_PARSE:
|
2015-11-23 11:13:26 -03:00
|
|
|
goto task_finished;
|
2015-05-05 17:36:58 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-07-08 21:18:34 +02:00
|
|
|
|
2016-05-05 15:32:36 -03:00
|
|
|
if (http->error)
|
2015-11-24 22:17:38 -03:00
|
|
|
goto task_finished;
|
|
|
|
|
2015-11-23 11:13:26 -03:00
|
|
|
return;
|
|
|
|
task_finished:
|
2016-12-29 00:50:18 -05:00
|
|
|
task_set_finished(task, true);
|
2015-07-08 21:35:24 +02:00
|
|
|
|
2015-11-23 11:13:26 -03:00
|
|
|
if (http->handle)
|
|
|
|
{
|
2015-11-23 22:30:57 -03:00
|
|
|
size_t len = 0;
|
|
|
|
char *tmp = (char*)net_http_data(http->handle, &len, false);
|
|
|
|
|
|
|
|
if (tmp && http->cb)
|
|
|
|
http->cb(tmp, len);
|
|
|
|
|
2016-12-29 00:50:18 -05:00
|
|
|
if (net_http_error(http->handle) || task_get_cancelled(task))
|
2015-11-23 22:30:57 -03:00
|
|
|
{
|
|
|
|
tmp = (char*)net_http_data(http->handle, &len, true);
|
|
|
|
|
|
|
|
if (tmp)
|
|
|
|
free(tmp);
|
|
|
|
|
2016-12-29 00:50:18 -05:00
|
|
|
if (task_get_cancelled(task))
|
|
|
|
task_set_error(task, strdup("Task cancelled."));
|
2019-08-23 16:52:30 +02:00
|
|
|
else if (!task->mute)
|
2016-12-29 00:50:18 -05:00
|
|
|
task_set_error(task, strdup("Download failed."));
|
2015-11-23 22:30:57 -03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-06-24 19:27:02 +02:00
|
|
|
data = (http_transfer_data_t*)malloc(sizeof(*data));
|
2015-11-23 22:30:57 -03:00
|
|
|
data->data = tmp;
|
|
|
|
data->len = len;
|
2015-07-08 21:18:34 +02:00
|
|
|
|
2016-12-29 00:50:18 -05:00
|
|
|
task_set_data(task, data);
|
2015-11-23 22:30:57 -03:00
|
|
|
}
|
2015-07-08 21:35:24 +02:00
|
|
|
|
2015-11-23 11:13:26 -03:00
|
|
|
net_http_delete(http->handle);
|
2015-11-24 23:12:31 -03:00
|
|
|
} else if (http->error)
|
2016-12-29 00:50:18 -05:00
|
|
|
task_set_error(task, strdup("Internal error."));
|
2015-07-08 21:35:24 +02:00
|
|
|
|
2015-11-23 11:13:26 -03:00
|
|
|
free(http);
|
2015-07-08 21:35:24 +02:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
static bool task_http_finder(retro_task_t *task, void *user_data)
|
2015-11-30 11:36:53 -03:00
|
|
|
{
|
2016-05-13 10:28:44 +02:00
|
|
|
http_handle_t *http = NULL;
|
2016-05-05 09:48:08 +10:00
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
if (!task || (task->handler != task_http_transfer_handler))
|
2016-02-08 05:58:27 +01:00
|
|
|
return false;
|
2015-11-30 11:36:53 -03:00
|
|
|
|
2016-05-05 09:48:08 +10:00
|
|
|
if (!user_data)
|
|
|
|
return false;
|
2015-11-30 11:36:53 -03:00
|
|
|
|
2016-05-05 09:48:08 +10:00
|
|
|
http = (http_handle_t*)task->state;
|
|
|
|
if (!http)
|
2016-02-08 05:58:27 +01:00
|
|
|
return false;
|
2016-02-08 05:48:36 +01:00
|
|
|
|
2016-05-05 09:48:08 +10:00
|
|
|
return string_is_equal(http->connection.url, (const char*)user_data);
|
2015-11-30 11:36:53 -03:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
static bool task_http_retriever(retro_task_t *task, void *data)
|
2016-05-05 14:11:28 +10:00
|
|
|
{
|
2016-05-08 04:04:50 +02:00
|
|
|
http_transfer_info_t *info = (http_transfer_info_t*)data;
|
2016-05-05 14:11:28 +10:00
|
|
|
|
2016-05-06 14:31:25 +10:00
|
|
|
/* Extract HTTP handle and return already if invalid */
|
2016-05-08 04:04:50 +02:00
|
|
|
http_handle_t *http = (http_handle_t *)task->state;
|
2016-05-05 14:11:28 +10:00
|
|
|
if (!http)
|
|
|
|
return false;
|
|
|
|
|
2016-05-06 14:31:25 +10:00
|
|
|
/* Fill HTTP info link */
|
2016-05-05 14:11:28 +10:00
|
|
|
strlcpy(info->url, http->connection.url, sizeof(info->url));
|
2016-12-29 00:50:18 -05:00
|
|
|
info->progress = task_get_progress(task);
|
2016-05-06 14:31:25 +10:00
|
|
|
return true;
|
2016-05-05 14:11:28 +10:00
|
|
|
}
|
|
|
|
|
2018-01-01 02:08:09 -05:00
|
|
|
static void http_transfer_progress_cb(retro_task_t *task)
|
|
|
|
{
|
2019-05-22 09:55:10 +02:00
|
|
|
#ifdef RARCH_INTERNAL
|
|
|
|
if (task)
|
|
|
|
video_display_server_set_window_progress(task->progress, task->finished);
|
|
|
|
#endif
|
2018-01-01 02:08:09 -05:00
|
|
|
}
|
|
|
|
|
2017-05-09 20:10:58 +02:00
|
|
|
static void* task_push_http_transfer_generic(
|
|
|
|
struct http_connection_t *conn,
|
|
|
|
const char *url, bool mute, const char *type,
|
2016-02-09 17:47:04 +01:00
|
|
|
retro_task_callback_t cb, void *user_data)
|
2015-07-08 21:35:24 +02:00
|
|
|
{
|
2016-01-28 09:57:55 +01:00
|
|
|
task_finder_data_t find_data;
|
2019-05-22 09:55:10 +02:00
|
|
|
retro_task_t *t = NULL;
|
|
|
|
http_handle_t *http = NULL;
|
2015-07-08 21:35:24 +02:00
|
|
|
|
2019-05-22 09:55:10 +02:00
|
|
|
find_data.func = task_http_finder;
|
|
|
|
find_data.userdata = (void*)url;
|
2016-01-28 09:57:55 +01:00
|
|
|
|
2015-11-30 11:36:53 -03:00
|
|
|
/* Concurrent download of the same file is not allowed */
|
2017-05-14 20:43:39 +02:00
|
|
|
if (task_queue_find(&find_data))
|
2019-09-29 21:09:08 -06:00
|
|
|
{
|
|
|
|
if (conn)
|
|
|
|
net_http_connection_free(conn);
|
|
|
|
|
2016-05-05 15:32:36 -03:00
|
|
|
return NULL;
|
2019-09-29 21:09:08 -06:00
|
|
|
}
|
2015-11-30 11:36:53 -03:00
|
|
|
|
2015-11-23 11:13:26 -03:00
|
|
|
if (!conn)
|
2016-05-05 15:32:36 -03:00
|
|
|
return NULL;
|
2015-11-23 11:13:26 -03:00
|
|
|
|
2020-06-27 16:36:08 +02:00
|
|
|
http = (http_handle_t*)malloc(sizeof(*http));
|
2016-01-21 03:19:14 +01:00
|
|
|
|
|
|
|
if (!http)
|
2016-01-21 03:22:17 +01:00
|
|
|
goto error;
|
2016-01-21 03:19:14 +01:00
|
|
|
|
2020-06-27 16:36:08 +02:00
|
|
|
http->connection.handle = conn;
|
|
|
|
http->connection.cb = &cb_http_conn_default;
|
|
|
|
http->connection.elem1[0] = '\0';
|
|
|
|
http->connection.url[0] = '\0';
|
|
|
|
http->handle = NULL;
|
|
|
|
http->cb = NULL;
|
|
|
|
http->status = 0;
|
|
|
|
http->error = false;
|
2015-11-23 11:13:26 -03:00
|
|
|
|
|
|
|
if (type)
|
|
|
|
strlcpy(http->connection.elem1, type, sizeof(http->connection.elem1));
|
|
|
|
|
2016-05-05 09:48:08 +10:00
|
|
|
strlcpy(http->connection.url, url, sizeof(http->connection.url));
|
|
|
|
|
2016-01-21 03:22:17 +01:00
|
|
|
http->status = HTTP_STATUS_CONNECTION_TRANSFER;
|
2018-11-22 15:45:52 +01:00
|
|
|
t = task_init();
|
2016-01-21 03:19:14 +01:00
|
|
|
|
|
|
|
if (!t)
|
2016-01-21 03:22:17 +01:00
|
|
|
goto error;
|
2016-01-21 03:19:14 +01:00
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
t->handler = task_http_transfer_handler;
|
2016-01-21 03:22:17 +01:00
|
|
|
t->state = http;
|
2016-05-27 00:06:03 -03:00
|
|
|
t->mute = mute;
|
2016-01-21 03:22:17 +01:00
|
|
|
t->callback = cb;
|
2018-01-01 02:08:09 -05:00
|
|
|
t->progress_cb = http_transfer_progress_cb;
|
2016-01-21 03:22:17 +01:00
|
|
|
t->user_data = user_data;
|
|
|
|
t->progress = -1;
|
2015-11-30 09:17:46 -03:00
|
|
|
|
2017-05-14 20:43:39 +02:00
|
|
|
task_queue_push(t);
|
2015-11-23 11:13:26 -03:00
|
|
|
|
2016-05-05 15:32:36 -03:00
|
|
|
return t;
|
2016-01-21 03:22:17 +01:00
|
|
|
|
|
|
|
error:
|
|
|
|
if (conn)
|
|
|
|
net_http_connection_free(conn);
|
|
|
|
if (http)
|
|
|
|
free(http);
|
|
|
|
|
2016-05-05 15:32:36 -03:00
|
|
|
return NULL;
|
2015-07-08 21:35:24 +02:00
|
|
|
}
|
2016-05-05 14:11:28 +10:00
|
|
|
|
2017-05-09 20:10:58 +02:00
|
|
|
void* task_push_http_transfer(const char *url, bool mute,
|
|
|
|
const char *type,
|
2018-03-15 23:16:49 -03:00
|
|
|
retro_task_callback_t cb, void *user_data)
|
|
|
|
{
|
2019-05-22 09:55:10 +02:00
|
|
|
if (string_is_empty(url))
|
|
|
|
return NULL;
|
2020-01-17 19:48:40 -07:00
|
|
|
|
2019-09-17 06:10:15 +02:00
|
|
|
return task_push_http_transfer_generic(
|
|
|
|
net_http_connection_new(url, "GET", NULL),
|
|
|
|
url, mute, type, cb, user_data);
|
2018-03-15 23:16:49 -03:00
|
|
|
}
|
|
|
|
|
2020-01-17 19:48:40 -07:00
|
|
|
void* task_push_http_transfer_file(const char* url, bool mute,
|
|
|
|
const char* type,
|
|
|
|
retro_task_callback_t cb, file_transfer_t* transfer_data)
|
|
|
|
{
|
2020-01-18 05:48:19 +01:00
|
|
|
const char *s = NULL;
|
|
|
|
char tmp[255] = "";
|
2020-01-17 19:48:40 -07:00
|
|
|
retro_task_t *t = NULL;
|
|
|
|
|
|
|
|
if (string_is_empty(url))
|
|
|
|
return NULL;
|
|
|
|
|
2020-01-18 05:48:19 +01:00
|
|
|
t = (retro_task_t*)task_push_http_transfer_generic(
|
2020-01-17 19:48:40 -07:00
|
|
|
net_http_connection_new(url, "GET", NULL),
|
|
|
|
url, mute, type, cb, transfer_data);
|
|
|
|
|
|
|
|
if (!t)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (transfer_data)
|
|
|
|
s = transfer_data->path;
|
|
|
|
else
|
|
|
|
s = url;
|
|
|
|
|
|
|
|
strlcpy(tmp, msg_hash_to_str(MSG_DOWNLOADING), sizeof(tmp));
|
|
|
|
strlcat(tmp, " ", sizeof(tmp));
|
|
|
|
|
2020-06-25 14:38:06 +02:00
|
|
|
if (string_ends_with_size(s, ".index",
|
|
|
|
strlen(s), STRLEN_CONST(".index")))
|
2020-01-17 19:48:40 -07:00
|
|
|
strlcat(tmp, msg_hash_to_str(MSG_INDEX_FILE), sizeof(tmp));
|
|
|
|
else
|
|
|
|
strlcat(tmp, s, sizeof(tmp));
|
|
|
|
|
|
|
|
t->title = strdup(tmp);
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2019-09-29 21:09:08 -06:00
|
|
|
void* task_push_http_transfer_with_user_agent(const char *url, bool mute,
|
|
|
|
const char *type, const char* user_agent,
|
|
|
|
retro_task_callback_t cb, void *user_data)
|
|
|
|
{
|
|
|
|
struct http_connection_t* conn;
|
|
|
|
|
|
|
|
if (string_is_empty(url))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
conn = net_http_connection_new(url, "GET", NULL);
|
|
|
|
if (!conn)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (user_agent != NULL)
|
|
|
|
net_http_connection_set_user_agent(conn, user_agent);
|
|
|
|
|
|
|
|
/* assert: task_push_http_transfer_generic will free conn on failure */
|
|
|
|
return task_push_http_transfer_generic(conn, url, mute, type, cb, user_data);
|
|
|
|
}
|
|
|
|
|
2017-05-09 20:10:58 +02:00
|
|
|
void* task_push_http_post_transfer(const char *url,
|
|
|
|
const char *post_data, bool mute,
|
2017-03-02 17:36:25 -05:00
|
|
|
const char *type, retro_task_callback_t cb, void *user_data)
|
|
|
|
{
|
2019-05-22 09:55:10 +02:00
|
|
|
if (string_is_empty(url))
|
|
|
|
return NULL;
|
2019-09-17 06:10:15 +02:00
|
|
|
return task_push_http_transfer_generic(
|
|
|
|
net_http_connection_new(url, "POST", post_data),
|
2017-05-09 20:10:58 +02:00
|
|
|
url, mute, type, cb, user_data);
|
2017-03-02 17:36:25 -05:00
|
|
|
}
|
|
|
|
|
2020-02-14 20:12:49 -07:00
|
|
|
void* task_push_http_post_transfer_with_user_agent(const char *url,
|
|
|
|
const char *post_data, bool mute,
|
|
|
|
const char *type, const char* user_agent,
|
|
|
|
retro_task_callback_t cb, void *user_data)
|
|
|
|
{
|
|
|
|
struct http_connection_t* conn;
|
|
|
|
|
|
|
|
if (string_is_empty(url))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
conn = net_http_connection_new(url, "POST", post_data);
|
|
|
|
if (!conn)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (user_agent != NULL)
|
|
|
|
net_http_connection_set_user_agent(conn, user_agent);
|
|
|
|
|
|
|
|
/* assert: task_push_http_transfer_generic will free conn on failure */
|
|
|
|
return task_push_http_transfer_generic(conn, url, mute, type, cb, user_data);
|
|
|
|
}
|
|
|
|
|
2016-05-06 14:31:25 +10:00
|
|
|
task_retriever_info_t *http_task_get_transfer_list(void)
|
2016-05-05 14:11:28 +10:00
|
|
|
{
|
2016-05-06 14:31:25 +10:00
|
|
|
task_retriever_data_t retrieve_data;
|
2016-05-05 14:11:28 +10:00
|
|
|
|
2016-05-06 14:31:25 +10:00
|
|
|
/* Fill retrieve data */
|
2016-05-27 18:14:47 +02:00
|
|
|
retrieve_data.handler = task_http_transfer_handler;
|
2016-05-06 14:31:25 +10:00
|
|
|
retrieve_data.element_size = sizeof(http_transfer_info_t);
|
2016-05-27 18:14:47 +02:00
|
|
|
retrieve_data.func = task_http_retriever;
|
2016-05-05 14:11:28 +10:00
|
|
|
|
|
|
|
/* Build list of current HTTP transfers and return it */
|
2017-05-14 20:43:39 +02:00
|
|
|
task_queue_retrieve(&retrieve_data);
|
|
|
|
|
2016-05-06 14:31:25 +10:00
|
|
|
return retrieve_data.list;
|
2016-05-05 14:11:28 +10:00
|
|
|
}
|