6421fa4231c979f173716fdc4375a1263dc7cfdd
[time-slider.git] / usr / share / time-slider / lib / time_slider / linuxrbac.py
1 #!/usr/bin/python2
2 #
3 # CDDL HEADER START
4 #
5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
8 #
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
13 #
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 #
20 # CDDL HEADER END
21 #
22
23 import os
24 import pwd
25
26 import util
27
28 class RBACprofile:
29
30     def __init__(self, name = None):
31         # Filtering through the pwd module is beneficial because
32         # it will raise a KeyError exception for an invalid
33         # name argument 
34         if name == None:
35             euid = os.geteuid()
36             pwnam = pwd.getpwuid(euid)
37             self.uid = euid
38             self.name = pwnam[0]
39         else:
40             pwnam = pwd.getpwnam(name)
41             self.name = pwnam[0]
42             self.uid = pwnam[2]
43
44         self.profiles = []
45         self.auths = []
46
47     def has_profile(self, profile):
48         # root is all powerful
49         if self.uid == 0:
50             return True
51         else:
52             return False
53
54     def has_auth(self, auth):
55         # root is all powerful
56         if self.uid == 0:
57             return True
58         else:
59             return False
60
61 if __name__ == "__main__":
62   rbac = RBACprofile()
63   print rbac.name
64   print rbac.uid
65   print rbac.profiles
66   print rbac.auths
67