mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 14:41:08 +00:00
115 lines
3.0 KiB
C
115 lines
3.0 KiB
C
/*
|
|
* Copyright (c) 2013 Tim Ruehsen
|
|
* Copyright (c) 2015-2022 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 Sitemap (XML)
|
|
*
|
|
* Changelog
|
|
* 14.12.2013 Tim Ruehsen created
|
|
*
|
|
*/
|
|
|
|
#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 Sitemap XML data
|
|
* \defgroup libwget-parse_sitemap Sitemap URL extraction routines
|
|
* @{
|
|
*
|
|
* Routines for URL extraction from Sitemap XML data.
|
|
*/
|
|
|
|
struct sitemap_context {
|
|
wget_vector
|
|
*sitemap_urls,
|
|
*urls;
|
|
};
|
|
|
|
static void sitemap_get_url(void *context, int flags, const char *dir, const char *attr WGET_GCC_UNUSED, const char *val, size_t len, size_t pos WGET_GCC_UNUSED)
|
|
{
|
|
struct sitemap_context *ctx = context;
|
|
|
|
if ((flags & XML_FLG_CONTENT) && len) {
|
|
int type;
|
|
|
|
if (!wget_strcasecmp_ascii(dir, "/sitemapindex/sitemap/loc"))
|
|
type = 1;
|
|
else if (!wget_strcasecmp_ascii(dir, "/urlset/url/loc"))
|
|
type = 2;
|
|
else
|
|
type = 0;
|
|
|
|
if (type) {
|
|
for (;len && c_isspace(*val); val++, len--); // skip leading spaces
|
|
for (;len && c_isspace(val[len - 1]); len--); // skip trailing spaces
|
|
|
|
// info_printf("%02X %s %s '%.*s' %zd %zd\n", flags, dir, attr, (int) len, val, len, pos);
|
|
wget_string *url;
|
|
|
|
if (!(url = wget_malloc(sizeof(wget_string))))
|
|
return;
|
|
|
|
url->p = val;
|
|
url->len = len;
|
|
|
|
if (type == 1) {
|
|
if (!ctx->sitemap_urls)
|
|
ctx->sitemap_urls = wget_vector_create(32, NULL);
|
|
|
|
wget_vector_add(ctx->sitemap_urls, url);
|
|
} else {
|
|
if (!ctx->urls)
|
|
ctx->urls = wget_vector_create(32, NULL);
|
|
|
|
wget_vector_add(ctx->urls, url);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* \param[in] sitemap Sitemap XML data
|
|
* \param[in,out] urls Pointer to return vector of URLs
|
|
* \param[in,out] sitemap_urls Pointer to return vector of sitemap URLs
|
|
*
|
|
* Finds all URLs and sitemap URLs within the Sitemap XML data \p sitemap and returns them
|
|
* as vector in \p urls and/or \p sitemap_urls.
|
|
*
|
|
*/
|
|
void wget_sitemap_get_urls_inline(const char *sitemap, wget_vector **urls, wget_vector **sitemap_urls)
|
|
{
|
|
struct sitemap_context context = { .urls = NULL, .sitemap_urls = NULL };
|
|
|
|
wget_xml_parse_buffer(sitemap, sitemap_get_url, &context, XML_HINT_REMOVE_EMPTY_CONTENT);
|
|
|
|
*urls = context.urls;
|
|
*sitemap_urls = context.sitemap_urls;
|
|
}
|
|
|
|
/**@}*/
|