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





                                                            
                        
 
                                 

                                       

                          
 
                            
 

                      
                      
                                      
                       
                       
                                         


                         
                   
                  

                     
       
                             
                                                                     



                                                
                            
                                     
                                   
                                        
                         
                                    
 
             



                                                                
 

                              


                                           



                                    

                                   

                                                     




                                                                    

                                                                                         

                               


                                      
{-
 - Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
 - This file is licensed under the terms of the MIT License.
 - See LICENSE.txt for details.
-}

module Main (main) where

import Control.Monad (void, when)
import Data.List     ((\\))
import Data.Maybe    (fromJust, isJust)

import Options.Applicative

import qualified Environment

import qualified Utils

data Options = Options
    { optName   :: Environment.VarName
    , optYes    :: Bool
    , optGlobal :: Bool
    , optPaths  :: [Environment.VarValue]
    } deriving (Eq, Show)

options = Options
    <$> optNameDesc
    <*> optYesDesc
    <*> optGlobalDesc
    <*> optPathsDesc
  where
    optNameDesc = strOption $
        long "name" <> short 'n' <> metavar "NAME" <> value "PATH" <>
        help "Variable name ('PATH' by default)"
    optYesDesc = switch $
        long "yes" <> short 'y' <>
        help "Skip confirmation prompt"
    optGlobalDesc = switch $
        long "global" <> short 'g' <>
        help "Remove for all users"
    optPathsDesc = many $ argument str $
        metavar "PATH" <>
        help "Directories to remove"

main :: IO ()
main = execParser parser >>= removePath
  where
    parser = info (helper <*> options) $
        fullDesc <> progDesc "Remove directories from your PATH"

removePath :: Options -> IO ()
removePath options = do
    removePathFrom Environment.CurrentUser
    when forAllUsers $ do
        removePathFrom Environment.AllUsers
  where
    varName = optName options
    pathsToRemove = optPaths options

    forAllUsers = optGlobal options

    removePathFrom profile = do
        oldValue <- Environment.query profile varName
        when (isJust oldValue) $ do
            let oldPaths = Environment.pathSplit $ fromJust oldValue
            let newPaths = oldPaths \\ pathsToRemove
            when (length oldPaths /= length newPaths) $ do
                let newValue = Environment.pathJoin newPaths
                let promptBanner = Utils.engraveBanner profile varName oldValue newValue
                void $ prompt promptBanner $ Environment.engrave profile varName newValue

    skipPrompt = optYes options
    prompt = if skipPrompt
        then const Utils.withoutPrompt
        else Utils.withPrompt