mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
d5567ac36f
This was probably overlooked at [7bb08f10/lyxgit].
77 lines
1.5 KiB
C++
77 lines
1.5 KiB
C++
/**
|
|
* \file userinfo.cpp
|
|
* 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 "support/docstring.h"
|
|
|
|
#include "support/lassert.h"
|
|
|
|
#if defined (_WIN32)
|
|
# include "support/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 namespace std;
|
|
|
|
namespace lyx {
|
|
namespace support {
|
|
|
|
string const user_name()
|
|
{
|
|
#if defined (_WIN32)
|
|
|
|
char name[UNLEN + 1];
|
|
DWORD size = UNLEN + 1;
|
|
if (!GetUserName(name, &size))
|
|
return to_utf8(_("Unknown user"));
|
|
return to_utf8(from_local8bit(name));
|
|
#else
|
|
struct passwd * pw = getpwuid(geteuid());
|
|
LASSERT(pw, return string());
|
|
|
|
const string gecos = pw->pw_gecos;
|
|
const size_t pos = gecos.find(",");
|
|
string name = gecos.substr(0, pos);
|
|
if (name.empty())
|
|
name = pw->pw_name;
|
|
return to_utf8(from_local8bit(name));
|
|
#endif
|
|
}
|
|
|
|
|
|
string const user_email()
|
|
{
|
|
//FIXME: quick fix wrt bug #3764; only Anonymous is detected now.
|
|
//The code after should be used only after user approval.
|
|
return string();
|
|
|
|
#if 0
|
|
string email = getEnv("EMAIL_ADDRESS");
|
|
if (email.empty())
|
|
email = getEnv("EMAIL");
|
|
return to_utf8(from_local8bit(email));
|
|
#endif
|
|
}
|
|
|
|
} // namespace support
|
|
} // namespace lyx
|