aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apps/AddPath.hs
blob: 5203723c389c93879233cb1b427804f2ccb3e4d2 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{-
 - 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 (when)

import Options.Applicative

import qualified Environment

data Options = Options
    { name :: String
    , global :: Bool
    , paths :: [String]
    } deriving (Eq, Show)

options :: Parser Options
options = Options
    <$> nameOption
    <*> globalOption
    <*> pathArgs
  where
    nameOption = strOption $
        long "name" <> short 'n' <> metavar "NAME" <> value "PATH" <>
        help "Specify variable name ('PATH' by default)"
    globalOption = switch $
        long "global" <> short 'g' <>
        help "Whether to add for all users"
    pathArgs = many $ argument str $
        metavar "PATH" <>
        help "Directory path(s)"

main :: IO ()
main = execParser parser >>= addPath
  where
    parser = info (helper <*> options) $
        fullDesc <> progDesc "Add directories to your PATH"

addPath :: Options -> IO ()
addPath options = do
    missingPaths <- dropIncludedPaths $ paths options
    when (not $ null missingPaths) $ do
        oldPath <- Environment.query env $ name options
        Environment.engraveWithPrompt env (name options) $ Environment.pathJoin $ missingPaths ++ [oldPath]
  where
    dropIncludedPaths paths = do
        currentPath <- Environment.query env $ name options
        return $ filter (flip notElem $ Environment.pathSplit currentPath) paths
    env | global options = Environment.AllUsers
        | otherwise      = Environment.CurrentUser