-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_preview.hs
executable file
·70 lines (62 loc) · 2.64 KB
/
generate_preview.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
-- Copyright 2011 by Joshua Simmons <[email protected]>
module Main where
import SGF
import Game
import Canvas
import qualified Graphics.Rendering.Cairo as C
import Network.CGI
import System.Directory
import System.FilePath
import Data.Maybe
import System.IO
import qualified Data.ByteString.Lazy as BS
import qualified Data.Map as M
import Config
inDirectory dir fn =
do c <- getDirectoryContents dir
return $ fn `elem` (filter (\x -> not $ x `elem` [".", ".."]) c)
sgfContents req =
do let (sgfFn, ext) = splitExtension req
isIn <- inDirectory sgfDirectory sgfFn
if isIn
then do h <- openFile (sgfDirectory ++ sgfFn) ReadMode
c <- hGetContents h
return $ Just (parseSGF c, (sgfFn, ext))
else return Nothing
startOfProblem collection = peekToPlay $ advanceWhile (not . commentAndStones) $ start (head collection)
where commentAndStones g = comment g /= "" && (stones $ board g) /= M.fromList []
generateOutputs req =
do sgfC <- liftIO $ sgfContents req
case sgfC of
Nothing -> outputNotFound $ "Source SGF file"
Just (parsed, (sgfFn, ext)) ->
case parsed of
Left e -> outputError 500 "Can't process that SGF file" ["Can't process SGF file", req, show e]
Right parsed ->
do let probStart = startOfProblem parsed
img <- liftIO $ printOn imgCanvas undefined probStart
liftIO $ C.surfaceWriteToPNG img (sgfFn ++ ".png")
toplay <- liftIO $ printOn toplayCanvas undefined probStart
liftIO $ writeFile (sgfFn ++ ".toplay") toplay
outputRequestedFile sgfFn ext
outputRequestedFile sgfFn ext =
do case ext of
".png" -> do setHeader "Content-type" "image/png"
outputIt
".toplay" -> do setHeader "Content-type" "text/plain"
outputIt
otherwise -> outputNotFound "Requested generated file"
where fullName = sgfFn ++ ext
outputIt = do isIn <- liftIO $ inDirectory "." fullName
if isIn
then do handle <- liftIO $ openFile fullName ReadMode
bs <- liftIO $ BS.hGetContents handle
outputFPS bs
else outputNotFound "Requested generated file"
cgiMain :: CGI CGIResult
cgiMain =
do req <- getInput "req"
case req of
Nothing -> outputError 400 "The request you have made is not valid and should not be attempted again without modifications." ["generate_preview called with no req input"]
Just req -> generateOutputs req
main = runCGI (handleErrors cgiMain)