diff options
author | pacien | 2020-05-18 20:05:14 +0200 |
---|---|---|
committer | Notkea | 2020-05-22 01:02:18 +0200 |
commit | e9e46a3b3392ab435f7414729592b2b5af4071b6 (patch) | |
tree | a00d532b5f9708776c2555b8011acbfa2365f9f8 /compiler/src/Processors.hs | |
parent | 8063119d3ee2182a595b2e53ee2bbc557a8a56c3 (diff) | |
download | ldgallery-e9e46a3b3392ab435f7414729592b2b5af4071b6.tar.gz |
compiler: add pdf resource type
Diffstat (limited to 'compiler/src/Processors.hs')
-rw-r--r-- | compiler/src/Processors.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/src/Processors.hs b/compiler/src/Processors.hs index ca8a74c..2988f83 100644 --- a/compiler/src/Processors.hs +++ b/compiler/src/Processors.hs | |||
@@ -47,8 +47,8 @@ data ProcessingException = ProcessingException FilePath String deriving Show | |||
47 | instance Exception ProcessingException | 47 | instance Exception ProcessingException |
48 | 48 | ||
49 | 49 | ||
50 | -- TODO: handle video, music, markdown, pdf... | 50 | -- TODO: handle video, music, markdown... |
51 | data Format = PictureFormat | PlainTextFormat | Unknown | 51 | data Format = PictureFormat | PlainTextFormat | PortableDocumentFormat | Unknown |
52 | 52 | ||
53 | formatFromPath :: Path -> Format | 53 | formatFromPath :: Path -> Format |
54 | formatFromPath = | 54 | formatFromPath = |
@@ -68,6 +68,7 @@ formatFromPath = | |||
68 | ".gif" -> PictureFormat | 68 | ".gif" -> PictureFormat |
69 | ".txt" -> PlainTextFormat | 69 | ".txt" -> PlainTextFormat |
70 | ".md" -> PlainTextFormat -- TODO: handle markdown separately | 70 | ".md" -> PlainTextFormat -- TODO: handle markdown separately |
71 | ".pdf" -> PortableDocumentFormat | ||
71 | _ -> Unknown | 72 | _ -> Unknown |
72 | 73 | ||
73 | 74 | ||
@@ -173,6 +174,7 @@ itemFileProcessor maxResolution cached inputBase outputBase resClass inputRes = | |||
173 | processorFor PictureFormat (Just maxRes) = (resizePictureUpTo maxRes, getPictureProps) | 174 | processorFor PictureFormat (Just maxRes) = (resizePictureUpTo maxRes, getPictureProps) |
174 | processorFor PictureFormat Nothing = (copyFileProcessor, getPictureProps) | 175 | processorFor PictureFormat Nothing = (copyFileProcessor, getPictureProps) |
175 | processorFor PlainTextFormat _ = (copyFileProcessor, const $ return . PlainText) | 176 | processorFor PlainTextFormat _ = (copyFileProcessor, const $ return . PlainText) |
177 | processorFor PortableDocumentFormat _ = (copyFileProcessor, const $ return . PDF) | ||
176 | -- TODO: handle video reencoding and others? | 178 | -- TODO: handle video reencoding and others? |
177 | processorFor Unknown _ = (copyFileProcessor, const $ return . Other) | 179 | processorFor Unknown _ = (copyFileProcessor, const $ return . Other) |
178 | 180 | ||