2020-07-07 20:52:01 -04:00
|
|
|
{-# OPTIONS_GHC -Wno-orphans #-}
|
|
|
|
module Info
|
2020-07-14 00:51:27 -04:00
|
|
|
(Info (..), Artist (..), Image (..), Link (..),
|
2020-07-16 10:07:28 -04:00
|
|
|
GalleryInfo (..), GalleryFilters (..), Whose (..),
|
|
|
|
readWhose, matchWhose, matchNsfw, matchFilters,
|
2020-07-07 20:52:01 -04:00
|
|
|
-- ** Reexports
|
2020-07-11 23:40:14 -04:00
|
|
|
Day (..), Text)
|
2020-07-07 20:52:01 -04:00
|
|
|
where
|
|
|
|
|
2020-07-13 02:33:27 -04:00
|
|
|
import Records
|
|
|
|
|
2020-07-15 14:07:51 -04:00
|
|
|
import Control.Applicative
|
|
|
|
import Data.Foldable (find)
|
|
|
|
import qualified Data.Map.Strict as Map
|
|
|
|
import Data.Maybe (isJust, isNothing)
|
2020-07-16 05:48:09 -04:00
|
|
|
import Data.String (IsString)
|
2020-07-07 20:52:01 -04:00
|
|
|
import Data.Text (Text)
|
|
|
|
import qualified Data.Text as Text
|
2020-07-15 14:07:51 -04:00
|
|
|
import Data.Time.Calendar (Day (..))
|
|
|
|
import Data.YAML (FromYAML (..), (.:), (.:?), (.!=))
|
|
|
|
import qualified Data.YAML as YAML
|
2020-07-07 20:52:01 -04:00
|
|
|
import Text.Read (readMaybe)
|
|
|
|
|
|
|
|
|
|
|
|
data Info =
|
|
|
|
Info {
|
2020-07-07 23:27:38 -04:00
|
|
|
date :: !Day,
|
2020-07-11 23:40:14 -04:00
|
|
|
title :: !(Maybe Text),
|
2020-07-12 22:38:37 -04:00
|
|
|
artist :: !(Maybe Artist), -- nothing = me, obv
|
2020-07-14 00:52:23 -04:00
|
|
|
warning :: !(Maybe Text),
|
2020-07-11 23:40:14 -04:00
|
|
|
tags :: ![Text],
|
2020-07-11 23:42:31 -04:00
|
|
|
nsfwTags :: ![Text],
|
2020-07-11 23:40:14 -04:00
|
|
|
description :: !(Maybe Text),
|
|
|
|
images :: ![Image],
|
2020-07-15 14:07:51 -04:00
|
|
|
thumb' :: !(Maybe FilePath),
|
2020-07-11 23:40:14 -04:00
|
|
|
links :: ![Link]
|
2020-07-07 20:52:01 -04:00
|
|
|
}
|
|
|
|
deriving (Eq, Show)
|
|
|
|
|
2020-07-12 22:38:37 -04:00
|
|
|
data Artist =
|
|
|
|
Artist {
|
|
|
|
name :: !Text,
|
|
|
|
url :: !(Maybe Text)
|
|
|
|
}
|
|
|
|
deriving (Eq, Show)
|
|
|
|
|
2020-07-07 20:52:01 -04:00
|
|
|
data Image =
|
|
|
|
Image {
|
2020-07-07 23:27:38 -04:00
|
|
|
label :: !Text,
|
2020-07-15 05:35:32 -04:00
|
|
|
path :: !FilePath,
|
2020-07-07 23:27:38 -04:00
|
|
|
nsfw :: !Bool
|
2020-07-07 20:52:01 -04:00
|
|
|
}
|
|
|
|
deriving (Eq, Show)
|
|
|
|
|
|
|
|
data Link =
|
|
|
|
Link {
|
2020-07-07 23:27:38 -04:00
|
|
|
title :: !Text,
|
2020-07-09 15:45:57 -04:00
|
|
|
url :: !Text,
|
|
|
|
nsfw :: !Bool
|
2020-07-07 20:52:01 -04:00
|
|
|
}
|
|
|
|
deriving (Eq, Show)
|
|
|
|
|
2020-07-13 02:33:27 -04:00
|
|
|
instance HasField "sfw" Image Bool where getField = not . #nsfw
|
|
|
|
instance HasField "sfw" Link Bool where getField = not . #nsfw
|
|
|
|
|
2020-07-16 05:47:02 -04:00
|
|
|
instance HasField "sfwImages" Info [Image] where
|
|
|
|
getField = filter #sfw . #images
|
|
|
|
instance HasField "allNsfw" Info Bool where getField = null . #sfwImages
|
|
|
|
instance HasField "anySfw" Info Bool where getField = not . #allNsfw
|
|
|
|
|
2020-07-15 14:07:51 -04:00
|
|
|
instance HasField "thumb" Info (Maybe FilePath) where
|
|
|
|
getField (Info {thumb', images}) = thumb' <|> #path <$> find #sfw images
|
|
|
|
|
|
|
|
instance HasField "mine" Info Bool where getField = isNothing . #artist
|
|
|
|
instance HasField "notMine" Info Bool where getField = isJust . #artist
|
|
|
|
|
2020-07-07 20:52:01 -04:00
|
|
|
|
|
|
|
instance FromYAML Info where
|
|
|
|
parseYAML = YAML.withMap "info" \m ->
|
2020-07-11 23:40:14 -04:00
|
|
|
Info <$> m .: "date"
|
|
|
|
<*> m .:? "title"
|
2020-07-12 22:38:37 -04:00
|
|
|
<*> m .:? "artist"
|
2020-07-14 00:52:23 -04:00
|
|
|
<*> m .:? "warning"
|
2020-07-11 23:40:14 -04:00
|
|
|
<*> m .:? "tags" .!= []
|
2020-07-14 00:52:35 -04:00
|
|
|
<*> m .:? "nsfw-tags" .!= []
|
2020-07-11 23:40:14 -04:00
|
|
|
<*> m .:? "description"
|
|
|
|
<*> m .: "images"
|
2020-07-15 05:34:56 -04:00
|
|
|
<*> m .:? "thumb"
|
2020-07-11 23:40:14 -04:00
|
|
|
<*> m .:? "links" .!= []
|
2020-07-07 20:52:01 -04:00
|
|
|
|
2020-07-12 22:38:37 -04:00
|
|
|
instance FromYAML Artist where
|
|
|
|
parseYAML y = justName y <|> withUrl y where
|
|
|
|
justName = YAML.withStr "name" \name -> pure $ Artist {name, url = Nothing}
|
|
|
|
withUrl = YAML.withMap "full info" \m ->
|
|
|
|
Artist <$> m .: "name" <*> m .:? "url"
|
|
|
|
|
2020-07-07 20:52:01 -04:00
|
|
|
instance FromYAML Image where
|
2020-07-09 15:45:57 -04:00
|
|
|
parseYAML = labelledOptNsfw Image "path" "path"
|
2020-07-07 20:52:01 -04:00
|
|
|
|
|
|
|
instance FromYAML Link where
|
2020-07-09 15:45:57 -04:00
|
|
|
parseYAML = labelledOptNsfw Link "url" "url"
|
2020-07-07 20:52:01 -04:00
|
|
|
|
|
|
|
|
2020-07-16 05:48:09 -04:00
|
|
|
data GalleryInfo =
|
|
|
|
GalleryInfo {
|
2020-07-16 10:07:28 -04:00
|
|
|
title :: !Text,
|
2020-07-16 05:48:09 -04:00
|
|
|
prefix :: !FilePath,
|
2020-07-16 10:07:28 -04:00
|
|
|
filters :: !GalleryFilters
|
2020-07-16 05:48:09 -04:00
|
|
|
}
|
|
|
|
deriving (Eq, Show)
|
|
|
|
|
|
|
|
data GalleryFilters =
|
|
|
|
GalleryFilters {
|
2020-07-16 10:07:28 -04:00
|
|
|
nsfw :: Maybe Bool,
|
|
|
|
whose :: Whose
|
2020-07-16 05:48:09 -04:00
|
|
|
}
|
|
|
|
deriving (Eq, Show)
|
|
|
|
|
2020-07-16 10:07:28 -04:00
|
|
|
data Whose = Mine | NotMine | All deriving (Eq, Show)
|
2020-07-16 05:48:09 -04:00
|
|
|
|
|
|
|
|
|
|
|
matchNsfw :: Maybe Bool -> Info -> Bool
|
|
|
|
matchNsfw Nothing _ = True
|
|
|
|
matchNsfw (Just nsfw) i = #allNsfw i == nsfw
|
|
|
|
|
2020-07-16 10:07:28 -04:00
|
|
|
readWhose :: (IsString str, Eq str, Alternative f) => str -> f Whose
|
|
|
|
readWhose "mine" = pure Mine
|
|
|
|
readWhose "not-mine" = pure NotMine
|
|
|
|
readWhose "all" = pure All
|
|
|
|
readWhose _ = empty
|
2020-07-16 05:48:09 -04:00
|
|
|
|
2020-07-16 10:07:28 -04:00
|
|
|
matchWhose :: Whose -> Info -> Bool
|
|
|
|
matchWhose Mine = #mine
|
|
|
|
matchWhose NotMine = #notMine
|
|
|
|
matchWhose All = const True
|
2020-07-16 05:48:09 -04:00
|
|
|
|
|
|
|
noFilters :: GalleryFilters
|
2020-07-16 10:07:28 -04:00
|
|
|
noFilters = GalleryFilters {nsfw = Nothing, whose = All}
|
2020-07-16 05:48:09 -04:00
|
|
|
|
|
|
|
matchFilters :: GalleryFilters -> Info -> Bool
|
2020-07-16 10:07:28 -04:00
|
|
|
matchFilters (GalleryFilters {nsfw, whose}) i =
|
|
|
|
matchNsfw nsfw i && matchWhose whose i
|
2020-07-16 05:48:09 -04:00
|
|
|
|
|
|
|
|
|
|
|
instance FromYAML GalleryInfo where
|
|
|
|
parseYAML = YAML.withMap "gallery info" \m ->
|
2020-07-16 10:07:28 -04:00
|
|
|
GalleryInfo <$> m .: "title"
|
|
|
|
<*> m .: "prefix"
|
|
|
|
<*> m .:? "filters" .!= noFilters
|
2020-07-16 05:48:09 -04:00
|
|
|
|
|
|
|
instance FromYAML GalleryFilters where
|
|
|
|
parseYAML = YAML.withMap "gallery filters" \m ->
|
|
|
|
GalleryFilters <$> m .:? "nsfw"
|
2020-07-16 10:07:28 -04:00
|
|
|
<*> m .:? "whose" .!= All
|
2020-07-16 05:48:09 -04:00
|
|
|
|
2020-07-16 10:07:28 -04:00
|
|
|
instance FromYAML Whose where parseYAML = YAML.withStr "whose" readWhose
|
2020-07-16 05:48:09 -04:00
|
|
|
|
|
|
|
|
2020-07-07 20:52:01 -04:00
|
|
|
data Pair a b = Pair !a !b
|
|
|
|
|
|
|
|
instance (FromYAML a, FromYAML b) => FromYAML (Pair a b) where
|
|
|
|
parseYAML =
|
|
|
|
YAML.withMap "single-pair map" \m ->
|
|
|
|
case Map.toList m of
|
|
|
|
[(a, b)] -> Pair <$> parseYAML a <*> parseYAML b
|
|
|
|
_ -> fail "expected exactly one pair"
|
|
|
|
|
2020-07-09 15:45:57 -04:00
|
|
|
|
|
|
|
data OptNsfw a = NoNsfw !a | WithNsfw !a !Bool
|
|
|
|
|
|
|
|
appOptNsfw :: (a -> Bool -> b) -> OptNsfw a -> b
|
|
|
|
appOptNsfw f (NoNsfw x) = f x False
|
|
|
|
appOptNsfw f (WithNsfw x n) = f x n
|
|
|
|
|
|
|
|
labelledOptNsfw :: FromYAML a
|
|
|
|
=> (Text -> a -> Bool -> b)
|
|
|
|
-> String -- ^ name in \"expected\" message
|
|
|
|
-> Text -- ^ field name
|
|
|
|
-> YAML.Node YAML.Pos -> YAML.Parser b
|
|
|
|
labelledOptNsfw f name field y = do
|
|
|
|
Pair l n' <- parseYAML y
|
|
|
|
n <- parseOptNsfw name field n'
|
|
|
|
pure $ appOptNsfw (f l) n
|
|
|
|
|
|
|
|
parseOptNsfw :: FromYAML a
|
|
|
|
=> String -- ^ name in \"expected\" message
|
|
|
|
-> Text -- ^ field name
|
|
|
|
-> YAML.Node YAML.Pos -> YAML.Parser (OptNsfw a)
|
|
|
|
parseOptNsfw name field y = yes y <|> no y where
|
|
|
|
yes = YAML.withMap (name <> " & nsfw") \m ->
|
2020-07-11 23:40:14 -04:00
|
|
|
WithNsfw <$> m .: field
|
|
|
|
<*> m .:? "nsfw" .!= False
|
2020-07-09 15:45:57 -04:00
|
|
|
no = fmap NoNsfw . parseYAML
|
|
|
|
|
|
|
|
|
2020-07-07 20:52:01 -04:00
|
|
|
instance FromYAML Day where
|
|
|
|
parseYAML = YAML.withStr "date" \str ->
|
|
|
|
case readMaybe $ Text.unpack str of
|
|
|
|
Just d -> pure d
|
|
|
|
Nothing -> fail $ "couldn't parse date " ++ show str
|
2020-07-15 05:35:32 -04:00
|
|
|
|
|
|
|
instance {-# OVERLAPPING #-} FromYAML String where
|
|
|
|
parseYAML y = Text.unpack <$> parseYAML y
|