githud-3.0.0: src/GitHUD.hs
{-# LANGUAGE OverloadedStrings #-}
module GitHUD (
githud,
githudd
) where
import Control.Monad (when)
import Control.Monad.Reader (runReader)
import Data.Text
import System.Directory (getCurrentDirectory)
import System.Environment (getArgs)
import System.Posix.Files (fileExist)
import System.Posix.User (getRealUserID, getUserEntryForID, UserEntry(..))
import System.Process (callProcess)
import GitHUD.Config.Parse
import GitHUD.Config.Types
import GitHUD.Daemon.Runner
import GitHUD.Terminal.Prompt
import GitHUD.Terminal.Types
import GitHUD.Git.Parse.Base
import GitHUD.Git.Command
import GitHUD.Types
githud :: IO ()
githud = do
-- Exit ASAP if we are not in a git repository
isGit <- checkInGitDirectory
when isGit $ do
shell <- processArguments getArgs
config <- getAppConfig
curDir <- getCurrentDirectory
when (confRunFetcherDaemon config) (callProcess "githudd" [curDir])
repoState <- getGitRepoState
let prompt = runReader buildPromptWithConfig $ buildOutputConfig shell repoState config
-- Necessary to use putStrLn to properly terminate the output (needs the CR)
putStrLn $ unpack (strip (pack prompt))
processArguments :: IO [String]
-> IO Shell
processArguments args = getShell <$> args
getShell :: [String]
-> Shell
getShell ("zsh":_) = ZSH
getShell ("bash":_) = BASH
getShell ("tmux":_) = TMUX
getShell ("none":_) = NONE
getShell _ = Other
getAppConfig :: IO Config
getAppConfig = do
userEntry <- getRealUserID >>= getUserEntryForID
let configFilePath = (homeDirectory userEntry) ++ "/.githudrc"
configFilePresent <- fileExist configFilePath
if configFilePresent
then parseConfigFile configFilePath
else return defaultConfig
githudd :: IO()
githudd = do
mArg <- processDaemonArguments <$> getArgs
config <- getAppConfig
runDaemon config mArg
processDaemonArguments :: [String]
-> Maybe String
processDaemonArguments [] = Nothing
processDaemonArguments (fst:_) = Just fst