-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathOptions.hs
140 lines (128 loc) · 3.76 KB
/
Options.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
module Foliage.Options
( parseCommand,
Command (..),
BuildOptions (..),
SignOptions (..),
ImportIndexOptions (..),
ImportFilter (..),
)
where
import Development.Shake.Classes (Binary, Hashable, NFData)
import Foliage.Time
import GHC.Generics
import Options.Applicative
data Command
= CreateKeys FilePath
| Build BuildOptions
| ImportIndex ImportIndexOptions
parseCommand :: IO Command
parseCommand =
customExecParser
(prefs showHelpOnEmpty)
$ info
(optionsParser <**> helper)
( fullDesc
<> progDesc "foliage"
<> header "foliage - a builder for static Hackage repositories"
)
optionsParser :: Parser Command
optionsParser =
hsubparser $
command "create-keys" (info createKeysCommand (progDesc "Create TUF keys"))
<> command "build" (info buildCommand (progDesc "Build repository"))
<> command "import-index" (info importIndexCommand (progDesc "Import from Hackage index"))
data SignOptions
= SignOptsSignWithKeys FilePath
| SignOptsDon'tSign
deriving (Show, Eq, Generic)
deriving anyclass (Binary, Hashable, NFData)
data BuildOptions = BuildOptions
{ buildOptsSignOpts :: SignOptions,
buildOptsCurrentTime :: Maybe UTCTime,
buildOptsExpireSignaturesOn :: Maybe UTCTime,
buildOptsInputDir :: FilePath,
buildOptsOutputDir :: FilePath
}
buildCommand :: Parser Command
buildCommand =
Build
<$> ( BuildOptions
<$> signOpts
<*> optional
( option
(maybeReader iso8601ParseM)
( long "current-time"
<> metavar "TIME"
<> help "Set current time"
<> showDefault
)
)
<*> optional
( option
(maybeReader iso8601ParseM)
( long "expire-signatures-on"
<> metavar "TIME"
<> help "Set an expiry date on TUF signatures"
)
)
<*> strOption
( long "input-directory"
<> metavar "INPUT"
<> help "Repository input directory"
<> showDefault
<> value "_sources"
)
<*> strOption
( long "output-directory"
<> metavar "OUTPUT"
<> help "Repository output directory"
<> showDefault
<> value "_repo"
)
)
where
signOpts =
pure SignOptsDon'tSign
<|> ( SignOptsSignWithKeys
<$> strOption
( long "sign-with-keys"
<> metavar "KEYS"
<> help "TUF keys location"
<> value "_keys"
)
)
createKeysCommand :: Parser Command
createKeysCommand =
CreateKeys
<$> strOption
( long "keys"
<> metavar "KEYS"
<> help "TUF keys location"
<> showDefault
<> value "_keys"
)
data ImportFilter = ImportFilter String (Maybe String)
newtype ImportIndexOptions = ImportIndexOptions
{ importOptsFilter :: Maybe ImportFilter
}
importIndexCommand :: Parser Command
importIndexCommand =
ImportIndex . ImportIndexOptions
<$> optional
( ImportFilter
<$> strOption
( long "package-name"
<> metavar "NAME"
<> help "package name"
)
<*> optional
( strOption
( long "package-version"
<> metavar "VERSION"
<> help "package version"
)
)
)