summaryrefslogtreecommitdiff
path: root/service/inetorg-modify.lisp
diff options
context:
space:
mode:
authorckonstanski <ckonstanski@pippiandcarlos.com>2020-12-21 08:59:56 -0700
committerckonstanski <ckonstanski@pippiandcarlos.com>2020-12-21 08:59:56 -0700
commit0ed1cba1b39daaf8eef693233f081b455c88dece (patch)
tree0322ba1444ef724d4613e3c26ed2679e71bf1882 /service/inetorg-modify.lisp
parentbac1df6134eee78b79810d13c71a2b22b4739a12 (diff)
stuff
Diffstat (limited to 'service/inetorg-modify.lisp')
-rw-r--r--service/inetorg-modify.lisp60
1 files changed, 0 insertions, 60 deletions
diff --git a/service/inetorg-modify.lisp b/service/inetorg-modify.lisp
deleted file mode 100644
index a8b5b21..0000000
--- a/service/inetorg-modify.lisp
+++ /dev/null
@@ -1,60 +0,0 @@
-;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
-(declaim (optimize (speed 0) (safety 3) (debug 3)))
-
-(in-package #:ldapadmin)
-
-;; ========================================================================== ;;
-;; inetorg-modify
-
-(defclass inetorg-modify (auth-service generic-form)
- ((ldap-user-values :initarg :ldap-user-values
- :initform nil
- :accessor ldap-user-values)
- (location-p :initarg :location-p
- :initform nil
- :accessor location-p))
- (:documentation ""))
-
-(define-generic-form-constructor (inetorg-modify "inetorg-modify-form" "/inetorg/modify/submit")
- '((:name "modify-givenname" :label "givenName" :field-type "text")
- (:name "modify-sn" :label "sn" :field-type "text")
- (:name "modify-mail" :label "mail" :field-type "text")
- (:name "modify-postaladdress" :label "postalAddress" :field-type "text")
- (:name "modify-postalcode" :label "postalCode" :field-type "text")
- (:name "modify-st" :label "st" :field-type "text")
- (:name "modify-l" :label "l" :field-type "text")
- (:name "modify-telephonenumber" :label "telephoneNumber" :field-type "text")
- (:name "modify-mobile" :label "mobile" :field-type "text")
- (:name "modify-businesscategory" :label "businessCategory" :field-type "text")
- (:name "modify-submit" :label "Modify InetOrg Entry" :field-type "button")))
-
-(defun inetorg-modify-json (cn)
- (with-auth (instance inetorg-modify)
- (with-ldap (ldap)
- (setf (ldap-user-values instance) (get-ldap-user ldap cn)))))
-
-;; ========================================================================== ;;
-;; inetorg-modify-submit
-
-(defclass inetorg-modify-submit (auth-service)
- ((location-p :initarg :location-p
- :initform nil
- :accessor location-p))
- (:documentation ""))
-
-(defun inetorg-modify-submit-json (givenname sn mail postaladdress postalcode st l telephonenumber mobile businesscategory)
- (with-auth (instance inetorg-modify-submit)
- (with-ldap (ldap)
- (let ((ldap-user (make-instance 'ldap-user
- :givenname givenname
- :sn sn
- :mail mail
- :postaladdress postaladdress
- :postalcode postalcode
- :st st
- :l l
- :telephonenumber telephonenumber
- :mobile mobile
- :businesscategory businesscategory)))
- (modify-ldap-user ldap-user ldap)
- (setf (message instance) "InetOrg entry saved successfully.")))))