forked from filipg/gonito
60 lines
2.1 KiB
Haskell
60 lines
2.1 KiB
Haskell
module Handler.MakePublic where
|
|
|
|
import Import
|
|
|
|
import Handler.Shared
|
|
|
|
import PersistSHA1
|
|
|
|
import Data.Text as T
|
|
|
|
import Handler.Runner
|
|
|
|
getMakePublicR :: SubmissionId -> Handler TypedContent
|
|
getMakePublicR submissionId = do
|
|
userId <- requireAuthId
|
|
runViewProgress $ doMakePublic userId submissionId
|
|
|
|
doMakePublic :: UserId -> SubmissionId -> Channel -> Handler ()
|
|
doMakePublic userId submissionId chan = do
|
|
isOwner <- checkWhetherGivenUserRepo userId submissionId
|
|
if not isOwner
|
|
then
|
|
err chan "Only the submitter can make a submission public!"
|
|
else do
|
|
msg chan "Making the submission public..."
|
|
runDB $ update submissionId [SubmissionIsPublic =. True]
|
|
submission <- runDB $ get404 submissionId
|
|
challenge <- runDB $ get404 $ submissionChallenge submission
|
|
repo <- runDB $ get404 $ challengePublicRepo challenge
|
|
let submissionRepoId = submissionRepo submission
|
|
submissionRepoDir <- getRepoDir submissionRepoId
|
|
|
|
app <- getYesod
|
|
let scheme = appRepoScheme $ appSettings app
|
|
|
|
let targetRepoUrl = getPublicSubmissionUrl scheme (Just repo) $ challengeName challenge
|
|
let targetBranchName = getPublicSubmissionBranch submissionId
|
|
msg chan $ "Start pushing from " ++ (T.pack submissionRepoDir) ++ " to repo " ++ targetRepoUrl ++ ", branch " ++ targetBranchName ++ " ..."
|
|
let commit = submissionCommit submission
|
|
pushRepo submissionRepoDir commit (T.unpack $ targetRepoUrl) (T.unpack $ targetBranchName) chan
|
|
return ()
|
|
|
|
pushRepo :: String -> SHA1 -> String -> String -> Channel -> Handler ()
|
|
pushRepo repoDir commit targetRepoUrl targetBranchName chan = do
|
|
(_, _) <- runProgram (Just repoDir) gitPath [
|
|
"push",
|
|
targetRepoUrl,
|
|
(T.unpack $ fromSHA1ToText commit) ++ ":refs/heads/" ++ targetBranchName] chan
|
|
return ()
|
|
|
|
checkWhetherUserRepo :: SubmissionId -> Handler Bool
|
|
checkWhetherUserRepo submissionId = do
|
|
userId <- requireAuthId
|
|
checkWhetherGivenUserRepo userId submissionId
|
|
|
|
checkWhetherGivenUserRepo :: UserId -> SubmissionId -> Handler Bool
|
|
checkWhetherGivenUserRepo userId submissionId = do
|
|
submission <- runDB $ get404 submissionId
|
|
return $ userId == submissionSubmitter submission
|