mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
cfb1d179e6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14962 a592a061-630c-0410-9148-cb99ea01b6c8
68 lines
1.1 KiB
C
68 lines
1.1 KiB
C
/**
|
|
* \file userinfo.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "support/userinfo.h"
|
|
#include "support/environment.h"
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
#if defined (_WIN32)
|
|
# include "gettext.h"
|
|
# include <windows.h>
|
|
# include <lmcons.h>
|
|
#else
|
|
# include <pwd.h>
|
|
# ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
# endif
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
# include <sys/types.h>
|
|
#endif
|
|
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace support {
|
|
|
|
string const user_name()
|
|
{
|
|
#if defined (_WIN32)
|
|
|
|
char name[UNLEN + 1];
|
|
DWORD size = UNLEN + 1;
|
|
if (!GetUserName(name, &size))
|
|
return lyx::to_utf8(_("Unknown user"));
|
|
return name;
|
|
#else
|
|
struct passwd * pw(getpwuid(geteuid()));
|
|
BOOST_ASSERT(pw);
|
|
|
|
string name = pw->pw_gecos;
|
|
if (name.empty())
|
|
name = pw->pw_name;
|
|
return name;
|
|
#endif
|
|
}
|
|
|
|
|
|
string const user_email()
|
|
{
|
|
string email = getEnv("EMAIL_ADDRESS");
|
|
if (email.empty())
|
|
email = getEnv("EMAIL");
|
|
return email;
|
|
}
|
|
|
|
} // namespace support
|
|
} // namespace lyx
|