1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2025-01-10 03:36:47 +09:00
vervis/src/Vervis/Handler/Key.hs

99 lines
3.3 KiB
Haskell
Raw Normal View History

2016-03-07 09:42:06 +09:00
{- This file is part of Vervis.
-
- Written in 2016 by fr33domlover <fr33domlover@riseup.net>.
-
- Copying is an act of love. Please copy, reuse and share.
-
- The author(s) have dedicated all copyright and related and neighboring
- rights to this software to the public domain worldwide. This software is
- distributed without any warranty.
-
- You should have received a copy of the CC0 Public Domain Dedication along
- with this software. If not, see
- <http://creativecommons.org/publicdomain/zero/1.0/>.
-}
module Vervis.Handler.Key
( getKeysR
, postKeysR
, getKeyNewR
, getKeyR
)
where
import Prelude
import Data.ByteString.Base64 (encode)
2016-03-08 11:52:46 +09:00
import Data.Monoid ((<>))
2016-03-07 09:42:06 +09:00
import Data.Text (Text, intercalate)
import Data.Text.Encoding (decodeUtf8With)
import Data.Text.Encoding.Error (lenientDecode)
import Database.Persist
import Text.Blaze.Html (Html, toHtml)
import Yesod.Core (defaultLayout)
2016-03-08 11:52:46 +09:00
import Yesod.Core.Handler (setMessage, redirectUltDest)
2016-03-07 09:42:06 +09:00
import Yesod.Core.Widget (setTitle)
2016-03-08 11:52:46 +09:00
import Yesod.Form.Functions (runFormPost)
import Yesod.Form.Types (FormResult (..))
2016-03-07 09:42:06 +09:00
import Yesod.Persist.Core (runDB, getBy404)
2016-03-08 11:52:46 +09:00
import Vervis.Form.Key
2016-03-07 09:42:06 +09:00
import Vervis.Foundation
import Vervis.Model
import Vervis.Settings
getKeysR :: Text -> Handler Html
getKeysR user = do
keys <- runDB $ do
Entity sid _sharer <- getBy404 $ UniqueSharerIdent user
Entity pid _person <- getBy404 $ UniquePersonIdent sid
ks <- selectList [SshKeyPerson ==. pid] [Asc SshKeyName]
return $ map (\ (Entity _ k) -> sshKeyName k) ks
defaultLayout $ do
setTitle $ toHtml $
intercalate " > " ["Vervis", "People", user, "Keys"]
$(widgetFile "key/keys")
2016-03-07 09:42:06 +09:00
postKeysR :: Text -> Handler Html
2016-03-08 11:52:46 +09:00
postKeysR user = do
pid <- runDB $ do
Entity s _sharer <- getBy404 $ UniqueSharerIdent user
Entity p _person <- getBy404 $ UniquePersonIdent s
return p
((result, widget), enctype) <- runFormPost $ newKeyForm pid
case result of
FormSuccess key -> do
runDB $ insert_ key
setMessage "Key added."
redirectUltDest HomeR
FormMissing -> do
setMessage "Field(s) missing"
defaultLayout $(widgetFile "key/key-new")
2016-03-08 11:52:46 +09:00
FormFailure _l -> do
setMessage "Invalid input, see below"
defaultLayout $(widgetFile "key/key-new")
2016-03-07 09:42:06 +09:00
getKeyNewR :: Text -> Handler Html
2016-03-08 11:52:46 +09:00
getKeyNewR user = do
pid <- runDB $ do
Entity s _sharer <- getBy404 $ UniqueSharerIdent user
Entity p _person <- getBy404 $ UniquePersonIdent s
return p
((_result, widget), enctype) <- runFormPost $ newKeyForm pid
defaultLayout $ do
setTitle $ toHtml $ "Vervis > People > " <> user <> " > New Key"
$(widgetFile "key/key-new")
2016-03-07 09:42:06 +09:00
getKeyR :: Text -> Text -> Handler Html
getKeyR user tag = do
Entity _kid key <- runDB $ do
Entity sid _sharer <- getBy404 $ UniqueSharerIdent user
Entity pid _person <- getBy404 $ UniquePersonIdent sid
getBy404 $ UniqueSshKey pid tag
let toText = decodeUtf8With lenientDecode
content = toText $ encode $ sshKeyContent key
defaultLayout $ do
setTitle $ toHtml $
intercalate " > " ["Vervis", "People", user, "Keys", tag]
$(widgetFile "key/key")