aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/apps/PromptMessage.hs
blob: f5afd711f4cb7954b2cc137243d852837afbf6dc (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                                             
                         

                    

                   


                 

                           
                                              
 


                                                                                     
       
                                           
                                                                                

                                                     
 







                                                                                

                                                   
                                                                         

                                           
-- |
-- Copyright   : (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
-- License     : MIT
-- Maintainer  : Egor.Tensin@gmail.com
-- Stability   : experimental
-- Portability : portable

module PromptMessage
    ( oldNewMessage
    , newMessage
    , wipeMessage
    ) where

import Text.Printf (printf)

import qualified WindowsEnv.Environment as Env

oldNewMessage :: Env.Profile -> Env.VarName -> Env.VarValue -> Env.VarValue -> String
oldNewMessage profile name oldValue newValue =
    descrMsg ++ oldValueMsg ++ newValueMsg
  where
    profileKey = Env.profileKeyPath profile
    descrMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey)
    oldValueMsg = printf "\tOld value: %s\n" oldValue
    newValueMsg = printf "\tNew value: %s\n" newValue

newMessage :: Env.Profile -> Env.VarName -> Env.VarValue -> String
newMessage profile name newValue =
    descrMsg ++ newValueMsg
  where
    profileKey = Env.profileKeyPath profile
    descrMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey)
    newValueMsg = printf "\tNew value: %s\n" newValue

wipeMessage :: Env.Profile -> Env.VarName -> String
wipeMessage profile name =
    printf "Deleting variable '%s' from '%s'...\n" name (show profileKey)
  where
    profileKey = Env.profileKeyPath profile