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
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright © 2013 Bastien Nocera <hadess@hadess.net>
* Copyright © 2016 Igalia S.L.
*
* This file is part of Epiphany.
*
* Epiphany 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 Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Epiphany 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 Epiphany. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "ephy-uri-helpers.h"
#include <glib.h>
#include <string.h>
#include <webkit/webkit.h>
/* Use this function to format a URI for display. The URIs used
* internally by WebKit may contain percent-encoded characters or
* punycode, which we do not want the user to see.
*/
char *
ephy_uri_decode (const char *uri_string)
{
char *decoded_uri;
/* This function is not null-safe since it is mostly used in scenarios where
* passing or returning null would typically lead to a security issue. */
g_assert (uri_string);
decoded_uri = webkit_uri_for_display (uri_string);
return decoded_uri ? decoded_uri : g_strdup (uri_string);
}
char *
ephy_uri_normalize (const char *uri_string)
{
g_autoptr (GUri) uri = NULL;
if (!uri_string || !*uri_string)
return NULL;
uri = g_uri_parse (uri_string, G_URI_FLAGS_PARSE_RELAXED | G_URI_FLAGS_ENCODED, NULL);
if (!uri)
return g_strdup (uri_string);
return g_uri_to_string (uri);
}
char *
ephy_uri_to_security_origin (const char *uri_string)
{
WebKitSecurityOrigin *origin;
char *result;
/* Convert to URI containing only protocol, host, and port. */
origin = webkit_security_origin_new_for_uri (uri_string);
result = webkit_security_origin_to_string (origin);
webkit_security_origin_unref (origin);
/* May be NULL. */
return result;
}
#define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10)
#define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))
char *
ephy_uri_unescape (const char *uri_string)
{
unsigned char *s, *d;
char *decoded;
g_assert (uri_string);
decoded = g_strdup (uri_string);
s = d = (unsigned char *)decoded;
do {
if (*s == '%') {
if (s[1] == '\0' ||
s[2] == '\0' ||
!g_ascii_isxdigit (s[1]) ||
!g_ascii_isxdigit (s[2])) {
*d++ = *s;
continue;
}
*d++ = HEXCHAR (s);
s += 2;
} else
*d++ = *s;
} while (*s++);
return decoded;
}
|