REF add comments and split some code into smaller functions
This commit is contained in:
parent
403c8d6e24
commit
1ae1510091
|
@ -2,6 +2,13 @@
|
||||||
{-# LANGUAGE OverloadedStrings #-}
|
{-# LANGUAGE OverloadedStrings #-}
|
||||||
{-# LANGUAGE RecordWildCards #-}
|
{-# LANGUAGE RecordWildCards #-}
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
-- | rofi-dev - a rofi prompt for mountable devices
|
||||||
|
--
|
||||||
|
-- Like all "mount helpers" this is basically a wrapper for low-level utilities
|
||||||
|
-- the mount things from the command line. It also creates/destroys mountpoint
|
||||||
|
-- paths given a specific location for such mountpoints.
|
||||||
|
|
||||||
module Main (main) where
|
module Main (main) where
|
||||||
|
|
||||||
import Control.Monad
|
import Control.Monad
|
||||||
|
@ -31,35 +38,20 @@ import System.Process
|
||||||
import UnliftIO.Exception
|
import UnliftIO.Exception
|
||||||
|
|
||||||
main :: IO ()
|
main :: IO ()
|
||||||
main = check >> getArgs >>= parse
|
main = getArgs >>= parse
|
||||||
|
|
||||||
type Password = IO (Maybe String)
|
parse :: [String] -> IO ()
|
||||||
|
parse args = case getOpt Permute options args of
|
||||||
data MountConf = MountConf
|
(o, n, []) -> initMountConf n >>= \i -> runMounts $ foldl (flip id) i o
|
||||||
{ credentials :: M.Map String Password
|
(_, _, errs) -> ioError $ userError $ concat errs ++ usageInfo h options
|
||||||
, mountDir :: FilePath
|
|
||||||
, rofiArgs :: [String]
|
|
||||||
}
|
|
||||||
|
|
||||||
instance RofiConf MountConf where
|
|
||||||
defArgs MountConf { rofiArgs = a } = a
|
|
||||||
|
|
||||||
|
|
||||||
type DevicePasswords = M.Map String Password
|
|
||||||
|
|
||||||
initMountConf :: [String] -> IO MountConf
|
|
||||||
initMountConf a = conf <$> getEffectiveUserName
|
|
||||||
where
|
where
|
||||||
conf u = MountConf
|
h = "Usage: rofi-dev [OPTIONS] [-- ROFI-OPTIONS]"
|
||||||
{ credentials = M.empty
|
|
||||||
, mountDir = "/media" </> u
|
|
||||||
, rofiArgs = a
|
|
||||||
}
|
|
||||||
|
|
||||||
|
-- TODO add option to look up password in bitwarden vault
|
||||||
options :: [OptDescr (MountConf -> MountConf)]
|
options :: [OptDescr (MountConf -> MountConf)]
|
||||||
options =
|
options =
|
||||||
[ Option ['s'] ["secret"]
|
[ Option ['s'] ["secret"]
|
||||||
(ReqArg (\s m -> m { credentials = addGetSecret (credentials m) s } ) "SECRET")
|
(ReqArg (\s m -> m { passwords = addSecret (passwords m) s } ) "SECRET")
|
||||||
$ wrap "Use libsecret to retrieve password for DIR using ATTR/VAL pairs. \
|
$ wrap "Use libsecret to retrieve password for DIR using ATTR/VAL pairs. \
|
||||||
\The pairs will be supplied to a 'secret-tool lookup' call. \
|
\The pairs will be supplied to a 'secret-tool lookup' call. \
|
||||||
\ Argument is formatted like 'DIR:ATTR1=VAL1,ATTR2=VAL2...'"
|
\ Argument is formatted like 'DIR:ATTR1=VAL1,ATTR2=VAL2...'"
|
||||||
|
@ -72,53 +64,68 @@ options =
|
||||||
\mountpoint does not already exist for them. If not given this will \
|
\mountpoint does not already exist for them. If not given this will \
|
||||||
\default to '/media/USER'."
|
\default to '/media/USER'."
|
||||||
, Option ['p'] ["password"]
|
, Option ['p'] ["password"]
|
||||||
(ReqArg (\s m -> m { credentials = addGetPrompt (credentials m) s } ) "DIR")
|
(ReqArg (\s m -> m { passwords = addPwdPrompt (passwords m) s } ) "DIR")
|
||||||
"Prompt for password when mounting DIR."
|
"Prompt for password when mounting DIR."
|
||||||
]
|
]
|
||||||
where
|
where
|
||||||
wrap = unpack . wrapText defaultWrapSettings 40
|
wrap = unpack . wrapText defaultWrapSettings 40
|
||||||
|
|
||||||
parse :: [String] -> IO ()
|
--------------------------------------------------------------------------------
|
||||||
parse args = case getOpt Permute options args of
|
-- | Static configuration
|
||||||
(o, n, []) -> initMountConf n >>= \i -> runMounts $ foldl (flip id) i o
|
--
|
||||||
(_, _, errs) -> ioError $ userError $ concat errs ++ usageInfo h options
|
-- This is defined by the mount options on the command line, and holds:
|
||||||
where
|
-- - a map between mountpoints and a means to get passwords when mounting those
|
||||||
h = "Usage: rofi-dev [OPTIONS] [-- ROFI-OPTIONS]"
|
-- mountpoints
|
||||||
|
-- - a mount directory where mountpoints will be created if needed (defaults
|
||||||
|
-- to '/media/USER'
|
||||||
|
-- - any arguments to be passed to the rofi command
|
||||||
|
|
||||||
addGetSecret :: DevicePasswords -> String -> DevicePasswords
|
type Password = IO (Maybe String)
|
||||||
addGetSecret pwds c = case splitPrefix c of
|
|
||||||
(dir, ":", r) -> addPasswordGetter pwds dir $ runGetSecret
|
type MountpointPasswords = M.Map String Password
|
||||||
$ mapMaybe (toCell . splitEq) $ splitBy ',' r
|
|
||||||
|
data MountConf = MountConf
|
||||||
|
{ passwords :: MountpointPasswords
|
||||||
|
, mountDir :: FilePath
|
||||||
|
, rofiArgs :: [String]
|
||||||
|
}
|
||||||
|
|
||||||
|
instance RofiConf MountConf where
|
||||||
|
defArgs MountConf { rofiArgs = a } = a
|
||||||
|
|
||||||
|
initMountConf :: [String] -> IO MountConf
|
||||||
|
initMountConf a = conf <$> getEffectiveUserName
|
||||||
|
where
|
||||||
|
conf u = MountConf
|
||||||
|
{ passwords = M.empty
|
||||||
|
, mountDir = "/media" </> u
|
||||||
|
, rofiArgs = a
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
-- | Password-getting functions
|
||||||
|
|
||||||
|
addSecret :: MountpointPasswords -> String -> MountpointPasswords
|
||||||
|
addSecret pwds c = case splitPrefix c of
|
||||||
|
(dir, ":", r) -> M.insert dir (runSecret $ fromCommaSepString' r) pwds
|
||||||
_ -> pwds
|
_ -> pwds
|
||||||
where
|
where
|
||||||
splitPrefix s = s =~ (":" :: String) :: (String, String, String)
|
splitPrefix s = s =~ (":" :: String) :: (String, String, String)
|
||||||
splitEq e = e =~ ("=" :: String) :: (String, String, String)
|
|
||||||
toCell (k, "=", v) = Just (k, v)
|
|
||||||
toCell _ = Nothing
|
|
||||||
|
|
||||||
runGetSecret :: [(String, String)] -> Password
|
runSecret :: [(String, String)] -> Password
|
||||||
runGetSecret kvs = readCmdSuccess "secret-tool" ("lookup":kvs') ""
|
runSecret kvs = readCmdSuccess "secret-tool" ("lookup":kvs') ""
|
||||||
where
|
where
|
||||||
kvs' = concatMap (\(k, v) -> [k, v]) kvs
|
kvs' = concatMap (\(k, v) -> [k, v]) kvs
|
||||||
|
|
||||||
addGetPrompt :: DevicePasswords -> String -> DevicePasswords
|
addPwdPrompt :: MountpointPasswords -> String -> MountpointPasswords
|
||||||
addGetPrompt pwds dir = addPasswordGetter pwds dir readPassword
|
addPwdPrompt pwds dir = M.insert dir readPassword pwds
|
||||||
|
|
||||||
addPasswordGetter :: DevicePasswords -> String -> IO (Maybe String) -> DevicePasswords
|
--------------------------------------------------------------------------------
|
||||||
addPasswordGetter pwds key f = M.insert key f pwds
|
-- | Main prompt
|
||||||
|
--
|
||||||
-- runGetBwPwd :: [(String, String)] -> IO (Maybe String)
|
-- This command will have one Rofi prompt and will display all available
|
||||||
-- runGetBwPwd = undefined
|
-- mounts grouped by device type (eg removable, sshfs, cifs, etc). I like
|
||||||
|
-- pretty things, so ensure the entries are aligned properly as well
|
||||||
-- getPassword :: Credentials -> IO (Maybe String)
|
|
||||||
-- getPassword NoCredentials = return Nothing
|
|
||||||
-- getPassword (Secret kvs) = do
|
|
||||||
-- let kvs' = concat [[a, b] | (a, b) <- M.toList kvs]
|
|
||||||
-- readCmdSuccess "secret-tool" ("lookup":kvs') ""
|
|
||||||
|
|
||||||
-- TODO
|
|
||||||
check :: IO ()
|
|
||||||
check = return ()
|
|
||||||
|
|
||||||
runMounts :: MountConf -> IO ()
|
runMounts :: MountConf -> IO ()
|
||||||
runMounts c = runRofiIO c $ runPrompt =<< getGroups
|
runMounts c = runRofiIO c $ runPrompt =<< getGroups
|
||||||
|
@ -153,65 +160,17 @@ alignEntries :: RofiActions c -> RofiActions c
|
||||||
alignEntries = O.fromList . withKeys . O.assocs
|
alignEntries = O.fromList . withKeys . O.assocs
|
||||||
where
|
where
|
||||||
withKeys as = let (ks, vs) = unzip as in zip (align ks) vs
|
withKeys as = let (ks, vs) = unzip as in zip (align ks) vs
|
||||||
align ks = fmap (intercalate alignSep)
|
align = fmap (intercalate alignSep)
|
||||||
$ transpose
|
. transpose
|
||||||
$ mapToLast pad
|
. mapToLast pad
|
||||||
$ transpose
|
. transpose
|
||||||
$ fmap (splitOn alignSepPre) ks
|
. fmap (splitOn alignSepPre)
|
||||||
pad xs = let m = getMax xs in fmap (\x -> take m (x ++ repeat ' ')) xs
|
pad xs = let m = getMax xs in fmap (\x -> take m (x ++ repeat ' ')) xs
|
||||||
getMax = maximum . fmap length
|
getMax = maximum . fmap length
|
||||||
mapToLast _ [] = []
|
mapToLast _ [] = []
|
||||||
mapToLast _ [x] = [x]
|
mapToLast _ [x] = [x]
|
||||||
mapToLast f (x:xs) = f x : mapToLast f xs
|
mapToLast f (x:xs) = f x : mapToLast f xs
|
||||||
|
|
||||||
-- | Class and methods for type representing mountable devices
|
|
||||||
class Mountable a where
|
|
||||||
-- | Mount the given type (or dismount if False is passed)
|
|
||||||
mount :: a -> Bool -> RofiIO MountConf ()
|
|
||||||
|
|
||||||
-- | Check if the mounting utilities are present
|
|
||||||
allInstalled :: a -> RofiIO MountConf Bool
|
|
||||||
|
|
||||||
-- | Return a string to go in the Rofi menu for the given type
|
|
||||||
fmtEntry :: a -> String
|
|
||||||
|
|
||||||
-- | Determine if the given type is mounted or not
|
|
||||||
isMounted :: a -> RofiIO MountConf Bool
|
|
||||||
|
|
||||||
-- | Given a mountable type, return a rofi action (string to go in the
|
|
||||||
-- Rofi prompt and an action to perform when it is selected)
|
|
||||||
mkAction :: a -> RofiIO MountConf (String, RofiIO MountConf ())
|
|
||||||
mkAction dev = do
|
|
||||||
m <- isMounted dev
|
|
||||||
i <- allInstalled dev
|
|
||||||
let a = when i $ mount dev m
|
|
||||||
let s = mountedPrefix m i ++ fmtEntry dev
|
|
||||||
return (s, a)
|
|
||||||
where
|
|
||||||
mountedPrefix False True = " "
|
|
||||||
mountedPrefix True True = "* "
|
|
||||||
mountedPrefix _ False = "! "
|
|
||||||
|
|
||||||
-- | Key/val pairs to represent mount options. A Nothing for the value signifies
|
|
||||||
-- a standalone option (eg 'rw' and 'ro')
|
|
||||||
type MountOptions = M.Map String (Maybe String)
|
|
||||||
|
|
||||||
-- | Given a string of comma-separated 'key=val' pairs, return a mount options
|
|
||||||
-- map
|
|
||||||
parseMountOptions :: String -> MountOptions
|
|
||||||
parseMountOptions s = M.fromList $ toCell . splitEq <$> splitBy ',' s
|
|
||||||
where
|
|
||||||
splitEq e = e =~ ("=" :: String) :: (String, String, String)
|
|
||||||
toCell (k, "=", v) = (k, Just v)
|
|
||||||
toCell (k, _, _) = (k, Nothing)
|
|
||||||
|
|
||||||
-- -- | Given a mount options map, return a string of comma separated items
|
|
||||||
-- fmtMountOptions :: MountOptions -> String
|
|
||||||
-- fmtMountOptions = intercalate "," . fmap fromCell . M.toList
|
|
||||||
-- where
|
|
||||||
-- fromCell (k, Just v) = k ++ "=" ++ v
|
|
||||||
-- fromCell (k, Nothing) = k
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
-- | Removable devices
|
-- | Removable devices
|
||||||
--
|
--
|
||||||
|
@ -225,21 +184,15 @@ data Removable = Removable
|
||||||
deriving (Eq, Show)
|
deriving (Eq, Show)
|
||||||
|
|
||||||
instance Mountable Removable where
|
instance Mountable Removable where
|
||||||
-- | (Un)mount the device using udiskctl
|
mount Removable { deviceSpec = d, label = l } m =
|
||||||
mount Removable { deviceSpec = d, label = l } m = io $ do
|
io $ runMountNotify "mount" [c, "-b", d] l m
|
||||||
res <- readCmdEither "udisksctl" [cmd, "-b", d] ""
|
|
||||||
notifyMounted (isRight res) m l
|
|
||||||
where
|
where
|
||||||
cmd = if m then "unmount" else "mount"
|
c = if m then "unmount" else "mount"
|
||||||
|
|
||||||
-- | Need udisksctl to mount and umount
|
|
||||||
allInstalled _ = fmap isJust $ io $ findExecutable "udisksctl"
|
allInstalled _ = fmap isJust $ io $ findExecutable "udisksctl"
|
||||||
|
|
||||||
-- | Check if the device is mounted using /proc/mount
|
|
||||||
isMounted Removable { deviceSpec = d } = elem d <$> io curDeviceSpecs
|
isMounted Removable { deviceSpec = d } = elem d <$> io curDeviceSpecs
|
||||||
|
|
||||||
-- | Format the Rofi entry like 'LABEL - PATH' and add a star in the front
|
|
||||||
-- if the device is mounted
|
|
||||||
fmtEntry Removable { deviceSpec = d, label = l } = l ++ alignSepPre ++ d
|
fmtEntry Removable { deviceSpec = d, label = l } = l ++ alignSepPre ++ d
|
||||||
|
|
||||||
-- | Return list of possible rofi actions for removable devices
|
-- | Return list of possible rofi actions for removable devices
|
||||||
|
@ -248,9 +201,7 @@ instance Mountable Removable where
|
||||||
-- label shown on the prompt will be 'SIZE Volume' where size is the size of
|
-- label shown on the prompt will be 'SIZE Volume' where size is the size of
|
||||||
-- the device
|
-- the device
|
||||||
getRemovableDevices :: RofiConf c => RofiIO c [Removable]
|
getRemovableDevices :: RofiConf c => RofiIO c [Removable]
|
||||||
getRemovableDevices = mapMaybe toDev
|
getRemovableDevices = fromLines toDev . lines
|
||||||
. lines
|
|
||||||
. stripWS
|
|
||||||
<$> io (readProcess "lsblk" ["-n", "-r", "-o", columns] "")
|
<$> io (readProcess "lsblk" ["-n", "-r", "-o", columns] "")
|
||||||
where
|
where
|
||||||
columns = "FSTYPE,HOTPLUG,PATH,LABEL,SIZE"
|
columns = "FSTYPE,HOTPLUG,PATH,LABEL,SIZE"
|
||||||
|
@ -266,7 +217,7 @@ getRemovableDevices = mapMaybe toDev
|
||||||
-- | CIFS Devices
|
-- | CIFS Devices
|
||||||
--
|
--
|
||||||
-- This wraps the Removable device (since it is removable) and also adds its
|
-- This wraps the Removable device (since it is removable) and also adds its
|
||||||
-- own mount options and credentials for authentication.
|
-- own mount options and passwords for authentication.
|
||||||
|
|
||||||
data CIFS = CIFS Removable FilePath (Maybe Password)
|
data CIFS = CIFS Removable FilePath (Maybe Password)
|
||||||
|
|
||||||
|
@ -302,7 +253,7 @@ fstabToCIFS FSTabEntry{ fstabSpec = s, fstabDir = d, fstabOptions = o } = do
|
||||||
-- the cifs mount call will prompt for a password and hang otherwise.
|
-- the cifs mount call will prompt for a password and hang otherwise.
|
||||||
pwd <- if M.member "guest" o
|
pwd <- if M.member "guest" o
|
||||||
then return Nothing
|
then return Nothing
|
||||||
else Just . M.findWithDefault readPassword d <$> asks credentials
|
else Just . M.findWithDefault readPassword d <$> asks passwords
|
||||||
let r = Removable { deviceSpec = smartSlashPrefix s, label = takeFileName d }
|
let r = Removable { deviceSpec = smartSlashPrefix s, label = takeFileName d }
|
||||||
return $ CIFS r d pwd
|
return $ CIFS r d pwd
|
||||||
where
|
where
|
||||||
|
@ -323,9 +274,7 @@ instance Mountable SSHFS where
|
||||||
bracketOnError_
|
bracketOnError_
|
||||||
(mkDirMaybe m)
|
(mkDirMaybe m)
|
||||||
(rmDirMaybe m)
|
(rmDirMaybe m)
|
||||||
$ io $ do
|
(io $ runMountNotify "mount" [m] l False)
|
||||||
res <- readCmdEither "mount" [m] ""
|
|
||||||
notifyMounted (isRight res) False l
|
|
||||||
|
|
||||||
mount (SSHFS Removable{ label = l } m) True = umountNotify l m
|
mount (SSHFS Removable{ label = l } m) True = umountNotify l m
|
||||||
|
|
||||||
|
@ -342,6 +291,11 @@ fstabToSSHFS FSTabEntry{ fstabSpec = s, fstabDir = d } = return $ SSHFS r d
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
-- | MTP devices
|
-- | MTP devices
|
||||||
|
--
|
||||||
|
-- These devices are a bit special because they are not based on Removable
|
||||||
|
-- devices (eg they don't have a label and a device spec). Instead they
|
||||||
|
-- are defined by a bus:device path. The program used for this is jmtpfs
|
||||||
|
-- (which seems to be the fastest and most robust)
|
||||||
|
|
||||||
data MTPFS = MTPFS
|
data MTPFS = MTPFS
|
||||||
{ bus :: String
|
{ bus :: String
|
||||||
|
@ -358,9 +312,7 @@ instance Mountable MTPFS where
|
||||||
bracketOnError_
|
bracketOnError_
|
||||||
(mkDirMaybe mountpoint)
|
(mkDirMaybe mountpoint)
|
||||||
(rmDirMaybe mountpoint)
|
(rmDirMaybe mountpoint)
|
||||||
$ io $ do
|
(io $ runMountNotify "jmtpfs" [dev, mountpoint] description False)
|
||||||
res <- readCmdEither "jmtpfs" [dev, mountpoint] ""
|
|
||||||
notifyMounted (isRight res) False description
|
|
||||||
|
|
||||||
mount MTPFS { mountpoint = m, description = d } True = umountNotify d m
|
mount MTPFS { mountpoint = m, description = d } True = umountNotify d m
|
||||||
|
|
||||||
|
@ -371,11 +323,12 @@ instance Mountable MTPFS where
|
||||||
|
|
||||||
fmtEntry MTPFS { description = d } = d
|
fmtEntry MTPFS { description = d } = d
|
||||||
|
|
||||||
|
-- | Return list of all available MTP devices
|
||||||
getMTPDevices :: RofiIO MountConf [MTPFS]
|
getMTPDevices :: RofiIO MountConf [MTPFS]
|
||||||
getMTPDevices = do
|
getMTPDevices = do
|
||||||
dir <- asks mountDir
|
dir <- asks mountDir
|
||||||
res <- io $ readProcess "jmtpfs" ["-l"] ""
|
res <- io $ readProcess "jmtpfs" ["-l"] ""
|
||||||
return $ mapMaybe (toDev dir) $ toDevList res
|
return $ fromLines (toDev dir) $ toDevList res
|
||||||
where
|
where
|
||||||
toDevList = reverse
|
toDevList = reverse
|
||||||
. takeWhile (not . isPrefixOf "Available devices")
|
. takeWhile (not . isPrefixOf "Available devices")
|
||||||
|
@ -396,15 +349,55 @@ getMTPDevices = do
|
||||||
| c == ' ' = Just '-'
|
| c == ' ' = Just '-'
|
||||||
| otherwise = Just c
|
| otherwise = Just c
|
||||||
|
|
||||||
-- TODO add truecrypt volumes (see tcplay, will need root)
|
--------------------------------------------------------------------------------
|
||||||
|
-- | Mountable typeclass
|
||||||
|
--
|
||||||
|
-- Let this class represent anything that can be mounted. The end goal is to
|
||||||
|
-- create a Rofi action which will define an entry in the rofi prompt for the
|
||||||
|
-- device at hand. In order to make an action, we need functions to mount the
|
||||||
|
-- device, check if the necessary mounting program(s) is installed, make the
|
||||||
|
-- entry to go in the prompt, and test if the device is mounted.
|
||||||
|
|
||||||
|
class Mountable a where
|
||||||
|
-- | Mount the given type (or dismount if False is passed)
|
||||||
|
mount :: a -> Bool -> RofiIO MountConf ()
|
||||||
|
|
||||||
|
-- | Check if the mounting utilities are present
|
||||||
|
allInstalled :: a -> RofiIO MountConf Bool
|
||||||
|
|
||||||
|
-- | Return a string to go in the Rofi menu for the given type
|
||||||
|
fmtEntry :: a -> String
|
||||||
|
|
||||||
|
-- | Determine if the given type is mounted or not
|
||||||
|
isMounted :: a -> RofiIO MountConf Bool
|
||||||
|
|
||||||
|
-- | Given a mountable type, return a rofi action (string to go in the
|
||||||
|
-- Rofi prompt and an action to perform when it is selected)
|
||||||
|
mkAction :: a -> RofiIO MountConf (String, RofiIO MountConf ())
|
||||||
|
mkAction dev = do
|
||||||
|
m <- isMounted dev
|
||||||
|
i <- allInstalled dev
|
||||||
|
let a = when i $ mount dev m
|
||||||
|
let s = mountedPrefix m i ++ fmtEntry dev
|
||||||
|
return (s, a)
|
||||||
|
where
|
||||||
|
mountedPrefix False True = " "
|
||||||
|
mountedPrefix True True = "* "
|
||||||
|
mountedPrefix _ False = "! "
|
||||||
|
|
||||||
|
-- TODO add truecrypt volumes
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
-- | Fstab devices
|
-- | Fstab devices
|
||||||
|
--
|
||||||
|
-- Functions to gather all user fstab mounts on the system
|
||||||
|
|
||||||
|
-- | Intermediate structure to hold fstab devices
|
||||||
data FSTab = FSTab
|
data FSTab = FSTab
|
||||||
{ sshfsDevices :: [SSHFS]
|
{ sshfsDevices :: [SSHFS]
|
||||||
, cifsDevices :: [CIFS]
|
, cifsDevices :: [CIFS]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- | Data structure representing an fstab device (or one line in the fstab file)
|
||||||
data FSTabEntry = FSTabEntry
|
data FSTabEntry = FSTabEntry
|
||||||
{ fstabSpec :: String
|
{ fstabSpec :: String
|
||||||
, fstabDir :: FilePath
|
, fstabDir :: FilePath
|
||||||
|
@ -412,30 +405,39 @@ data FSTabEntry = FSTabEntry
|
||||||
, fstabOptions :: MountOptions
|
, fstabOptions :: MountOptions
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- | Key/val pairs to represent mount options. A Nothing for the value signifies
|
||||||
|
-- a standalone option (eg 'rw' and 'ro')
|
||||||
|
type MountOptions = M.Map String (Maybe String)
|
||||||
|
|
||||||
|
-- | Return all user fstab devices from /etc/fstab
|
||||||
readFSTab :: RofiIO MountConf FSTab
|
readFSTab :: RofiIO MountConf FSTab
|
||||||
readFSTab = do
|
readFSTab = do
|
||||||
let i = FSTab { sshfsDevices = [], cifsDevices = [] }
|
let i = FSTab { sshfsDevices = [], cifsDevices = [] }
|
||||||
fstab <- io $ readFile "/etc/fstab"
|
fstab <- io $ readFile "/etc/fstab"
|
||||||
foldM addFstabDevice i $ mapMaybe toEntry $ lines fstab
|
foldM addFstabDevice i $ fromLines toEntry $ lines fstab
|
||||||
where
|
where
|
||||||
toEntry line = case words $ stripWS line of
|
toEntry line = case words line of
|
||||||
(('#':_):_) -> Nothing
|
(('#':_):_) -> Nothing
|
||||||
[spec, dir, fsType, opts, _, _] -> Just $ FSTabEntry
|
[spec, dir, fsType, opts, _, _] -> Just $ FSTabEntry
|
||||||
{ fstabSpec = spec
|
{ fstabSpec = spec
|
||||||
, fstabDir = dir
|
, fstabDir = dir
|
||||||
, fstabType = fsType
|
, fstabType = fsType
|
||||||
, fstabOptions = parseMountOptions opts
|
, fstabOptions = parseOptions opts
|
||||||
}
|
}
|
||||||
_ -> Nothing
|
_ -> Nothing
|
||||||
|
parseOptions = M.fromList . fromCommaSepString
|
||||||
|
|
||||||
|
-- | Add entry to the fstab devices list, but only if it is a known user mount
|
||||||
addFstabDevice :: FSTab -> FSTabEntry -> RofiIO MountConf FSTab
|
addFstabDevice :: FSTab -> FSTabEntry -> RofiIO MountConf FSTab
|
||||||
addFstabDevice f@FSTab{..} e@FSTabEntry{..}
|
addFstabDevice f@FSTab{..} e@FSTabEntry{..}
|
||||||
| M.notMember "users" fstabOptions = return f
|
| M.notMember "users" fstabOptions = return f
|
||||||
| fstabType == "cifs" =
|
| fstabType == "cifs" =
|
||||||
(\d -> f { cifsDevices = cifsDevices ++ [d] }) <$> fstabToCIFS e
|
(\d -> f { cifsDevices = append d cifsDevices }) <$> fstabToCIFS e
|
||||||
| fstabType == "fuse.sshfs" =
|
| fstabType == "fuse.sshfs" =
|
||||||
(\d -> f { sshfsDevices = sshfsDevices ++ [d] }) <$> fstabToSSHFS e
|
(\d -> f { sshfsDevices = append d sshfsDevices }) <$> fstabToSSHFS e
|
||||||
| otherwise = return f
|
| otherwise = return f
|
||||||
|
where
|
||||||
|
append x xs = xs ++ [x]
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
-- | Low-level mount functions
|
-- | Low-level mount functions
|
||||||
|
@ -472,19 +474,33 @@ unlessMountpoint fp f = do
|
||||||
mounted <- io $ isDirMounted fp
|
mounted <- io $ isDirMounted fp
|
||||||
unless mounted f
|
unless mounted f
|
||||||
|
|
||||||
umountNotify :: String -> FilePath -> RofiIO MountConf ()
|
|
||||||
umountNotify label dir = finally cmd $ rmDirMaybe dir
|
|
||||||
where
|
|
||||||
cmd = io $ do
|
|
||||||
res <- readCmdEither "umount" [dir] ""
|
|
||||||
notifyMounted (isRight res) True label
|
|
||||||
|
|
||||||
isDirMounted :: FilePath -> IO Bool
|
isDirMounted :: FilePath -> IO Bool
|
||||||
isDirMounted fp = elem fp <$> curMountpoints
|
isDirMounted fp = elem fp <$> curMountpoints
|
||||||
|
|
||||||
|
runMountNotify :: String -> [String] -> String -> Bool -> IO ()
|
||||||
|
runMountNotify cmd args msg mounted = do
|
||||||
|
res <- readCmdEither cmd args ""
|
||||||
|
notifyMounted (isRight res) mounted msg
|
||||||
|
|
||||||
|
umountNotify :: String -> FilePath -> RofiIO MountConf ()
|
||||||
|
umountNotify msg dir = finally
|
||||||
|
(io $ runMountNotify "umount" [dir] msg True)
|
||||||
|
(rmDirMaybe dir)
|
||||||
|
|
||||||
|
-- | Send a notification indicating the mount succeeded
|
||||||
|
notifyMounted :: Bool -> Bool -> String -> IO ()
|
||||||
|
notifyMounted succeeded mounted label = void $ spawnProcess "notify-send" [msg]
|
||||||
|
where
|
||||||
|
f = if succeeded then "Successfully %sed %s" else "Failed to %s %s"
|
||||||
|
m = if mounted then "unmount" else "mount" :: String
|
||||||
|
msg = printf f m label
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
-- | Other functions
|
-- | Other functions
|
||||||
|
|
||||||
|
fromLines :: (String -> Maybe a) -> [String] -> [a]
|
||||||
|
fromLines f = mapMaybe (f . stripWS)
|
||||||
|
|
||||||
-- TODO this exists somewhere...
|
-- TODO this exists somewhere...
|
||||||
splitBy :: Char -> String -> [String]
|
splitBy :: Char -> String -> [String]
|
||||||
splitBy delimiter = foldr f [[]]
|
splitBy delimiter = foldr f [[]]
|
||||||
|
@ -493,9 +509,17 @@ splitBy delimiter = foldr f [[]]
|
||||||
f c l@(x:xs) | c == delimiter = []:l
|
f c l@(x:xs) | c == delimiter = []:l
|
||||||
| otherwise = (c:x):xs
|
| otherwise = (c:x):xs
|
||||||
|
|
||||||
notifyMounted :: Bool -> Bool -> String -> IO ()
|
-- | Like fromCommaSepString but only return substrings with '='
|
||||||
notifyMounted succeeded mounted label = void $ spawnProcess "notify-send" [msg]
|
fromCommaSepString' :: String -> [(String, String)]
|
||||||
|
fromCommaSepString' s = [(k, v) | (k, Just v) <- fromCommaSepString s]
|
||||||
|
|
||||||
|
-- | Split a string of comma-separated values into an alist
|
||||||
|
-- If the substrings have an '=' in them, the left side will become the key and
|
||||||
|
-- the right will become the value of the cell. If there is not '=' then the
|
||||||
|
-- entire substring will become the key and the value will be Nothing
|
||||||
|
fromCommaSepString :: String -> [(String, Maybe String)]
|
||||||
|
fromCommaSepString = fmap (toCell . splitEq) . splitBy ','
|
||||||
where
|
where
|
||||||
f = if succeeded then "Successfully %sed %s" else "Failed to %s %s"
|
splitEq e = e =~ ("=" :: String) :: (String, String, String)
|
||||||
m = if mounted then "unmount" else "mount" :: String
|
toCell (k, "=", v) = (k, Just v)
|
||||||
msg = printf f m label
|
toCell (k, _, _) = (k, Nothing)
|
||||||
|
|
Loading…
Reference in New Issue