UriUtil.hxx 2.69 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * http://www.musicpd.org
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19
 */

Max Kellermann's avatar
Max Kellermann committed
20 21
#ifndef MPD_URI_UTIL_HXX
#define MPD_URI_UTIL_HXX
22

23
#include "Compiler.h"
24

25 26
#include <string>

27
/**
28
 * Checks whether the specified URI has a scheme in the form
29 30
 * "scheme://".
 */
31
gcc_pure
32 33
bool
uri_has_scheme(const char *uri) noexcept;
34

35 36 37 38 39
/**
 * Returns the scheme name of the specified URI, or an empty string.
 */
gcc_pure
std::string
40
uri_get_scheme(const char *uri) noexcept;
41

42 43 44 45 46 47
/**
 * Returns the URI path (including the query string) or nullptr if the
 * given URI has no path.
 */
gcc_pure gcc_nonnull_all
const char *
48
uri_get_path(const char *uri) noexcept;
49

50
gcc_pure
51
const char *
52
uri_get_suffix(const char *uri) noexcept;
53

54 55 56 57 58 59 60 61 62
struct UriSuffixBuffer {
	char data[8];
};

/**
 * Returns the file name suffix, ignoring the query string.
 */
gcc_pure
const char *
63
uri_get_suffix(const char *uri, UriSuffixBuffer &buffer) noexcept;
64

65 66 67 68 69 70 71 72
/**
 * Returns true if this is a safe "local" URI:
 *
 * - non-empty
 * - does not begin or end with a slash
 * - no double slashes
 * - no path component begins with a dot
 */
73
gcc_pure
74
bool
75
uri_safe_local(const char *uri) noexcept;
76

77 78 79
/**
 * Removes HTTP username and password from the URI.  This may be
 * useful for displaying an URI without disclosing secrets.  Returns
80 81
 * an empty string if nothing needs to be removed, or if the URI is
 * not recognized.
82
 */
83 84
gcc_pure
std::string
85
uri_remove_auth(const char *uri) noexcept;
86

87 88 89 90 91 92 93
/**
 * Check whether #child specifies a resource "inside" the directory
 * specified by #parent.  If the strings are equal, the function
 * returns false.
 */
gcc_pure gcc_nonnull_all
bool
94
uri_is_child(const char *parent, const char *child) noexcept;
95 96 97

gcc_pure gcc_nonnull_all
bool
98
uri_is_child_or_same(const char *parent, const char *child) noexcept;
99

100 101 102 103 104 105
/**
 * Translate the given URI in the context of #base.  For example,
 * uri_apply_base("foo", "http://bar/a/")=="http://bar/a/foo".
 */
gcc_pure
std::string
106
uri_apply_base(const std::string &uri, const std::string &base) noexcept;
107

108
#endif