mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-27 17:44:52 +09:00
New ticket post form
This commit is contained in:
parent
db06aeff0e
commit
09b767a037
7 changed files with 96 additions and 7 deletions
|
@ -40,10 +40,6 @@
|
||||||
/u/#Text/k/!new KeyNewR GET
|
/u/#Text/k/!new KeyNewR GET
|
||||||
/u/#Text/k/#Text KeyR GET
|
/u/#Text/k/#Text KeyR GET
|
||||||
|
|
||||||
/u/#Text/p ProjectsR GET POST
|
|
||||||
/u/#Text/p/!new ProjectNewR GET
|
|
||||||
/u/#Text/p/#Text ProjectR GET
|
|
||||||
|
|
||||||
/u/#Text/r ReposR GET POST
|
/u/#Text/r ReposR GET POST
|
||||||
/u/#Text/r/!new RepoNewR GET
|
/u/#Text/r/!new RepoNewR GET
|
||||||
/u/#Text/r/#Text RepoR GET
|
/u/#Text/r/#Text RepoR GET
|
||||||
|
@ -53,7 +49,13 @@
|
||||||
/u/#Text/r/#Text/git/info/refs GitRefDiscoverR GET
|
/u/#Text/r/#Text/git/info/refs GitRefDiscoverR GET
|
||||||
--/u/#Text/r/#Text/git/git-upload-pack GitUploadRequestR POST
|
--/u/#Text/r/#Text/git/git-upload-pack GitUploadRequestR POST
|
||||||
|
|
||||||
-- /u/#Text/p/#Text/t TicketsR GET
|
/u/#Text/p ProjectsR GET POST
|
||||||
-- /u/#Text/p/#Text/t/#TicketId TicketR GET
|
/u/#Text/p/!new ProjectNewR GET
|
||||||
|
/u/#Text/p/#Text ProjectR GET
|
||||||
|
|
||||||
|
/u/#Text/p/#Text/t TicketsR GET POST
|
||||||
|
/u/#Text/p/#Text/t/new TicketNewR GET
|
||||||
|
-- /u/#Text/p/#Text/t/#Int TicketR GET
|
||||||
|
|
||||||
-- /u/#Text/p/#Text/w WikiR GET
|
-- /u/#Text/p/#Text/w WikiR GET
|
||||||
-- /u/#Text/p/#Text/w/+Texts WikiPageR GET
|
-- /u/#Text/p/#Text/w/+Texts WikiPageR GET
|
||||||
|
|
|
@ -58,6 +58,7 @@ import Vervis.Handler.Key
|
||||||
import Vervis.Handler.Person
|
import Vervis.Handler.Person
|
||||||
import Vervis.Handler.Project
|
import Vervis.Handler.Project
|
||||||
import Vervis.Handler.Repo
|
import Vervis.Handler.Repo
|
||||||
|
import Vervis.Handler.Ticket
|
||||||
|
|
||||||
import Vervis.Ssh (runSsh)
|
import Vervis.Ssh (runSsh)
|
||||||
|
|
||||||
|
|
|
@ -115,6 +115,7 @@ instance Yesod App where
|
||||||
loggedInAs user "You can’t watch keys of other users"
|
loggedInAs user "You can’t watch keys of other users"
|
||||||
isAuthorized (KeyNewR user) _ =
|
isAuthorized (KeyNewR user) _ =
|
||||||
loggedInAs user "You can’t add keys for other users"
|
loggedInAs user "You can’t add keys for other users"
|
||||||
|
isAuthorized (TicketNewR _ _) _ = loggedIn
|
||||||
isAuthorized _ _ = return Authorized
|
isAuthorized _ _ = return Authorized
|
||||||
|
|
||||||
-- This function creates static content files in the static folder
|
-- This function creates static content files in the static folder
|
||||||
|
@ -217,6 +218,13 @@ unsafeHandler = Unsafe.fakeHandlerGetLogger appLogger
|
||||||
-- https://github.com/yesodweb/yesod/wiki/Serve-static-files-from-a-separate-domain
|
-- https://github.com/yesodweb/yesod/wiki/Serve-static-files-from-a-separate-domain
|
||||||
-- https://github.com/yesodweb/yesod/wiki/i18n-messages-in-the-scaffolding
|
-- https://github.com/yesodweb/yesod/wiki/i18n-messages-in-the-scaffolding
|
||||||
|
|
||||||
|
loggedIn :: Handler AuthResult
|
||||||
|
loggedIn = do
|
||||||
|
mpid <- maybeAuthId
|
||||||
|
case mpid of
|
||||||
|
Nothing -> return AuthenticationRequired
|
||||||
|
Just _pid -> return Authorized
|
||||||
|
|
||||||
loggedInAs :: Text -> Text -> Handler AuthResult
|
loggedInAs :: Text -> Text -> Handler AuthResult
|
||||||
loggedInAs ident msg = do
|
loggedInAs ident msg = do
|
||||||
mp <- maybeAuth
|
mp <- maybeAuth
|
||||||
|
|
56
src/Vervis/Handler/Ticket.hs
Normal file
56
src/Vervis/Handler/Ticket.hs
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
{- 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.Ticket
|
||||||
|
( getTicketsR
|
||||||
|
, postTicketsR
|
||||||
|
, getTicketNewR
|
||||||
|
)
|
||||||
|
where
|
||||||
|
|
||||||
|
import Prelude
|
||||||
|
|
||||||
|
import Data.Text (Text)
|
||||||
|
import Database.Persist.Types (Entity (..))
|
||||||
|
import Text.Blaze.Html (Html, toHtml)
|
||||||
|
import Yesod.Core (defaultLayout)
|
||||||
|
import Yesod.Core.Handler (notFound)
|
||||||
|
import Yesod.Core.Widget (setTitle)
|
||||||
|
import Yesod.Form.Functions (runFormPost)
|
||||||
|
import Yesod.Persist.Core (runDB, getBy404)
|
||||||
|
|
||||||
|
import qualified Data.Text as T (intercalate)
|
||||||
|
|
||||||
|
import Vervis.Form.Ticket
|
||||||
|
import Vervis.Foundation
|
||||||
|
import Vervis.Model
|
||||||
|
import Vervis.Settings (widgetFile)
|
||||||
|
|
||||||
|
getTicketsR :: Text -> Text -> Handler Html
|
||||||
|
getTicketsR shar proj = notFound
|
||||||
|
|
||||||
|
postTicketsR :: Text -> Text -> Handler Html
|
||||||
|
postTicketsR shar proj = notFound
|
||||||
|
|
||||||
|
getTicketNewR :: Text -> Text -> Handler Html
|
||||||
|
getTicketNewR shar proj = do
|
||||||
|
Entity pid project <- runDB $ do
|
||||||
|
Entity sid _sharer <- getBy404 $ UniqueSharerIdent shar
|
||||||
|
getBy404 $ UniqueProject proj sid
|
||||||
|
let next = projectNextTicket project
|
||||||
|
((_result, widget), enctype) <- runFormPost $ newTicketForm pid next
|
||||||
|
defaultLayout $ do
|
||||||
|
setTitle $ toHtml $ T.intercalate " :: " [shar, proj, "New ticket"]
|
||||||
|
$(widgetFile "ticket/new")
|
|
@ -18,7 +18,7 @@ module Vervis.Handler.Util
|
||||||
)
|
)
|
||||||
where
|
where
|
||||||
|
|
||||||
import Vervis.Import
|
import Vervis.Import hiding (loggedIn)
|
||||||
|
|
||||||
loggedIn :: Handler Bool
|
loggedIn :: Handler Bool
|
||||||
loggedIn = isJust <$> maybeAuthId
|
loggedIn = isJust <$> maybeAuthId
|
||||||
|
|
21
templates/ticket/new.hamlet
Normal file
21
templates/ticket/new.hamlet
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
$# 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/>.
|
||||||
|
|
||||||
|
<h1>#{shar} :: #{proj} :: New ticket
|
||||||
|
|
||||||
|
Enter the details and click "Submit" to create a new ticket.
|
||||||
|
|
||||||
|
<form method=POST action=@{TicketsR shar proj} enctype=#{enctype}>
|
||||||
|
^{widget}
|
||||||
|
<input type=submit>
|
|
@ -70,6 +70,7 @@ library
|
||||||
Vervis.Handler.Person
|
Vervis.Handler.Person
|
||||||
Vervis.Handler.Project
|
Vervis.Handler.Project
|
||||||
Vervis.Handler.Repo
|
Vervis.Handler.Repo
|
||||||
|
Vervis.Handler.Ticket
|
||||||
Vervis.Handler.Util
|
Vervis.Handler.Util
|
||||||
Vervis.Path
|
Vervis.Path
|
||||||
Vervis.Ssh
|
Vervis.Ssh
|
||||||
|
|
Loading…
Reference in a new issue