Don't nuke git/svn information during build.
[hcoop/zz_old/debian/suphp.git] / src / UserInfo.cpp
1 /*
2 suPHP - (c)2002-2008 Sebastian Marsching <sebastian@marsching.com>
3
4 This file is part of suPHP.
5
6 suPHP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 suPHP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with suPHP; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <string>
22
23 #include <unistd.h>
24 #include <sys/types.h>
25 #include <pwd.h>
26 #include <grp.h>
27
28 #include "API.hpp"
29 #include "API_Helper.hpp"
30
31 #include "UserInfo.hpp"
32
33 using namespace suPHP;
34
35
36 suPHP::UserInfo::UserInfo() {
37 this->uid = -1;
38 }
39
40
41 suPHP::UserInfo::UserInfo(int uid) {
42 this->uid = uid;
43 }
44
45 std::string suPHP::UserInfo::getUsername() const
46 throw (LookupException) {
47 API& api = API_Helper::getSystemAPI();
48 return api.UserInfo_getUsername(*this);
49 }
50
51 int suPHP::UserInfo::getUid() const {
52 return this->uid;
53 }
54
55 GroupInfo suPHP::UserInfo::getGroupInfo() const
56 throw (LookupException) {
57 API& api = API_Helper::getSystemAPI();
58 return api.UserInfo_getGroupInfo(*this);
59 }
60
61 std::string suPHP::UserInfo::getHomeDirectory() const
62 throw (LookupException) {
63 API& api = API_Helper::getSystemAPI();
64 return api.UserInfo_getHomeDirectory(*this);
65 }
66
67 bool suPHP::UserInfo::isSuperUser() {
68 return API_Helper::getSystemAPI().UserInfo_isSuperUser(*this);
69 }
70
71 bool suPHP::UserInfo::operator==(const UserInfo& uinfo) const {
72 if (this->getUid() == uinfo.getUid())
73 return true;
74 else
75 return false;
76 }
77
78 bool suPHP::UserInfo::operator!=(const UserInfo& uinfo) const {
79 return !this->operator==(uinfo);
80 }