1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 22:10:45 +00:00
falk-werner_webfuse-provider/lib/webfuse/core/url.c

126 lines
2.4 KiB
C
Raw Normal View History

2020-06-11 17:12:07 +00:00
#include "webfuse/core/url.h"
2019-02-23 14:57:57 +00:00
#include <stdlib.h>
#include <string.h>
2020-06-11 17:12:07 +00:00
struct wf_url_protocol
2019-02-23 14:57:57 +00:00
{
char const * name;
size_t name_length;
int default_port;
bool use_tls;
2019-02-23 14:57:57 +00:00
};
2020-06-11 17:12:07 +00:00
static bool wf_url_readprotocol(
struct wf_url * url,
2019-02-23 14:57:57 +00:00
char const * * data)
{
2020-06-11 17:12:07 +00:00
static struct wf_url_protocol const known_protocols[] =
2019-02-23 14:57:57 +00:00
{
{"ws://", 5, 80, false},
{"wss://", 6, 443, true}
2019-02-23 14:57:57 +00:00
};
static size_t const count = (sizeof(known_protocols) / sizeof(known_protocols[0]));
bool found = false;
for(size_t i = 0; (!found) && (i < count); i++)
{
2020-06-11 17:12:07 +00:00
struct wf_url_protocol const * protocol = &known_protocols[i];
2019-02-23 14:57:57 +00:00
if (0 == strncmp(*data, protocol->name, protocol->name_length))
{
url->port = protocol->default_port;
url->use_tls = protocol->use_tls;
2019-02-23 14:57:57 +00:00
*data = *data + protocol->name_length;
found = true;
}
}
return found;
}
2020-06-11 17:12:07 +00:00
static bool wf_url_readhost(
struct wf_url * url,
2019-02-23 14:57:57 +00:00
char const * * data)
{
char * end = strpbrk(*data, ":/");
bool const result = (NULL != end);
if (result)
{
size_t length = end - *data;
url->host = strndup(*data, length);
*data = end;
}
return result;
}
2020-06-11 17:12:07 +00:00
static bool wf_url_readport(
struct wf_url * url,
2019-02-23 14:57:57 +00:00
char const * * data)
{
bool result;
if (':' == **data)
{
*data = *data + 1;
char * end = strchr(*data, '/');
result = (NULL != end);
if (result)
{
url->port = atoi(*data);
*data = end;
}
}
else
{
result = ('/' == **data);
}
return result;
}
2020-06-11 17:12:07 +00:00
static bool wf_url_readpath(
struct wf_url * url,
2019-02-23 14:57:57 +00:00
char const * * data)
{
bool const result = ('/' == **data);
url->path = strdup(*data);
*data = NULL;
return result;
}
2020-06-11 17:12:07 +00:00
bool wf_url_init(
struct wf_url * url,
2019-02-23 14:57:57 +00:00
char const * value)
{
2020-06-11 17:12:07 +00:00
memset(url, 0, sizeof(struct wf_url));
2019-02-23 14:57:57 +00:00
char const * data = value;
bool const result =
2020-06-11 17:12:07 +00:00
wf_url_readprotocol(url, &data) &&
wf_url_readhost(url, &data) &&
wf_url_readport(url, &data) &&
wf_url_readpath(url, &data)
2019-02-23 14:57:57 +00:00
;
if (!result)
{
2020-06-11 17:12:07 +00:00
wf_url_cleanup(url);
2019-02-23 14:57:57 +00:00
}
return result;
}
2020-06-11 17:12:07 +00:00
void wf_url_cleanup(
struct wf_url * url)
2019-02-23 14:57:57 +00:00
{
free(url->host);
free(url->path);
2020-06-11 17:12:07 +00:00
memset(url, 0, sizeof(struct wf_url));
2019-02-23 14:57:57 +00:00
}