mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-01-14 02:01:39 +00:00
* cfg.mk: Remove sc_prohibit_have_config_h from local-checks-to-skip * libwget/*.c: Include <config.h> unconditionally * src/*.c: Likewise * tests/*.c: Likewise
124 lines
3.2 KiB
C
124 lines
3.2 KiB
C
/*
|
|
* Copyright(c) 2013 Tim Ruehsen
|
|
* Copyright(c) 2015-2016 Free Software Foundation, Inc.
|
|
*
|
|
* This file is part of libwget.
|
|
*
|
|
* Libwget is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Libwget 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with libwget. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
* Extracting URLs from Atom feeds (RFC 4287)
|
|
*
|
|
* Changelog
|
|
* 15.12.2013 Tim Ruehsen created
|
|
*
|
|
* Example: http://ceciliaschola.org/feed/atom/
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <c-ctype.h>
|
|
|
|
#include <wget.h>
|
|
#include "private.h"
|
|
|
|
/**
|
|
* \file
|
|
* \brief URL extraction from Atom feed XML data
|
|
* \defgroup libwget-parse_atom Atom URL extraction routines
|
|
* @{
|
|
*
|
|
* Routines for URL extraction from Atom feeds.
|
|
*/
|
|
|
|
struct atom_context {
|
|
wget_vector_t
|
|
*urls;
|
|
};
|
|
|
|
static void _atom_get_url(void *context, int flags, const char *dir, const char *attr, const char *val, size_t len, size_t pos G_GNUC_WGET_UNUSED)
|
|
{
|
|
struct atom_context *ctx = context;
|
|
wget_string_t url;
|
|
|
|
if (!val || !len)
|
|
return;
|
|
|
|
url.p = NULL;
|
|
|
|
if ((flags & XML_FLG_ATTRIBUTE)) {
|
|
if (!wget_strcasecmp_ascii(attr, "href") || !wget_strcasecmp_ascii(attr, "uri")
|
|
|| !wget_strcasecmp_ascii(attr, "src") || !wget_strcasecmp_ascii(attr, "scheme")
|
|
|| !wget_strcasecmp_ascii(attr, "xmlns") || !wget_strncasecmp_ascii(attr, "xmlns:", 6))
|
|
{
|
|
for (;len && c_isspace(*val); val++, len--); // skip leading spaces
|
|
for (;len && c_isspace(val[len - 1]); len--); // skip trailing spaces
|
|
|
|
url.p = val;
|
|
url.len = len;
|
|
|
|
if (!ctx->urls)
|
|
ctx->urls = wget_vector_create(32, -2, NULL);
|
|
|
|
wget_vector_add(ctx->urls, &url, sizeof(url));
|
|
}
|
|
}
|
|
else if ((flags & XML_FLG_CONTENT)) {
|
|
const char *elem = strrchr(dir, '/');
|
|
|
|
if (elem) {
|
|
elem++;
|
|
|
|
if (!wget_strcasecmp_ascii(elem, "icon") || !wget_strcasecmp_ascii(elem, "id")
|
|
|| !wget_strcasecmp_ascii(elem, "logo"))
|
|
{
|
|
for (;len && c_isspace(*val); val++, len--); // skip leading spaces
|
|
for (;len && c_isspace(val[len - 1]); len--); // skip trailing spaces
|
|
|
|
// debug_printf("#2 %02X %s %s '%.*s' %zd\n", flags, dir, attr, (int) len, val, len);
|
|
|
|
url.p = val;
|
|
url.len = len;
|
|
|
|
if (!ctx->urls)
|
|
ctx->urls = wget_vector_create(32, -2, NULL);
|
|
|
|
wget_vector_add(ctx->urls, &url, sizeof(url));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \param[in] atom Atom XML data
|
|
* \param[in,out] urls Pointer to return vector of URLs
|
|
*
|
|
* Finds all URLs within the Atom XML data \p atom and returns them
|
|
* as vector in \p urls.
|
|
*
|
|
*/
|
|
void wget_atom_get_urls_inline(const char *atom, wget_vector_t **urls)
|
|
{
|
|
struct atom_context context = { .urls = NULL };
|
|
|
|
wget_xml_parse_buffer(atom, _atom_get_url, &context, XML_HINT_REMOVE_EMPTY_CONTENT);
|
|
|
|
*urls = context.urls;
|
|
}
|
|
|
|
/**@}*/
|