summaryrefslogtreecommitdiff
path: root/Foundation.hs
diff options
context:
space:
mode:
authorClint Adams <clint@softwarefreedom.org>2014-04-01 10:19:30 -0400
committerClint Adams <clint@softwarefreedom.org>2014-04-01 10:19:30 -0400
commit9722abe7144d4a32e7a44653426081380d65685e (patch)
tree2b6a3a414d0a1563bf16c256ff28b18f736bb013 /Foundation.hs
parentc4f1b6f21b121933da8e424eee1a7ff87b535755 (diff)
Add Assistant table
Diffstat (limited to 'Foundation.hs')
-rw-r--r--Foundation.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Foundation.hs b/Foundation.hs
index 2d8f748..915230c 100644
--- a/Foundation.hs
+++ b/Foundation.hs
@@ -150,6 +150,19 @@ isAdmin = do
Nothing -> AuthenticationRequired
Just (Entity u v) -> if userIsAdmin v then Authorized else Unauthorized "You must be an admin"
+isUserOrAssistant :: UserId -> Handler AuthResult
+isUserOrAssistant t = do
+ ma <- maybeAuth
+ case ma of
+ Nothing -> return AuthenticationRequired
+ Just (Entity u _) -> case t == u of
+ True -> return Authorized
+ False -> do
+ mass <- runDB $ selectFirst [AssistantAssistant ==. u, AssistantAssisted ==. t] []
+ case mass of
+ Nothing -> return $ Unauthorized "That ain't your page."
+ Just _ -> return Authorized
+
-- How to run database actions.
instance YesodPersist App where
type YesodPersistBackend App = SqlPersistT