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 105 106 107 108 109 110 111 112 113 114
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2016-2024 Matthias Klumpp <matthias@tenstral.net>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This library 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 2.1 of the license, or
* (at your option) any later version.
*
* This library 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 this library. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* SECTION:asc-utils
* @short_description: Common utility functions for AppStream-Compose.
* @include: appstream-compose.h
*/
#include "config.h"
#include "asc-utils.h"
#include "as-utils-private.h"
/**
* asc_build_component_global_id:
* @component_id: an AppStream component ID.
* @checksum: a MD5 hashsum as string generated from the component's combined metadata.
*
* Builds a global component ID from a component-id
* and a (usually MD5) checksum generated from the component data.
*
* The global-id is used as a global, unique identifier for a component.
* (while the component-ID is local, e.g. for one source).
* Its primary usecase is to identify a media directory on the filesystem which is
* associated with this component.
**/
gchar *
asc_build_component_global_id (const gchar *component_id, const gchar *checksum)
{
gboolean rdns_split;
g_auto(GStrv) parts = NULL;
if (as_is_empty (component_id))
return NULL;
if (as_is_empty (checksum))
checksum = "last";
g_return_val_if_fail (strlen (component_id) > 2, NULL);
/* check whether we can build the gcid by using the reverse domain name,
* or whether we should use the simple standard splitter. */
rdns_split = FALSE;
parts = g_strsplit (component_id, ".", 3);
if (g_strv_length (parts) == 3) {
/* check if we have a valid TLD. If so, use the reverse-domain-name splitting. */
if (as_utils_is_tld (parts[0]))
rdns_split = TRUE;
}
if (rdns_split) {
g_autofree gchar *tld_part = NULL;
g_autofree gchar *domain_part = NULL;
tld_part = g_utf8_strdown (parts[0], -1);
domain_part = g_utf8_strdown (parts[1], -1);
return g_strdup_printf ("%s/%s/%s/%s", tld_part, domain_part, parts[2], checksum);
} else {
g_autofree gchar *cid_low = NULL;
g_autofree gchar *pdiv_part = NULL;
g_autofree gchar *sdiv_part = NULL;
cid_low = g_utf8_strdown (component_id, -1);
pdiv_part = g_utf8_substring (cid_low, 0, 1);
sdiv_part = g_utf8_substring (cid_low, 0, 2);
return g_strdup_printf ("%s/%s/%s/%s", pdiv_part, sdiv_part, cid_low, checksum);
}
}
/**
* asc_filename_from_url:
* @url: The URL to extract a filename from.
*
* Generate a filename from a web-URL that can be used to store the
* file on disk after download.
*/
gchar *
asc_filename_from_url (const gchar *url)
{
gchar *tmp;
g_autofree gchar *unescaped = NULL;
if (url == NULL)
return NULL;
unescaped = g_uri_unescape_string (url, NULL);
tmp = g_strstr_len (unescaped, -1, "?");
if (tmp != NULL)
tmp[0] = '\0';
tmp = g_strstr_len (unescaped, -1, "#");
if (tmp != NULL)
tmp[0] = '\0';
/* we couldn't extract a suitable name, so just give it a random string as result */
if (unescaped[0] == '\0')
return as_random_alnum_string (4);
return g_path_get_basename (unescaped);
}
|