Move command-line argument parsing to another function

This commit is contained in:
Dimitri Lozeve 2022-09-12 20:41:30 +02:00
parent aacd35d766
commit 0329f4d696

38
sncf.ss
View file

@ -2,16 +2,32 @@
(export main)
(import :std/format
:std/getopt
(import :std/getopt
:std/srfi/19
:std/sugar
:dlozeve/fancy/format
:dlozeve/sncf/api
:dlozeve/sncf/display
:dlozeve/sncf/mattermost)
(def (main . args)
(define-values (station datetime mattermost-url mattermost-channel) (parse-arguments args))
(def sncf-key (getenv "SNCF_AUTH_KEY" #f))
(unless sncf-key
(display "No SNCF API authentication key found. Set the SNCF_AUTH_KEY environment variable.\n"
(current-error-port))
(exit 1))
(define-values (station-name station-id)
(if station
(get-station-id sncf-key station)
(values "Vernon - Giverny (Vernon)" "stop_area:SNCF:87415604")))
(define-values (departures disruptions) (get-departures sncf-key station-id datetime))
(display-all departures disruptions station-name datetime)
(when mattermost-url
(let ((tab-str-md
(with-output-to-string (lambda () (display-all departures disruptions station-name datetime)))))
(post-to-mattermost mattermost-url tab-str-md channel: mattermost-channel))))
(def (parse-arguments args)
(def gopt (getopt (optional-argument 'station help: "Name of the station (default Vernon-Giverny).")
(optional-argument 'datetime help: "Date and time (ISO 8601 format).")
(flag 'help "-h" "--help" help: "Display this help.")
@ -28,21 +44,7 @@
(when help
(getopt-display-help gopt "sncf")
(exit 0))
(def sncf-key (getenv "SNCF_AUTH_KEY" #f))
(unless sncf-key
(display "No SNCF API authentication key found. Set the SNCF_AUTH_KEY environment variable.\n"
(current-error-port))
(exit 1))
(define-values (station-name station-id)
(if station
(get-station-id sncf-key station)
(values "Vernon - Giverny (Vernon)" "stop_area:SNCF:87415604")))
(let-values (((departures disruptions) (get-departures sncf-key station-id datetime)))
(display-all departures disruptions station-name datetime)
(when mattermost-url
(let ((tab-str-md
(with-output-to-string (lambda () (display-all departures disruptions station-name datetime)))))
(post-to-mattermost mattermost-url tab-str-md channel: mattermost-channel)))))
(values station datetime mattermost-url mattermost-channel))
(catch (getopt-error? exn)
(getopt-display-help exn "sncf" (current-error-port))
(exit 1))