2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-04-09 01:17:47 +02:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-04-09 01:17:47 +02:00
|
|
|
#include "ConfigPath.hxx"
|
2013-08-07 19:54:38 +02:00
|
|
|
#include "fs/Path.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigGlobal.hxx"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-12-29 17:42:54 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2008-12-29 17:42:54 +01:00
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
#include <pwd.h>
|
2013-09-12 10:30:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine a given user's home directory.
|
|
|
|
*/
|
|
|
|
static const char *
|
|
|
|
GetHome(const char *user, Error &error)
|
|
|
|
{
|
|
|
|
passwd *pw = getpwnam(user);
|
|
|
|
if (pw == nullptr) {
|
|
|
|
error.Format(path_domain,
|
|
|
|
"no such user: %s", user);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pw->pw_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine the current user's home directory.
|
|
|
|
*/
|
|
|
|
static const char *
|
|
|
|
GetHome(Error &error)
|
|
|
|
{
|
|
|
|
const char *home = g_get_home_dir();
|
|
|
|
if (home == nullptr)
|
|
|
|
error.Set(path_domain,
|
|
|
|
"problems getting home for current user");
|
|
|
|
|
|
|
|
return home;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine the configured user's home directory.
|
|
|
|
*/
|
|
|
|
static const char *
|
|
|
|
GetConfiguredHome(Error &error)
|
|
|
|
{
|
|
|
|
const char *user = config_get_string(CONF_USER, nullptr);
|
|
|
|
return user != nullptr
|
|
|
|
? GetHome(user, error)
|
|
|
|
: GetHome(error);
|
|
|
|
}
|
|
|
|
|
2008-12-29 17:42:54 +01:00
|
|
|
#endif
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
Path
|
2013-08-10 18:02:44 +02:00
|
|
|
ParsePath(const char *path, Error &error)
|
2007-06-13 17:27:09 +02:00
|
|
|
{
|
2013-04-09 01:17:47 +02:00
|
|
|
assert(path != nullptr);
|
2011-09-09 22:35:15 +02:00
|
|
|
|
2013-09-12 10:02:11 +02:00
|
|
|
Path path2 = Path::FromUTF8(path, error);
|
|
|
|
if (path2.IsNull())
|
2013-08-07 19:54:38 +02:00
|
|
|
return Path::Null();
|
|
|
|
|
2008-12-29 17:42:54 +01:00
|
|
|
#ifndef WIN32
|
2009-10-20 21:01:55 +02:00
|
|
|
if (!g_path_is_absolute(path) && path[0] != '~') {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(path_domain,
|
|
|
|
"not an absolute path: %s", path);
|
2013-08-07 19:54:38 +02:00
|
|
|
return Path::Null();
|
2007-06-13 17:27:09 +02:00
|
|
|
} else if (path[0] == '~') {
|
2008-12-29 17:42:46 +01:00
|
|
|
const char *home;
|
|
|
|
|
2007-06-13 17:27:09 +02:00
|
|
|
if (path[1] == '/' || path[1] == '\0') {
|
2013-09-12 10:30:00 +02:00
|
|
|
home = GetConfiguredHome(error);
|
2011-09-09 22:22:56 +02:00
|
|
|
|
|
|
|
++path;
|
2007-06-13 17:27:09 +02:00
|
|
|
} else {
|
2011-09-09 22:17:35 +02:00
|
|
|
++path;
|
2008-12-29 17:42:46 +01:00
|
|
|
|
2011-09-09 22:17:35 +02:00
|
|
|
const char *slash = strchr(path, '/');
|
2013-04-09 01:17:47 +02:00
|
|
|
char *user = slash != nullptr
|
2011-09-09 22:17:35 +02:00
|
|
|
? g_strndup(path, slash - path)
|
|
|
|
: g_strdup(path);
|
2007-06-13 17:27:09 +02:00
|
|
|
|
2013-09-12 10:30:00 +02:00
|
|
|
home = GetHome(user, error);
|
2011-09-09 22:17:35 +02:00
|
|
|
g_free(user);
|
2008-12-29 17:42:46 +01:00
|
|
|
|
2011-09-09 22:17:35 +02:00
|
|
|
path = slash;
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|
|
|
|
|
2013-09-12 10:30:00 +02:00
|
|
|
if (home == nullptr)
|
|
|
|
return Path::Null();
|
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
return Path::Build(home, path2);
|
2007-06-13 17:27:09 +02:00
|
|
|
} else {
|
2008-12-29 17:42:54 +01:00
|
|
|
#endif
|
2013-08-07 19:54:38 +02:00
|
|
|
return path2;
|
2008-12-29 17:42:54 +01:00
|
|
|
#ifndef WIN32
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|
2008-12-29 17:42:54 +01:00
|
|
|
#endif
|
2007-06-13 17:27:09 +02:00
|
|
|
}
|