Skip to content

Instantly share code, notes, and snippets.

@HirotoShioi
Created May 9, 2018 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HirotoShioi/e88f3d1622d7d7961e906191263d3d31 to your computer and use it in GitHub Desktop.
Save HirotoShioi/e88f3d1622d7d7961e906191263d3d31 to your computer and use it in GitHub Desktop.
module CLI
( CLI(..)
, getCliArgs
) where
import Data.Semigroup ((<>))
import Options.Applicative (Parser, argument, auto, command, execParser, fullDesc, header,
help, helper, info, infoOption, long, metavar, progDesc,
strOption, subparser, (<**>))
import Paths_log_classifier (version)
data CLI
= CollectEmails -- ^ Collect email addresses
| ProcessTicket Int -- ^ Process ticket of an given ticket id
| ProcessTickets -- ^ Procss all the tickets in the *******
| RawRequest String -- ^ Raw request to the given url
| ShowStatistics -- ^ Show statistics
deriving (Show)
-- | Parser for ProcessTicket
cmdProcessTicket :: Parser CLI
cmdProcessTicket = ProcessTicket <$> argument auto
( metavar "TICKET_ID"
<> help "Specify ticket id to analyze") --ここのhelpテキストを--helpコマンド入力時に表示させたい。
-- | Parser for RawRequest
cmdRawRequest :: Parser CLI
cmdRawRequest = RawRequest <$> strOption
( metavar "URL"
<> help "Specify url to request")
-- | Parser for CLI commands
cli :: Parser CLI
cli = subparser $ mconcat
[
command "collectEmails" (info (pure CollectEmails)
(progDesc "Collect emails requested by single user"))
, command "processTickets" (info (pure ProcessTickets)
(progDesc "Process all the tickets i.e add comments, tags."))
, command "processTicket" (info cmdProcessTicket
(progDesc "Process ****** ticket of an given <TICKET_ID>"))
, command "rawRequest" (info cmdRawRequest
(progDesc "Raw request to the given url"))
, command "showStats" (info (pure ShowStatistics)
(progDesc "Print list of ticket Ids that agent has been assigned"))
]
getCliArgs :: IO CLI
getCliArgs = execParser opts
where
opts = info (cli <**> helper <**> versionHelper)
( fullDesc
<> header "Log classifier"
<> progDesc "Client for peforming analysis on ******"
)
versionHelper =
infoOption
("Log classifier version" <> show version)
(long "version" <> help "Show version")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment