2016-02-27 14:41:36 +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.Repo
|
|
|
|
( getReposR
|
|
|
|
, postReposR
|
|
|
|
, getRepoNewR
|
|
|
|
, getRepoR
|
2016-04-12 09:19:04 +09:00
|
|
|
, getRepoSourceR
|
2016-04-12 06:35:26 +09:00
|
|
|
, getRepoCommitsR
|
2016-02-27 14:41:36 +09:00
|
|
|
)
|
|
|
|
where
|
|
|
|
|
|
|
|
--TODO CONTINUE HERE
|
|
|
|
--
|
|
|
|
-- [/] maybe list project repos in personal overview too
|
|
|
|
-- [x] make repo list page
|
|
|
|
-- [x] add new repo creation link
|
|
|
|
-- [x] make new repo form
|
|
|
|
-- [x] write the git and mkdir parts that actually create the repo
|
2016-03-03 17:15:54 +09:00
|
|
|
-- [x] make repo view that shows a table of commits
|
2016-02-27 14:41:36 +09:00
|
|
|
|
2016-05-05 02:17:47 +09:00
|
|
|
import ClassyPrelude.Conduit hiding (last, unpack)
|
2016-03-03 17:15:54 +09:00
|
|
|
import Yesod hiding (Header, parseTime, (==.))
|
|
|
|
import Yesod.Auth
|
|
|
|
|
2016-04-13 08:10:46 +09:00
|
|
|
import Prelude (init, last, tail)
|
2016-04-12 20:21:14 +09:00
|
|
|
|
2016-04-10 00:45:00 +09:00
|
|
|
import Data.Git.Graph
|
2016-05-01 05:14:56 +09:00
|
|
|
import Data.Git.Harder
|
2016-04-12 09:19:04 +09:00
|
|
|
import Data.Git.Named (RefName (..))
|
2016-03-03 17:15:54 +09:00
|
|
|
import Data.Git.Ref (toHex)
|
2016-05-04 20:44:06 +09:00
|
|
|
import Data.Git.Repository
|
2016-05-05 02:17:47 +09:00
|
|
|
import Data.Git.Storage (withRepo)
|
2016-04-12 19:06:21 +09:00
|
|
|
import Data.Git.Storage.Object (Object (..))
|
|
|
|
import Data.Git.Types (Blob (..), Commit (..), Person (..), entName)
|
2016-04-10 00:45:00 +09:00
|
|
|
import Data.Graph.Inductive.Graph (noNodes)
|
|
|
|
import Data.Graph.Inductive.Query.Topsort
|
2016-04-13 08:10:46 +09:00
|
|
|
import Data.List (inits)
|
2016-03-03 17:15:54 +09:00
|
|
|
import Data.Text (unpack)
|
|
|
|
import Data.Text.Encoding (decodeUtf8With)
|
|
|
|
import Data.Text.Encoding.Error (lenientDecode)
|
2016-02-27 14:41:36 +09:00
|
|
|
import Database.Esqueleto
|
2016-03-03 17:15:54 +09:00
|
|
|
import Data.Hourglass (timeConvert)
|
2016-02-27 14:41:36 +09:00
|
|
|
import System.Directory (createDirectoryIfMissing)
|
2016-03-03 17:15:54 +09:00
|
|
|
import System.Hourglass (dateCurrent)
|
|
|
|
|
2016-04-10 00:45:00 +09:00
|
|
|
import qualified Data.DList as D
|
2016-04-12 09:19:04 +09:00
|
|
|
import qualified Data.Set as S (member)
|
2016-04-12 19:06:21 +09:00
|
|
|
import qualified Data.Text.Lazy.Encoding as L (decodeUtf8With)
|
2016-04-10 00:45:00 +09:00
|
|
|
|
2016-03-03 17:15:54 +09:00
|
|
|
import Data.ByteString.Char8.Local (takeLine)
|
2016-05-05 02:17:47 +09:00
|
|
|
import Data.Git.Local
|
2016-04-18 02:55:23 +09:00
|
|
|
import Text.FilePath.Local (breakExt)
|
2016-02-27 14:41:36 +09:00
|
|
|
import Vervis.Form.Repo
|
2016-03-03 17:15:54 +09:00
|
|
|
import Vervis.Foundation
|
|
|
|
import Vervis.Git (timeAgo')
|
|
|
|
import Vervis.Path
|
2016-04-18 02:55:23 +09:00
|
|
|
import Vervis.MediaType (chooseMediaType)
|
2016-03-03 17:15:54 +09:00
|
|
|
import Vervis.Model
|
2016-05-03 09:33:49 +09:00
|
|
|
import Vervis.Model.Repo
|
2016-04-14 01:17:34 +09:00
|
|
|
import Vervis.Readme
|
2016-04-13 15:55:39 +09:00
|
|
|
import Vervis.Render
|
2016-03-03 17:15:54 +09:00
|
|
|
import Vervis.Settings
|
2016-04-12 23:44:43 +09:00
|
|
|
import Vervis.Style
|
2016-02-27 14:41:36 +09:00
|
|
|
|
2016-05-05 02:17:47 +09:00
|
|
|
import qualified Darcs.Local as D (createRepo)
|
|
|
|
import qualified Data.ByteString.Lazy as BL (ByteString)
|
|
|
|
import qualified Data.Git.Local as G (createRepo)
|
2016-05-04 20:44:06 +09:00
|
|
|
|
2016-04-13 02:37:31 +09:00
|
|
|
getReposR :: Text -> Handler Html
|
|
|
|
getReposR user = do
|
|
|
|
repos <- runDB $ select $ from $ \ (sharer, repo) -> do
|
2016-02-27 14:41:36 +09:00
|
|
|
where_ $
|
|
|
|
sharer ^. SharerIdent ==. val user &&.
|
2016-04-13 02:37:31 +09:00
|
|
|
sharer ^. SharerId ==. repo ^. RepoSharer
|
2016-02-27 14:41:36 +09:00
|
|
|
orderBy [asc $ repo ^. RepoIdent]
|
|
|
|
return $ repo ^. RepoIdent
|
|
|
|
defaultLayout $ do
|
2016-04-13 02:37:31 +09:00
|
|
|
setTitle $ toHtml $ intercalate " > "
|
|
|
|
["Vervis", "People", user, "Repos"]
|
2016-04-12 06:24:10 +09:00
|
|
|
$(widgetFile "repo/repos")
|
2016-02-27 14:41:36 +09:00
|
|
|
|
2016-04-13 02:37:31 +09:00
|
|
|
postReposR :: Text -> Handler Html
|
|
|
|
postReposR user = do
|
2016-02-27 14:41:36 +09:00
|
|
|
Entity _pid person <- requireAuth
|
|
|
|
let sid = personIdent person
|
2016-04-13 02:37:31 +09:00
|
|
|
((result, widget), enctype) <- runFormPost $ newRepoForm sid
|
2016-02-27 14:41:36 +09:00
|
|
|
case result of
|
2016-05-04 20:44:06 +09:00
|
|
|
FormSuccess repo -> do
|
|
|
|
parent <- askSharerDir user
|
|
|
|
liftIO $ do
|
|
|
|
createDirectoryIfMissing True parent
|
|
|
|
let repoName = unpack $ repoIdent repo
|
|
|
|
case repoVcs repo of
|
2016-05-05 02:17:47 +09:00
|
|
|
VCSDarcs -> D.createRepo parent repoName
|
|
|
|
VCSGit -> G.createRepo parent repoName
|
2016-05-04 20:44:06 +09:00
|
|
|
runDB $ insert_ repo
|
|
|
|
setMessage "Repo added."
|
|
|
|
redirect $ ReposR user
|
2016-02-27 14:41:36 +09:00
|
|
|
FormMissing -> do
|
|
|
|
setMessage "Field(s) missing"
|
2016-04-12 06:24:10 +09:00
|
|
|
defaultLayout $(widgetFile "repo/repo-new")
|
2016-05-04 20:44:06 +09:00
|
|
|
FormFailure _l -> do
|
|
|
|
setMessage "Repo creation failed, see errors below"
|
2016-04-12 06:24:10 +09:00
|
|
|
defaultLayout $(widgetFile "repo/repo-new")
|
2016-02-27 14:41:36 +09:00
|
|
|
|
2016-04-13 02:37:31 +09:00
|
|
|
getRepoNewR :: Text -> Handler Html
|
|
|
|
getRepoNewR user = do
|
2016-02-27 14:41:36 +09:00
|
|
|
Entity _pid person <- requireAuth
|
|
|
|
let sid = personIdent person
|
2016-04-13 02:37:31 +09:00
|
|
|
((_result, widget), enctype) <- runFormPost $ newRepoForm sid
|
2016-02-27 14:41:36 +09:00
|
|
|
defaultLayout $ do
|
2016-04-13 02:37:31 +09:00
|
|
|
setTitle $ toHtml $ mconcat ["Vervis > People > ", user, " > New Repo"]
|
2016-04-12 06:24:10 +09:00
|
|
|
$(widgetFile "repo/repo-new")
|
2016-02-27 14:41:36 +09:00
|
|
|
|
2016-04-10 00:45:00 +09:00
|
|
|
instance ResultList D.DList where
|
|
|
|
emptyList = D.empty
|
|
|
|
appendItem = flip D.snoc
|
|
|
|
|
2016-04-13 02:37:31 +09:00
|
|
|
getRepoR :: Text -> Text -> Handler Html
|
|
|
|
getRepoR user repo = do
|
2016-02-27 14:41:36 +09:00
|
|
|
repository <- runDB $ do
|
|
|
|
Entity sid _s <- getBy404 $ UniqueSharerIdent user
|
2016-04-13 02:37:31 +09:00
|
|
|
Entity _rid r <- getBy404 $ UniqueRepo repo sid
|
2016-02-27 14:41:36 +09:00
|
|
|
return r
|
2016-04-13 08:38:21 +09:00
|
|
|
getRepoSource repository user repo (repoMainBranch repository) []
|
2016-04-12 06:35:26 +09:00
|
|
|
|
2016-05-05 02:17:47 +09:00
|
|
|
data SourceView a
|
|
|
|
= DirectoryView (Maybe Text) TreeRows (Maybe (Text, a))
|
|
|
|
| FileView Text a
|
|
|
|
|
|
|
|
loadSourceView
|
|
|
|
:: Git
|
|
|
|
-> Text
|
|
|
|
-> [Text]
|
|
|
|
-> IO (Set RefName, Set RefName, Maybe (SourceView BL.ByteString))
|
|
|
|
loadSourceView git refT dir = do
|
|
|
|
branches <- branchList git
|
|
|
|
tags <- tagList git
|
|
|
|
let refS = unpack refT
|
|
|
|
refN = RefName refS
|
|
|
|
msv <- if refN `S.member` branches || refN `S.member` tags
|
|
|
|
then do
|
|
|
|
tipOid <- resolveName git refS
|
|
|
|
mtree <- resolveTreeish git $ unObjId tipOid
|
|
|
|
case mtree of
|
|
|
|
Nothing -> return Nothing
|
|
|
|
Just tree -> do
|
|
|
|
let dir' = map (entName . encodeUtf8) dir
|
|
|
|
view <- viewPath git tree dir'
|
|
|
|
Just <$> case view of
|
|
|
|
RootView rows -> do
|
|
|
|
mreadme <- findReadme git rows
|
|
|
|
return $ DirectoryView Nothing rows mreadme
|
|
|
|
TreeView name _ rows -> do
|
|
|
|
mreadme <- findReadme git rows
|
|
|
|
return $ DirectoryView (Just name) rows mreadme
|
|
|
|
BlobView name _ body -> return $ FileView name body
|
|
|
|
else return Nothing
|
|
|
|
return (branches, tags, msv)
|
|
|
|
|
|
|
|
renderSources :: [Text] -> SourceView BL.ByteString -> SourceView Widget
|
|
|
|
renderSources dir (DirectoryView mname rows mreadme) =
|
|
|
|
case mreadme of
|
|
|
|
Nothing -> DirectoryView mname rows Nothing
|
|
|
|
Just (name, body) ->
|
|
|
|
DirectoryView mname rows $ Just (name, renderReadme dir name body)
|
|
|
|
renderSources dir (FileView name body) =
|
|
|
|
let parent = init dir
|
|
|
|
(base, ext) = breakExt name
|
|
|
|
mediaType = chooseMediaType parent base ext () ()
|
|
|
|
in FileView name $ renderSourceBL mediaType body
|
|
|
|
|
2016-04-13 08:38:21 +09:00
|
|
|
getRepoSource :: Repo -> Text -> Text -> Text -> [Text] -> Handler Html
|
|
|
|
getRepoSource repository user repo ref dir = do
|
2016-04-13 02:37:31 +09:00
|
|
|
path <- askRepoDir user repo
|
2016-04-12 19:06:21 +09:00
|
|
|
let toText = decodeUtf8With lenientDecode
|
|
|
|
toTextL = L.decodeUtf8With lenientDecode
|
2016-05-05 02:17:47 +09:00
|
|
|
(branches, tags, msv) <- liftIO $ withRepo (fromString path) $ \ git ->
|
|
|
|
loadSourceView git ref dir
|
|
|
|
case renderSources dir <$> msv of
|
|
|
|
Nothing -> notFound
|
|
|
|
Just sv -> do
|
2016-04-13 08:10:46 +09:00
|
|
|
let parent = if null dir then [] else init dir
|
|
|
|
dirs = zip parent (tail $ inits parent)
|
2016-04-12 09:19:04 +09:00
|
|
|
defaultLayout $ do
|
|
|
|
setTitle $ toHtml $ intercalate " > " $
|
2016-04-13 02:37:31 +09:00
|
|
|
["Vervis", "People", user, "Repos", repo]
|
2016-04-12 09:19:04 +09:00
|
|
|
$(widgetFile "repo/source")
|
|
|
|
|
2016-04-13 08:38:21 +09:00
|
|
|
getRepoSourceR :: Text -> Text -> Text -> [Text] -> Handler Html
|
|
|
|
getRepoSourceR user repo ref dir = do
|
|
|
|
repository <- runDB $ do
|
|
|
|
Entity sid _s <- getBy404 $ UniqueSharerIdent user
|
|
|
|
Entity _rid r <- getBy404 $ UniqueRepo repo sid
|
|
|
|
return r
|
|
|
|
getRepoSource repository user repo ref dir
|
|
|
|
|
2016-04-13 02:37:31 +09:00
|
|
|
getRepoCommitsR :: Text -> Text -> Handler Html
|
|
|
|
getRepoCommitsR user repo = do
|
2016-04-12 06:35:26 +09:00
|
|
|
repository <- runDB $ do
|
|
|
|
Entity sid _s <- getBy404 $ UniqueSharerIdent user
|
2016-04-13 02:37:31 +09:00
|
|
|
Entity _rid r <- getBy404 $ UniqueRepo repo sid
|
2016-04-12 06:35:26 +09:00
|
|
|
return r
|
2016-04-13 02:37:31 +09:00
|
|
|
path <- askRepoDir user repo
|
2016-04-12 06:35:26 +09:00
|
|
|
pairs <- liftIO $ withRepo (fromString path) $ \ git -> do
|
|
|
|
oid <- resolveName git $ unpack $ repoMainBranch repository
|
|
|
|
graph <- loadCommitGraphPT git [oid]
|
|
|
|
let mnodes = topsortUnmixOrder graph (NodeStack [noNodes graph])
|
|
|
|
nodes = case mnodes of
|
|
|
|
Nothing -> error "commit graph contains a cycle"
|
|
|
|
Just ns -> ns
|
|
|
|
return $ D.toList $ fmap (nodeLabel graph) nodes
|
|
|
|
now <- liftIO dateCurrent
|
|
|
|
let toText = decodeUtf8With lenientDecode
|
|
|
|
mkrow oid commit =
|
|
|
|
( toText $ personName $ commitAuthor commit
|
|
|
|
, toText $ toHex $ unObjId oid
|
|
|
|
, toText $ takeLine $ commitMessage commit
|
|
|
|
, timeAgo' now (timeConvert $ personTime $ commitAuthor commit)
|
|
|
|
)
|
|
|
|
rows = map (uncurry mkrow) pairs
|
|
|
|
defaultLayout $ do
|
2016-04-13 02:37:31 +09:00
|
|
|
setTitle $ toHtml $ intercalate " > "
|
|
|
|
["Vervis", "People", user, "Repos", repo, "Commits"]
|
2016-04-12 06:35:26 +09:00
|
|
|
$(widgetFile "repo/commits")
|