2012-09-29 13:38:19 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-12 13:54:40 +00:00
|
|
|
from __future__ import absolute_import
|
2012-09-29 13:38:19 +00:00
|
|
|
from brie.config import ldap_config
|
2013-08-12 13:54:40 +00:00
|
|
|
import ldap
|
2013-09-10 22:28:40 +00:00
|
|
|
import datetime
|
2012-09-29 13:38:19 +00:00
|
|
|
|
|
|
|
class Member(object):
|
2012-10-12 02:03:12 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def entry_attr(uid, prenom, nom, mail, uid_number):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "person", "organizationalPerson", "inetOrgPerson", "pacatnetMember", "pykotaAccount", "posixAccount"],
|
|
|
|
"uid" :uid.encode("utf-8"),
|
|
|
|
"cn" : (prenom + " " + nom.upper()).encode("utf-8"),
|
|
|
|
"sn" : (nom.upper()).encode("utf-8"),
|
|
|
|
"givenName" : (prenom).encode("utf-8"),
|
2013-08-12 16:44:05 +00:00
|
|
|
"uidNumber" : str(uid_number),
|
2012-10-12 02:03:12 +00:00
|
|
|
"gidNumber" : "10000",
|
|
|
|
"homeDirectory" : ("/net/home/" + uid).encode("utf-8"),
|
|
|
|
"mail" : mail.encode("utf-8"),
|
|
|
|
"loginShell" : "/usr/bin/zsh".encode("utf-8")
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
|
2012-09-29 13:38:19 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_by_dn(user_session, dn):
|
|
|
|
return user_session.ldap_bind.search_dn(dn)
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-09-11 20:24:55 +00:00
|
|
|
def get_by_uid(user_session, residence_dn, uid):
|
|
|
|
return user_session.ldap_bind.search_first(ldap_config.username_base_dn + residence_dn, "(uid=" + uid + ")")
|
2012-09-29 13:38:19 +00:00
|
|
|
#end def
|
|
|
|
|
2013-01-14 22:22:41 +00:00
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_all(user_session, residence_dn):
|
|
|
|
return user_session.ldap_bind.search(ldap_config.username_base_dn + residence_dn, "(objectClass=pacatnetMember)")
|
2013-06-25 14:17:05 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_by_name(user_session, residence_dn, name):
|
|
|
|
return user_session.ldap_bind.search(ldap_config.username_base_dn + residence_dn, "(&(objectClass=pacatnetMember)(cn~=" + name + "))")
|
2013-01-14 22:22:41 +00:00
|
|
|
#end def
|
|
|
|
|
2012-09-29 13:38:19 +00:00
|
|
|
#end class
|
|
|
|
|
|
|
|
class Room(object):
|
|
|
|
|
2013-03-31 01:25:04 +00:00
|
|
|
@staticmethod
|
|
|
|
def memberIn_attr(member_dn):
|
|
|
|
return {
|
|
|
|
"x-memberIn" : str(member_dn)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
|
2012-09-29 13:38:19 +00:00
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_by_name(user_session, residence_dn, name):
|
|
|
|
return user_session.ldap_bind.search_first(ldap_config.room_base_dn + residence_dn, "(&(objectClass=pacaterieRoom)(cn=" + name + "))")
|
2012-09-29 13:38:19 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_by_uid(user_session, residence_dn, uid):
|
|
|
|
return user_session.ldap_bind.search_first(ldap_config.room_base_dn + residence_dn, "(&(objectClass=pacaterieRoom)(uid=" + uid + "))")
|
2012-09-29 13:38:19 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_by_member_dn(user_session, residence_dn, dn):
|
|
|
|
return user_session.ldap_bind.search_first(ldap_config.room_base_dn + residence_dn, "(&(objectClass=pacaterieRoom)(x-memberIn=" + dn + "))")
|
2012-09-29 13:38:19 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_areas(user_session, residence_dn):
|
|
|
|
return user_session.ldap_bind.search(ldap_config.room_base_dn + residence_dn, "(objectClass=pacaterieArea)")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_floors(user_session, area_dn):
|
|
|
|
return user_session.ldap_bind.search(area_dn, "(objectClass=pacaterieFloor)")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_rooms_of_floor(user_session, floor_dn):
|
|
|
|
return user_session.ldap_bind.search(floor_dn, "(objectClass=pacaterieRoom)")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_rooms(user_session, residence_dn):
|
|
|
|
return user_session.ldap_bind.search(ldap_config.room_base_dn + residence_dn, "(objectClass=pacaterieRoom)")
|
|
|
|
#end def
|
2012-09-29 13:38:19 +00:00
|
|
|
|
|
|
|
#end class
|
|
|
|
|
|
|
|
|
|
|
|
class Wifi(object):
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def entry_attr(password):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "organizationalRole", "simpleSecurityObject"],
|
|
|
|
"cn" : "wifi",
|
2012-10-15 15:57:07 +00:00
|
|
|
"userPassword" : str(password)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def password_attr(password):
|
|
|
|
return {
|
|
|
|
"userPassword" : str(password)
|
2012-09-29 13:38:19 +00:00
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-09-13 23:16:43 +00:00
|
|
|
def get_by_member_dn(user_session, dn):
|
2012-10-15 15:57:07 +00:00
|
|
|
return user_session.ldap_bind.search_dn("cn=wifi," + dn)
|
2012-09-29 13:38:19 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
#end class
|
2012-10-12 02:03:12 +00:00
|
|
|
|
|
|
|
class Machine(object):
|
|
|
|
|
|
|
|
@staticmethod
|
2013-08-12 16:44:05 +00:00
|
|
|
def folder_attr():
|
|
|
|
return {
|
|
|
|
"objectClass" : ["organizationalRole", "top"],
|
|
|
|
"cn" : "machines"
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2012-10-12 02:03:12 +00:00
|
|
|
def entry_attr(machine_id):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "organizationalRole"],
|
|
|
|
"cn" : str(machine_id)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def dhcp_attr(name, mac):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "uidObject", "dhcpHost"],
|
2013-06-22 22:28:27 +00:00
|
|
|
"cn" : "dhcp",
|
2012-10-12 02:03:12 +00:00
|
|
|
"uid" : "machine_membre",
|
|
|
|
"dhcpHWAddress" : str("ethernet " + mac),
|
|
|
|
"dhcpStatements" : str("fixed-address " + name)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def dns_attr(name, ip):
|
|
|
|
return {
|
2013-06-22 22:28:27 +00:00
|
|
|
"objectClass" : ["top", "organizationalRole", "dlzAbstractRecord", "dlzGenericRecord"],
|
|
|
|
"cn" : "dns",
|
2012-10-12 02:03:12 +00:00
|
|
|
"dlzData" : str(ip),
|
|
|
|
"dlzHostName" : str(name),
|
|
|
|
"dlzRecordId" : "1",
|
|
|
|
"dlzTTL" : "3600",
|
|
|
|
"dlzType" : "A"
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def auth_attr(flat_mac):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "organizationalRole", "simpleSecurityObject", "uidObject"],
|
2013-06-22 22:28:27 +00:00
|
|
|
"cn" : "mac_auth",
|
2012-10-12 02:03:12 +00:00
|
|
|
"uid" : flat_mac,
|
|
|
|
"userPassword" : flat_mac
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-21 22:43:33 +00:00
|
|
|
def get_machine_tuples_of_member(user_session, member_dn):
|
2013-08-12 13:54:40 +00:00
|
|
|
machine_dn = ldap_config.machine_base_dn + member_dn
|
|
|
|
results = user_session.ldap_bind.search(machine_dn, "(objectClass=organizationalRole)", scope = ldap.SCOPE_ONELEVEL)
|
2012-10-12 02:03:12 +00:00
|
|
|
machines = list()
|
|
|
|
for result in results:
|
|
|
|
dhcp = user_session.ldap_bind.search_first(result.dn, "(objectClass=dhcpHost)")
|
|
|
|
dns = user_session.ldap_bind.search_first(result.dn, "(objectClass=dlzGenericRecord)")
|
|
|
|
if dhcp is not None and dns is not None:
|
|
|
|
mac = dhcp.dhcpHWAddress.first().replace("ethernet ", "")
|
2013-02-21 22:43:33 +00:00
|
|
|
machines.append(
|
|
|
|
(
|
2013-08-12 13:54:40 +00:00
|
|
|
result.cn.first(),
|
2013-02-21 22:43:33 +00:00
|
|
|
mac,
|
2013-08-12 13:54:40 +00:00
|
|
|
dns.dlzData.first()
|
2013-02-21 22:43:33 +00:00
|
|
|
) #tuple
|
|
|
|
)
|
2012-10-12 02:03:12 +00:00
|
|
|
#end if
|
|
|
|
#end for
|
|
|
|
|
|
|
|
return machines
|
|
|
|
#end def
|
|
|
|
|
2013-02-21 22:43:33 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_machine_by_id(user_session, member_dn, machine_id):
|
2013-08-12 13:54:40 +00:00
|
|
|
machines_dn = ldap_config.machine_base_dn + member_dn
|
|
|
|
return user_session.ldap_bind.search_first(machines_dn, "(cn=" + machine_id + ")")
|
2013-02-21 22:43:33 +00:00
|
|
|
#end def
|
|
|
|
|
2013-03-23 21:20:21 +00:00
|
|
|
@staticmethod
|
2013-08-12 13:54:40 +00:00
|
|
|
def get_dns_by_id(user_session, machine_dn):
|
2013-03-23 21:20:21 +00:00
|
|
|
return user_session.ldap_bind.search_first(machine_dn, "(objectClass=dlzAbstractRecord)")
|
|
|
|
#end def
|
|
|
|
|
2013-09-29 17:51:10 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_dhcps(user_session, machine_dn):
|
|
|
|
return user_session.ldap_bind.search(machine_dn, "(objectClass=dhcpHost)")
|
|
|
|
#end def
|
|
|
|
|
2013-03-30 19:55:55 +00:00
|
|
|
@staticmethod
|
2013-09-11 20:18:43 +00:00
|
|
|
def get_dhcp_by_mac(user_session, member_dn, mac):
|
|
|
|
return user_session.ldap_bind.search_first(member_dn, "(dhcpHWAddress=ethernet "+mac+")")
|
2013-03-30 19:55:55 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-09-11 20:18:43 +00:00
|
|
|
def get_dns_by_name(user_session, member_dn, name):
|
|
|
|
return user_session.ldap_bind.search_first(member_dn, "(dlzHostName="+name+")")
|
2013-03-30 19:55:55 +00:00
|
|
|
#end def
|
2012-10-12 02:03:12 +00:00
|
|
|
#end class
|
|
|
|
|
2012-10-28 13:06:01 +00:00
|
|
|
class Groupes(object):
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_by_user_dn(user_session, residence_dn, user_dn):
|
|
|
|
results = user_session.ldap_bind.search(ldap_config.group_base_dn + residence_dn, "(&(objectClass=groupOfUniqueNames)(uniqueMember=" + user_dn + "))")
|
2012-10-28 13:06:01 +00:00
|
|
|
|
|
|
|
groups = list()
|
|
|
|
|
|
|
|
|
|
|
|
for item in results:
|
|
|
|
groups.append(item.cn.first())
|
|
|
|
#end for
|
|
|
|
|
|
|
|
return groups
|
2013-01-14 22:22:41 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_by_cn(user_session, residence_dn, cn):
|
|
|
|
results = user_session.ldap_bind.search_first(ldap_config.group_base_dn + residence_dn, "(&(objectClass=groupOfUniqueNames)(cn=" + cn + "))")
|
2013-01-14 22:22:41 +00:00
|
|
|
|
|
|
|
return results
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-02-16 08:32:02 +00:00
|
|
|
def get_all(user_session, residence_dn):
|
|
|
|
results = user_session.ldap_bind.search(ldap_config.group_base_dn + residence_dn, "(objectClass=groupOfUniqueNames)")
|
2013-01-14 22:22:41 +00:00
|
|
|
|
|
|
|
return results
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def unique_member_attr(member_dn):
|
|
|
|
return {
|
|
|
|
"uniqueMember" : str(member_dn)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
2012-10-28 13:06:01 +00:00
|
|
|
#end class
|
2013-03-23 14:37:34 +00:00
|
|
|
|
|
|
|
class IpReservation:
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def entry_attr(ip):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "auroreIpReservation"],
|
|
|
|
"cn" : str(ip)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
2013-03-23 21:20:21 +00:00
|
|
|
def taken_attr(description):
|
2013-03-23 14:37:34 +00:00
|
|
|
return {
|
2013-03-23 22:40:44 +00:00
|
|
|
"x-taken" : str(description)
|
2013-03-23 14:37:34 +00:00
|
|
|
}
|
|
|
|
#end def
|
2013-03-23 19:05:38 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_first_free(user_session, residence_dn):
|
|
|
|
results = user_session.ldap_bind.search_first(ldap_config.ip_reservation_base_dn + residence_dn, "(&(objectClass=auroreIpReservation)(!(x-taken=*)))")
|
|
|
|
|
|
|
|
return results
|
|
|
|
#end def
|
2013-03-23 21:20:21 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_ip(user_session, residence_dn, ip):
|
|
|
|
results = user_session.ldap_bind.search_first(ldap_config.ip_reservation_base_dn + residence_dn, "(&(objectClass=auroreIpReservation)(cn=" + ip + "))")
|
2013-03-23 19:05:38 +00:00
|
|
|
|
2013-03-23 21:20:21 +00:00
|
|
|
return results
|
|
|
|
#end def
|
2013-03-23 14:37:34 +00:00
|
|
|
|
|
|
|
#end class
|
2013-03-30 21:38:41 +00:00
|
|
|
|
|
|
|
class Plugins:
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_by_name(user_session, residence_dn, plugin_name):
|
|
|
|
return user_session.ldap_bind.search_first(ldap_config.plugins_base_dn + residence_dn, "(cn=" + plugin_name + ")")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
#end class
|
2013-09-10 22:28:40 +00:00
|
|
|
|
|
|
|
class Cotisation:
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def entry_attr(time, residence, year, user_dn, user_info, amount_paid, valid_months):
|
|
|
|
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "auroreCotisation", "aurorePayment"],
|
|
|
|
"cn" : "cotisation-" + time,
|
|
|
|
"x-time" : time,
|
|
|
|
"description" : "cotisation",
|
|
|
|
"x-year" : str(year),
|
|
|
|
"x-residence" : residence,
|
|
|
|
"x-action-user" : user_dn,
|
|
|
|
"x-action-user-info" : user_info,
|
|
|
|
"x-amountPaid" : amount_paid,
|
|
|
|
"x-validMonth" : valid_months
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def extra_attr(time, residence, year, user_dn, user_info, description, amount_paid):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["top", "aurorePayment"],
|
|
|
|
"cn" : "extra-" + time,
|
|
|
|
"x-time" : time,
|
|
|
|
"description" : description,
|
|
|
|
"x-year" : str(year),
|
|
|
|
"x-residence" : residence,
|
|
|
|
"x-action-user" : user_dn,
|
|
|
|
"x-action-user-info" : user_info,
|
|
|
|
"x-amountPaid" : amount_paid
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def folder_attr():
|
|
|
|
return {
|
|
|
|
"objectClass" : ["organizationalRole", "top"],
|
|
|
|
"cn" : "cotisations"
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def year_attr(year):
|
|
|
|
return {
|
|
|
|
"objectClass" : ["organizationalRole", "top"],
|
|
|
|
"cn" : str(year)
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
2013-09-11 17:17:19 +00:00
|
|
|
@staticmethod
|
|
|
|
def cashed_payment_attr():
|
|
|
|
return {
|
|
|
|
"x-paymentCashed" : "TRUE"
|
|
|
|
}
|
|
|
|
#end def
|
|
|
|
|
2013-09-10 22:28:40 +00:00
|
|
|
@staticmethod
|
|
|
|
def prix_annee(user_session, residence_dn):
|
|
|
|
dn = ldap_config.cotisation_annee_base_dn + residence_dn
|
|
|
|
return user_session.ldap_bind.search_dn(dn)
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def prix_mois(user_session, residence_dn):
|
|
|
|
dn = ldap_config.cotisation_mois_base_dn + residence_dn
|
|
|
|
return user_session.ldap_bind.search_dn(dn)
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def cotisations_of_member(user_session, member_dn, year):
|
|
|
|
return user_session.ldap_bind.search("cn=" + str(year) + "," + ldap_config.cotisation_member_base_dn + member_dn, "(objectClass=auroreCotisation)")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def extras_of_member(user_session, member_dn, year):
|
|
|
|
return user_session.ldap_bind.search("cn=" + str(year) + "," + ldap_config.cotisation_member_base_dn + member_dn, "(&(objectClass=aurorePayment)(!(objectClass=auroreCotisation)))")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_all_extras(user_session, residence_dn):
|
|
|
|
dn = ldap_config.extra_base_dn + residence_dn
|
|
|
|
return user_session.ldap_bind.search(dn, "(objectClass=organizationalRole)", scope = ldap.SCOPE_ONELEVEL)
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_extra_by_name(user_session, residence_dn, name):
|
|
|
|
dn = ldap_config.extra_base_dn + residence_dn
|
|
|
|
return user_session.ldap_bind.search_first(dn, "(uid=" + name + ")")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_all_payment_by_year(user_session, residence_dn, year):
|
|
|
|
dn = ldap_config.username_base_dn + residence_dn
|
|
|
|
return user_session.ldap_bind.search(dn, "(&(objectClass=aurorePayment)(x-year=" + str(year) + "))")
|
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_all_pending_payments(user_session, residence_dn, year):
|
|
|
|
dn = ldap_config.username_base_dn + residence_dn
|
2013-09-11 17:17:19 +00:00
|
|
|
return user_session.ldap_bind.search(dn, "(&(&(objectClass=aurorePayment)(x-year=" + str(year) + "))(!(x-paymentCashed=TRUE)))")
|
2013-09-10 22:28:40 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_pending_payments_of_admin(user_session, residence_dn, user_dn, year):
|
|
|
|
dn = ldap_config.username_base_dn + residence_dn
|
2013-09-11 17:17:19 +00:00
|
|
|
return user_session.ldap_bind.search(dn, "(&(&(&(objectClass=aurorePayment)(x-year=" + str(year) + "))(!(x-paymentCashed=TRUE)))(x-action-user=" + user_dn + "))")
|
2013-09-10 22:28:40 +00:00
|
|
|
#end def
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#end class
|