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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-08 19:18:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2004-11-07 13:22:51 +00:00
|
|
|
#include "support/userinfo.h"
|
|
|
|
#include "support/filetools.h"
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2003-09-09 17:25:35 +00:00
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
2003-02-25 12:33:33 +00:00
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
namespace lyx {
|
2003-06-30 23:56:22 +00:00
|
|
|
namespace support {
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
string const user_name()
|
|
|
|
{
|
|
|
|
struct passwd * pw(getpwuid(geteuid()));
|
2003-09-09 17:25:35 +00:00
|
|
|
BOOST_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;
|
|
|
|
}
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
} // namespace support
|
2003-02-08 19:18:01 +00:00
|
|
|
} // namespace lyx
|