blob: 7beeed3f9a8c9235a5e8e196db9818323d86d10c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))
(in-package #:ldapadmin)
(defclass inetorg-view-service (auth-service)
((title :initarg :title
:initform nil
:accessor title))
(:documentation ""))
(defun inetorg-view-json (&optional message errormsg)
(with-auth (instance inetorg-view-service)
(setf (message instance) message)
(setf (errormsg instance) errormsg)
(setf (title instance) "Use the form to filter the InetOrg results.")))
(defclass inetorg-view-search-service (auth-service)
((form :initarg :form
:initform nil
:accessor form)
(title :initarg :title
:initform nil
:accessor title)
(location-p :initarg :location-p
:initform nil
:accessor location-p))
(:documentation ""))
(defmethod initialize-instance :after ((inetorg-view-search-service inetorg-view-search-service) &key)
(setf (form inetorg-view-search-service) (make-form "inetorg-view-search-form"
nil
t
'((:name "view-givenname" :label "givenName" :field-type "text")
(:name "view-sn" :label "sn" :field-type "text")
(:name "view-mail" :label "mail" :field-type "text")
(:name "view-postaladdress" :label "postalAddress" :field-type "text")
(:name "view-postalcode" :label "postalCode" :field-type "text")
(:name "view-st" :label "st" :field-type "text")
(:name "view-l" :label "l" :field-type "text")
(:name "view-telephonenumber" :label "telephoneNumber" :field-type "text")
(:name "view-mobile" :label "mobile" :field-type "text")
(:name "view-businesscategory" :label "businessCategory" :field-type "text")
(:label "Search InetOrg Entries" :field-type "button" :onclick "on_inetorg_view_search_clicked()")))))
(defun inetorg-view-search-json ()
(with-auth (instance inetorg-view-search-service)
nil))
(defclass inetorg-view-results-service (auth-service)
((results :initarg :results
:initform nil
:accessor results)
(location-p :initarg :location-p
:initform nil
:accessor location-p))
(:documentation ""))
(defun inetorg-view-results-json (givenname sn mail postaladdress postalcode st l telephonenumber mobile businesscategory)
(with-auth (instance inetorg-view-results-service)
(with-ldap (ldap)
(setf (results instance)
(sort (search-ldap-users ldap
`((:givenname ,givenname)
(:sn ,sn)
(:mail ,mail)
(:postaladdress ,postaladdress)
(:postalcode ,postalcode)
(:st ,st)
(:l ,l)
(:telephonenumber ,telephonenumber)
(:mobile ,mobile)
(:businesscategory ,businesscategory)))
(lambda (x y) (string< (get-cn x) (get-cn y))))))))
|