Refactor helper script

refactor
blallo 2020-08-31 11:02:03 +02:00
parent 67c83975d1
commit b7316ff513
Signed by: blallo
GPG Key ID: 0CBE577C9B72DC3F
1 changed files with 39 additions and 13 deletions

View File

@ -1,35 +1,61 @@
# coding: utf-8
import asyncio
from pprint import pprint as pp
from phi.ldap.async_model import (
Hackers,
from phi.async_ldap.model import (
# Hackers,
# User,
Robots,
Congregations,
User,
Service,
Congregations,
Group,
build_heritage,
iter_children,
)
from phi.ldap.async_client import AsyncClient
from phi.async_ldap.new_model import Hackers, User
from phi.async_ldap.client import AsyncClient
async def dlv(h):
return [el async for el in build_heritage(h, User)]
async def dlv(h, cls):
return [el async for el in build_heritage(h, cls)]
cl = AsyncClient(
"ldap://localhost",
port=389,
encryption=True,
validate=True,
ca_cert="openldap/cert.pem",
# validate=True,
ca_cert="/home/leo/Documents/coding/phi/openldap/cert.pem",
username="root",
password="root",
base_dn="dc=unit,dc=macaomilano,dc=org",
attribute_id="cn",
)
h = Hackers(cl)
r = Robots(cl)
g = Congregations(cl)
# asyncio.run(dlv(h))
async def get_all_children():
h = Hackers(cl)
r = Robots(cl)
g = Congregations(cl)
hackers = await dlv(h, User)
robots = await dlv(r, Service)
groups = await dlv(g, Group)
return (hackers, robots, groups)
async def print_async(awaitable):
result = await awaitable
pp(result)
async def describe(obj):
results = await obj.describe()
return results
asyncio.run(print_async(describe(Hackers(cl))))
asyncio.run(print_async(describe(User(cl, "conte_mascetti"))))