Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
python
Commits
b8325cd7
Commit
b8325cd7
authored
7 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Add Entries class
parent
bdefddc3
Branches
local-rda
Branches containing commit
No related tags found
1 merge request
!11
Local rda
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/isg/dphysldap.py
+26
-40
26 additions, 40 deletions
lib/isg/dphysldap.py
with
26 additions
and
40 deletions
lib/isg/dphysldap.py
+
26
−
40
View file @
b8325cd7
...
...
@@ -143,9 +143,9 @@ class Ldap(object):
return
[
Group
(
e
)
for
e
in
entries
]
class
Group
s
(
list
):
class
Entrie
s
(
list
):
"""
Abstraction class for
Group
s imitating list
Abstraction class for
Entrie
s imitating list
"""
def
__init__
(
self
,
ldap
,
attrs
,
*
args
):
list
.
__init__
(
self
,
*
args
)
...
...
@@ -155,22 +155,14 @@ class Groups(list):
def
__str__
(
self
):
"""
Modifies the
"
informal
"
string value of str(x) or print(x)
to return
group
s in tabulated form
to return
entrie
s in tabulated form
"""
table
=
[[
g
[
h
]
for
h
in
self
.
attrs
]
for
g
in
self
]
table
=
[[
e
[
a
]
for
a
in
self
.
attrs
]
for
e
in
self
]
return
tabulate
.
tabulate
(
table
,
tablefmt
=
FMT
,
headers
=
self
.
attrs
)
#def sort(self, attr):
# self = sorted(self, key=lambda k: k[attr].__str__())
def
search
(
self
,
cn
):
"""
Search example: `cn`, `cn*`, `*cn*`, `cn1;cn2`
"""
query
=
'
cn: {0}
'
.
format
(
cn
)
self
.
clear
()
self
.
extend
(
self
.
_ldap
.
get_groups
(
query
=
query
,
attributes
=
self
.
attrs
))
def
remove_attr
(
self
,
attr
):
if
attr
in
self
.
attrs
:
self
.
attrs
.
remove
(
attr
)
...
...
@@ -182,6 +174,27 @@ class Groups(list):
else
:
self
.
remove_attr
(
attrs
)
def
search
(
self
,
query
):
"""
Query syntax: `<attributeName>: <attributeValue(s)>`
AttributeValue: `a`, `a*`, `*a*`, `a;b`
"""
self
.
clear
()
self
.
extend
(
self
.
_ldap
.
get_entries
(
query
=
query
,
attributes
=
self
.
attrs
))
class
Groups
(
Entries
):
"""
Abstraction class for Groups imitating list
"""
def
search
(
self
,
cn
):
"""
Search example: `cn`, `cn*`, `*cn*`, `cn1;cn2`
"""
query
=
'
cn: {0}
'
.
format
(
cn
)
self
.
clear
()
self
.
extend
(
self
.
_ldap
.
get_groups
(
query
=
query
,
attributes
=
self
.
attrs
))
def
members
(
self
,
index
=
None
):
"""
Returns list of members
...
...
@@ -195,26 +208,10 @@ class Groups(list):
return
self
[
index
][
'
memberUid
'
]
class
Users
(
list
):
class
Users
(
Entries
):
"""
Abstraction class for Users imitating list
"""
def
__init__
(
self
,
ldap
,
attrs
,
*
args
):
list
.
__init__
(
self
,
*
args
)
self
.
_ldap
=
ldap
self
.
attrs
=
attrs
def
__str__
(
self
):
"""
Modifies the
"
informal
"
string value of str(x) or print(x)
to return users in tabulated form
"""
table
=
[[
u
[
h
]
for
h
in
self
.
attrs
]
for
u
in
self
]
return
tabulate
.
tabulate
(
table
,
tablefmt
=
FMT
,
headers
=
self
.
attrs
)
#def sort(self, attr):
# self = sorted(self, key=lambda d: d[attr].__str__())
def
search
(
self
,
uid
):
"""
Search example: `uid`, `uid*`, `*uid*`, `uid1;uid2`
...
...
@@ -222,14 +219,3 @@ class Users(list):
query
=
'
uid: {0}
'
.
format
(
uid
)
self
.
clear
()
self
.
extend
(
self
.
_ldap
.
get_users
(
query
=
query
,
attributes
=
self
.
attrs
))
def
remove_attr
(
self
,
attr
):
if
attr
in
self
.
attrs
:
self
.
attrs
.
remove
(
attr
)
def
remove_attrs
(
self
,
attrs
):
if
isinstance
(
attrs
,
list
):
for
attr
in
attrs
:
self
.
remove_attr
(
attr
)
else
:
self
.
remove_attr
(
attrs
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment