From b786befe6d4989cf109da741ff1d3968da2dadfd Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 29 Nov 2009 11:52:54 +0100 Subject: Allow the user to log in as needed. --- src/logikorr/servlet.clj | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/src/logikorr/servlet.clj b/src/logikorr/servlet.clj index 6eef643..dc48ce5 100644 --- a/src/logikorr/servlet.clj +++ b/src/logikorr/servlet.clj @@ -141,26 +141,27 @@ (ds/create (assoc (dissoc student :key) :kind "student") (:key new))) (str (:number new))))) +(defn call-with-authentication [thunk] + (let [users (UserServiceFactory/getUserService) + user (.getCurrentUser users)] + (if (and user + (some #(= user %) #{"mulkiatsch@gmail.com" + "gpmfuchs@gmx.de" + "kilian@fachschaften.uni-muenchen.de" + "schwicht@mathematik.uni-muenchen.de"})) + (thunk) + (redirect-to (.createLoginURL users "/"))))) + +(defmacro with-authentication [& body] + `(call-with-authentication (fn [] ~@body))) + (defroutes logikorr - (GET "/*" (let [users (UserServiceFactory/getUserService) - user (.getCurrentUser users)] - (if (and user - (some #(= user %) #{"mulkiatsch@gmail.com" - "gpmfuchs@gmx.de" - "kilian@fachschaften.uni-muenchen.de" - "schwicht@mathematik.uni-muenchen.de"})) - :next - (html [:html - [:head [:title "Access denied."]] - [:body - [:h1 "Access denied."] - [:p "You do not have access to this application."]]])))) - (GET "/" index) + (GET "/" (with-authentication (index request))) (GET "/favicon.ico" (do nil)) - (GET "/logikorr-completion-data.js" (compute-completion-data-js)) - (GET "/find-student" (find-student-json (:name params))) - (GET "/update-student-score" (update-student-score (:id params) (:score-number params) (:score params))) - (GET "/make-new-revision" (make-new-revision)) + (GET "/logikorr-completion-data.js" (with-authentication (compute-completion-data-js))) + (GET "/find-student" (with-authentication (find-student-json (:name params)))) + (GET "/update-student-score" (with-authentication (update-student-score (:id params) (:score-number params) (:score params)))) + (GET "/make-new-revision" (with-authentication (make-new-revision))) (GET "/*" (or (serve-file *static-directory* (params :*)) :next)) (ANY "/*" (page-not-found))) -- cgit v1.2.3