aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apps/PromptMessage.hs
blob: 27851cfa5a57e504eb4af6b1a7afd70eab9b3f1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- |
-- Copyright   : (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
-- License     : MIT
-- Maintainer  : Egor.Tensin@gmail.com
-- Stability   : experimental

module PromptMessage
    ( engraveMessage
    , wipeMessage
    ) where

import Text.Printf (printf)

import qualified Windows.Environment as Env

engraveMessage :: Env.Profile -> Env.VarName -> Env.VarValue -> Env.VarValue -> String
engraveMessage profile name oldValue newValue =
    descriptionMsg ++ oldValueMsg ++ newValueMsg
  where
    profileKey = Env.profileKeyPath profile

    descriptionMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey)

    oldValueMsg = printf "\tOld value: %s\n" oldValue
    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