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-09 00:35:27 -05:00
|
|
|
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
|
2018-12-06 22:03:38 -05:00
|
|
|
module Main where
|
2018-12-06 14:31:36 -05:00
|
|
|
|
2018-12-09 00:35:27 -05:00
|
|
|
import Control.Lens (makeLenses, set, view)
|
|
|
|
import qualified Control.Monad.Trans.State as S
|
|
|
|
import Control.Monad (join)
|
|
|
|
import Control.Monad.Trans.Class (lift)
|
2018-12-17 00:04:43 -05:00
|
|
|
import Data.Foldable (mapM_)
|
2018-12-09 00:35:27 -05:00
|
|
|
import Data.Maybe (fromJust)
|
2018-12-18 15:00:18 -05:00
|
|
|
import System.Console.HCL
|
|
|
|
( Request (..)
|
|
|
|
, prompt
|
|
|
|
, reqDefault
|
|
|
|
, reqFail
|
|
|
|
, reqIO
|
|
|
|
, reqMenu
|
|
|
|
, reqPassword
|
|
|
|
, required
|
|
|
|
, runRequest
|
|
|
|
)
|
|
|
|
import System.Random (StdGen, getStdGen)
|
|
|
|
|
|
|
|
import Password
|
2018-12-09 00:35:27 -05:00
|
|
|
|
|
|
|
data Status = Status
|
2018-12-18 15:00:18 -05:00
|
|
|
{ _gen :: StdGen
|
|
|
|
, _masterPass :: String
|
|
|
|
, _database :: PWDatabase
|
2018-12-09 00:35:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
makeLenses ''Status
|
2018-12-07 21:07:42 -05:00
|
|
|
|
2018-12-06 14:31:36 -05:00
|
|
|
main :: IO ()
|
2018-12-18 15:00:18 -05:00
|
|
|
main = runRequest setup >>= mapM_ (S.evalStateT mainMenu)
|
2018-12-07 21:07:42 -05:00
|
|
|
|
2018-12-18 15:00:18 -05:00
|
|
|
setup :: Request Status
|
|
|
|
setup = do
|
|
|
|
g <- reqIO getStdGen
|
|
|
|
mp <- getMasterPass
|
|
|
|
return $ Status g mp newPWDatabase
|
2018-12-09 00:35:27 -05:00
|
|
|
|
2018-12-18 15:00:18 -05:00
|
|
|
getMasterPass :: Request String
|
2018-12-07 21:07:42 -05:00
|
|
|
getMasterPass = do
|
2018-12-18 15:00:18 -05:00
|
|
|
p1 <- required $ prompt "master password: " reqPassword
|
|
|
|
p2 <- required $ prompt "confirm master password: " reqPassword
|
2018-12-07 21:07:42 -05:00
|
|
|
if p1 /= p2
|
|
|
|
then do
|
2018-12-18 15:00:18 -05:00
|
|
|
reqIO $ putStrLn "passwords do not match"
|
|
|
|
reqFail
|
2018-12-07 21:07:42 -05:00
|
|
|
else return p1
|
2018-12-06 22:03:38 -05:00
|
|
|
|
2018-12-09 00:35:27 -05:00
|
|
|
mainMenu :: S.StateT Status IO ()
|
2018-12-17 00:04:43 -05:00
|
|
|
mainMenu =
|
2018-12-09 00:35:27 -05:00
|
|
|
menu "Main Menu"
|
|
|
|
[ ( "change master password", changeMasterPass )
|
2018-12-09 14:31:58 -05:00
|
|
|
, ( "lock session", lockSession )
|
2018-12-09 00:35:27 -05:00
|
|
|
, ( "quit", quit )
|
|
|
|
]
|
|
|
|
|
|
|
|
changeMasterPass :: S.StateT Status IO ()
|
|
|
|
changeMasterPass = do
|
|
|
|
oldP <- S.gets $ view masterPass
|
2018-12-18 15:00:18 -05:00
|
|
|
newP <- req $ reqDefault getMasterPass oldP
|
2018-12-09 00:35:27 -05:00
|
|
|
S.modify $ set masterPass newP
|
|
|
|
mainMenu
|
|
|
|
|
2018-12-09 14:31:58 -05:00
|
|
|
lockSession :: S.StateT Status IO ()
|
|
|
|
lockSession = do
|
|
|
|
lift $ putStrLn "\nsession locked"
|
|
|
|
pass <- S.gets $ view masterPass
|
2018-12-18 15:00:18 -05:00
|
|
|
mx <- lift $ runRequest $ prompt "password: " reqPassword
|
2018-12-09 14:31:58 -05:00
|
|
|
case mx of
|
|
|
|
Nothing -> lockSession
|
|
|
|
Just x -> if x == pass
|
|
|
|
then mainMenu
|
|
|
|
else lockSession
|
|
|
|
|
2018-12-09 00:35:27 -05:00
|
|
|
quit :: S.StateT Status IO ()
|
|
|
|
quit = return ()
|
|
|
|
|
2018-12-09 11:23:50 -05:00
|
|
|
menu
|
|
|
|
:: String
|
|
|
|
-> [(String, S.StateT Status IO a)]
|
|
|
|
-> S.StateT Status IO a
|
2018-12-18 15:00:18 -05:00
|
|
|
menu title = reqState . prompt ("\n*** " ++ title ++ " ***") .
|
|
|
|
reqMenu . map menuItem
|
2018-12-09 00:35:27 -05:00
|
|
|
|
2018-12-18 15:00:18 -05:00
|
|
|
menuItem :: (String, a) -> (String, Request a)
|
2018-12-09 00:35:27 -05:00
|
|
|
menuItem (str, x) = (str, return x)
|
|
|
|
|
2018-12-18 15:00:18 -05:00
|
|
|
reqState :: Request (S.StateT s IO a) -> S.StateT s IO a
|
2018-12-09 00:35:27 -05:00
|
|
|
reqState = join . req
|
|
|
|
|
2018-12-18 15:00:18 -05:00
|
|
|
req :: Request a -> S.StateT s IO a
|
|
|
|
req = lift . fmap fromJust . runRequest . required
|
2018-12-09 00:35:27 -05:00
|
|
|
|
2018-12-06 22:03:38 -05:00
|
|
|
--jl
|