2018-12-06 22:03:38 -05:00
|
|
|
{-
|
|
|
|
|
|
|
|
passman
|
|
|
|
Copyright (C) 2018 Jonathan Lamothe
|
|
|
|
<jlamothe1980@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2018-12-06 14:31:36 -05:00
|
|
|
|
2018-12-06 22:03:38 -05:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this program. If not, see
|
|
|
|
<https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-}
|
2018-12-07 21:07:42 -05:00
|
|
|
|
2018-12-06 22:03:38 -05:00
|
|
|
module Main where
|
2018-12-06 14:31:36 -05:00
|
|
|
|
2018-12-07 21:07:42 -05:00
|
|
|
import System.Console.HCL
|
|
|
|
( Request (..)
|
|
|
|
, execReq
|
|
|
|
, prompt
|
|
|
|
, reqFail
|
|
|
|
, reqIO
|
|
|
|
, reqPassword
|
|
|
|
, required
|
|
|
|
)
|
|
|
|
|
2018-12-06 14:31:36 -05:00
|
|
|
main :: IO ()
|
2018-12-07 21:07:42 -05:00
|
|
|
main = execReq getMasterPass
|
|
|
|
|
|
|
|
getMasterPass :: Request String
|
|
|
|
getMasterPass = do
|
|
|
|
p1 <- required $ prompt "master password: " reqPassword
|
|
|
|
p2 <- required $ prompt "confirm master password: " reqPassword
|
|
|
|
if p1 /= p2
|
|
|
|
then do
|
|
|
|
reqIO $ putStrLn "passwords do not match"
|
|
|
|
reqFail
|
|
|
|
else return p1
|
2018-12-06 22:03:38 -05:00
|
|
|
|
|
|
|
--jl
|