2003-02-08 19:18:01 +00:00
|
|
|
/**
|
|
|
|
* \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 "userinfo.h"
|
|
|
|
#include "LAssert.h"
|
|
|
|
#include "filetools.h"
|
|
|
|
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
2003-02-25 12:33:33 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
string const user_name()
|
|
|
|
{
|
|
|
|
struct passwd * pw(getpwuid(geteuid()));
|
|
|
|
lyx::Assert(pw);
|
2003-02-25 12:33:33 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
string name = pw->pw_gecos;
|
|
|
|
if (name.empty())
|
|
|
|
name = pw->pw_name;
|
|
|
|
return name;
|
|
|
|
}
|
2003-02-25 12:33:33 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
string const user_email()
|
|
|
|
{
|
|
|
|
string email = GetEnv("EMAIL_ADDRESS");
|
|
|
|
if (email.empty())
|
|
|
|
email = GetEnv("EMAIL");
|
|
|
|
return email;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|