Skip to content
Snippets Groups Projects
Commit 3bcc4a60 authored by stuebinm's avatar stuebinm
Browse files

mapserver: symlink outdirs to human-readable paths

(meant for use of this server without exneuland / the whole map
resolution api on a dump simple workadventure backend)
parent db2bd423
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,8 @@ url = "https://world.di.c3voc.de/maps/" ...@@ -21,6 +21,8 @@ url = "https://world.di.c3voc.de/maps/"
# webdir into which maps should be written # webdir into which maps should be written
webdir = "/tmp/var/www/divoc" webdir = "/tmp/var/www/divoc"
webdir_human = "/tmp/var/www-human/divoc"
# increment this if you change the server / linter config # increment this if you change the server / linter config
# (part of urls for linted maps; allows indefinite browser caching) # (part of urls for linted maps; allows indefinite browser caching)
generation = 1 generation = 1
......
...@@ -99,6 +99,7 @@ data Org (loaded :: Bool) = Org ...@@ -99,6 +99,7 @@ data Org (loaded :: Bool) = Org
, orgRepos :: [RemoteRef] , orgRepos :: [RemoteRef]
, orgUrl :: Text , orgUrl :: Text
, orgWebdir :: Text , orgWebdir :: Text
, orgHumanWebdir :: Text
, orgBacklinkPrefix :: Text , orgBacklinkPrefix :: Text
, orgContactMail :: Text , orgContactMail :: Text
, orgHowtoLink :: Maybe Text , orgHowtoLink :: Maybe Text
...@@ -163,6 +164,7 @@ orgCodec = Org ...@@ -163,6 +164,7 @@ orgCodec = Org
<*> T.list remoteCodec "repo" .= orgRepos <*> T.list remoteCodec "repo" .= orgRepos
<*> T.text "url" .= orgUrl <*> T.text "url" .= orgUrl
<*> T.text "webdir" .= orgWebdir <*> T.text "webdir" .= orgWebdir
<*> T.text "webdir_human" .= orgHumanWebdir
<*> T.text "backlink_prefix" .= orgBacklinkPrefix <*> T.text "backlink_prefix" .= orgBacklinkPrefix
<*> T.text "contact_mail" .= orgContactMail <*> T.text "contact_mail" .= orgContactMail
<*> coerce (T.first T.text "howto_link") .= orgHowtoLink <*> coerce (T.first T.text "howto_link") .= orgHowtoLink
......
...@@ -98,6 +98,7 @@ runJob offline config Job {..} done = do ...@@ -98,6 +98,7 @@ runJob offline config Job {..} done = do
$ readgit' gitdir ["rev-parse", toString ref] $ readgit' gitdir ["rev-parse", toString ref]
let outPath = adjustedPath rev jobOrg let outPath = adjustedPath rev jobOrg
let humanOutPath = orgHumanWebdir jobOrg <> "/" <> reponame jobRef
callgit gitdir [ "worktree", "add", "--force", workdir, toString ref ] callgit gitdir [ "worktree", "add", "--force", workdir, toString ref ]
...@@ -106,13 +107,17 @@ runJob offline config Job {..} done = do ...@@ -106,13 +107,17 @@ runJob offline config Job {..} done = do
liftIO (writeAdjustedRepository lintConfig workdir (toString outPath) res) liftIO (writeAdjustedRepository lintConfig workdir (toString outPath) res)
>>= \case >>= \case
ExitSuccess -> ExitSuccess -> do
logInfoN $ "linted map "+| (show jobRef :: Text) |+"." logInfoN $ "linted map "+| (show jobRef :: Text) |+"."
logInfoN $ "symlinking"+|outPath|+"into human web dir at"+|humanOutPath|+""
liftIO $ callProcess "ln" [ "-sfn", toString outPath, toString humanOutPath ]
ExitFailure 1 -> ExitFailure 1 ->
logInfoN $ "linted map "+| (show jobRef :: Text) |+ ", which failed." logInfoN $ "linted map "+| (show jobRef :: Text) |+ ", which failed."
ExitFailure 2 -> ExitFailure 2 -> do
-- TODO: shouldn't have linted this map at all -- TODO: shouldn't have linted this map at all
logErrorN $ "outpath "+|outPath|+" already exists!" logErrorN $ "outpath "+|outPath|+" already exists!"
logInfoN $ "symlinking"+|outPath|+"into human web dir at"+|humanOutPath|+""
liftIO $ callProcess "ln" [ "-sfn", toString outPath, toString humanOutPath ]
ExitFailure _ -> ExitFailure _ ->
-- writeAdjustedRepository does not return other codes -- writeAdjustedRepository does not return other codes
$(logError) "wtf, this is impossible" $(logError) "wtf, this is impossible"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment