LocateUri.cxx 2.81 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 14 15 16 17 18 19 20 21 22 23 24 25
 * 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.
 *
 * 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.
 */

#include "config.h"
#include "LocateUri.hxx"
#include "client/Client.hxx"
#include "fs/AllocatedPath.hxx"
#include "ls.hxx"
#include "util/UriUtil.hxx"
26
#include "util/StringCompare.hxx"
27 28 29 30 31 32

#ifdef ENABLE_DATABASE
#include "storage/StorageInterface.hxx"
#endif

static LocatedUri
33
LocateFileUri(const char *uri, const Client *client
34
#ifdef ENABLE_DATABASE
35
	      , const Storage *storage
36
#endif
37
	      )
38
{
39
	auto path = AllocatedPath::FromUTF8Throw(uri);
40 41 42 43 44 45 46 47 48 49 50

#ifdef ENABLE_DATABASE
	if (storage != nullptr) {
		const char *suffix = storage->MapToRelativeUTF8(uri);
		if (suffix != nullptr)
			/* this path was relative to the music
			   directory */
			return LocatedUri(LocatedUri::Type::RELATIVE, suffix);
	}
#endif

51 52
	if (client != nullptr)
		client->AllowFile(path);
53 54 55 56 57

	return LocatedUri(LocatedUri::Type::PATH, uri, std::move(path));
}

static LocatedUri
58
LocateAbsoluteUri(const char *uri
59
#ifdef ENABLE_DATABASE
60
		  , const Storage *storage
61
#endif
62
		  )
63
{
64 65
	if (!uri_supported_scheme(uri))
		throw std::runtime_error("Unsupported URI scheme");
66 67 68 69 70 71 72 73 74 75 76 77 78

#ifdef ENABLE_DATABASE
	if (storage != nullptr) {
		const char *suffix = storage->MapToRelativeUTF8(uri);
		if (suffix != nullptr)
			return LocatedUri(LocatedUri::Type::RELATIVE, suffix);
	}
#endif

	return LocatedUri(LocatedUri::Type::ABSOLUTE, uri);
}

LocatedUri
79
LocateUri(const char *uri, const Client *client
80
#ifdef ENABLE_DATABASE
81
	  , const Storage *storage
82
#endif
83
	  )
84 85 86 87
{
	/* skip the obsolete "file://" prefix */
	const char *path_utf8 = StringAfterPrefix(uri, "file://");
	if (path_utf8 != nullptr) {
88 89
		if (!PathTraitsUTF8::IsAbsolute(path_utf8))
			throw std::runtime_error("Malformed file:// URI");
90

91
		return LocateFileUri(path_utf8, client
92
#ifdef ENABLE_DATABASE
93
				     , storage
94
#endif
95
				     );
96
	} else if (PathTraitsUTF8::IsAbsolute(uri))
97
		return LocateFileUri(uri, client
98
#ifdef ENABLE_DATABASE
99
				     , storage
100
#endif
101
				     );
102
	else if (uri_has_scheme(uri))
103
		return LocateAbsoluteUri(uri
104
#ifdef ENABLE_DATABASE
105
					 , storage
106
#endif
107
					 );
108 109 110
	else
		return LocatedUri(LocatedUri::Type::RELATIVE, uri);
}