14f7a386f0
Clean the standalone environment before running the su command to run "sh". Otherwise, PATH leaked through, causing it to run git-annex.linux/bin/sh, but GIT_ANNEX_DIR was not set, which caused that script to not work: [2022-10-26 15:07:02.145466106] (Utility.Process) process [938146] call: pkexec ["sh","-c","cd '/home/joey/tmp/git-annex.linux/r' && '/home/joey/tmp/git-annex.linux/git-annex' 'enable-tor' '1000'"] /home/joey/tmp/git-annex.linux/bin/sh: 4: exec: /exe/sh: not found Changed programPath to not use GIT_ANNEX_PROGRAMPATH, but instead run the scripts at the top of GIT_ANNEX_DIR. That works both when the standalone environment is set up, and when it's not. Sponsored-by: Kevin Mueller on Patreon
173 lines
5.2 KiB
Haskell
173 lines
5.2 KiB
Haskell
{- Assistant installation
|
|
-
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
-}
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
module Assistant.Install where
|
|
|
|
import Assistant.Common
|
|
import Assistant.Install.AutoStart
|
|
import Config.Files
|
|
import Utility.FileMode
|
|
import Utility.Shell
|
|
import Utility.Tmp
|
|
import Utility.Env
|
|
import Utility.SshConfig
|
|
|
|
#ifdef darwin_HOST_OS
|
|
import Utility.OSX
|
|
#else
|
|
import Utility.FreeDesktop
|
|
import Assistant.Install.Menu
|
|
import Utility.UserInfo
|
|
import Utility.Android
|
|
#endif
|
|
|
|
standaloneAppBase :: IO (Maybe FilePath)
|
|
standaloneAppBase = getEnv "GIT_ANNEX_APP_BASE"
|
|
|
|
{- The standalone app does not have an installation process.
|
|
- So when it's run, it needs to set up autostarting of the assistant
|
|
- daemon, as well as writing the programFile, and putting the
|
|
- git-annex-shell and git-annex-wrapper wrapper scripts into ~/.ssh
|
|
-
|
|
- Note that this is done every time it's started, so if the user moves
|
|
- it around, the paths this sets up won't break.
|
|
-
|
|
- File manager hook script installation is done even for
|
|
- packaged apps, since it has to go into the user's home directory.
|
|
-}
|
|
ensureInstalled :: IO ()
|
|
ensureInstalled = ifM (isJust <$> getEnv "GIT_ANNEX_PACKAGE_INSTALL")
|
|
( go Nothing
|
|
, go =<< standaloneAppBase
|
|
)
|
|
where
|
|
go Nothing = installFileManagerHooks "git-annex"
|
|
go (Just base) = do
|
|
let program = base </> "git-annex"
|
|
programfile <- programFile
|
|
createDirectoryIfMissing True $
|
|
fromRawFilePath (parentDir (toRawFilePath programfile))
|
|
writeFile programfile program
|
|
|
|
#ifdef darwin_HOST_OS
|
|
autostartfile <- userAutoStart osxAutoStartLabel
|
|
installAutoStart program autostartfile
|
|
#else
|
|
ifM osAndroid
|
|
( do
|
|
-- Integration with the Termux:Boot app.
|
|
home <- myHomeDir
|
|
let bootfile = home </> ".termux" </> "boot" </> "git-annex"
|
|
unlessM (doesFileExist bootfile) $ do
|
|
createDirectoryIfMissing True (takeDirectory bootfile)
|
|
writeFile bootfile "git-annex assistant --autostart"
|
|
, do
|
|
menufile <- desktopMenuFilePath "git-annex" <$> userDataDir
|
|
icondir <- iconDir <$> userDataDir
|
|
installMenu program menufile base icondir
|
|
autostartfile <- autoStartPath "git-annex" <$> userConfigDir
|
|
installAutoStart program autostartfile
|
|
)
|
|
#endif
|
|
|
|
sshdir <- sshDir
|
|
let runshell var = "exec " ++ base </> "runshell " ++ var
|
|
let rungitannexshell var = runshell $ "git-annex-shell -c \"" ++ var ++ "\""
|
|
|
|
installWrapper (sshdir </> "git-annex-shell") $ unlines
|
|
[ shebang
|
|
, "set -e"
|
|
, "if [ \"x$SSH_ORIGINAL_COMMAND\" != \"x\" ]; then"
|
|
, rungitannexshell "$SSH_ORIGINAL_COMMAND"
|
|
, "else"
|
|
, rungitannexshell "$@"
|
|
, "fi"
|
|
]
|
|
installWrapper (sshdir </> "git-annex-wrapper") $ unlines
|
|
[ shebang
|
|
, "set -e"
|
|
, runshell "\"$@\""
|
|
]
|
|
|
|
installFileManagerHooks program
|
|
|
|
installWrapper :: FilePath -> String -> IO ()
|
|
installWrapper file content = do
|
|
curr <- catchDefaultIO "" $ readFileStrict file
|
|
when (curr /= content) $ do
|
|
createDirectoryIfMissing True (fromRawFilePath (parentDir (toRawFilePath file)))
|
|
viaTmp writeFile file content
|
|
modifyFileMode (toRawFilePath file) $
|
|
addModes [ownerExecuteMode]
|
|
|
|
installFileManagerHooks :: FilePath -> IO ()
|
|
#ifdef linux_HOST_OS
|
|
installFileManagerHooks program = unlessM osAndroid $ do
|
|
let actions = ["get", "drop", "undo"]
|
|
|
|
-- Gnome
|
|
nautilusScriptdir <- (\d -> d </> "nautilus" </> "scripts") <$> userDataDir
|
|
createDirectoryIfMissing True nautilusScriptdir
|
|
forM_ actions $
|
|
genNautilusScript nautilusScriptdir
|
|
|
|
-- KDE
|
|
userdata <- userDataDir
|
|
let kdeServiceMenusdir = userdata </> "kservices5" </> "ServiceMenus"
|
|
createDirectoryIfMissing True kdeServiceMenusdir
|
|
writeFile (kdeServiceMenusdir </> "git-annex.desktop")
|
|
(kdeDesktopFile actions)
|
|
where
|
|
genNautilusScript scriptdir action =
|
|
installscript (scriptdir </> scriptname action) $ unlines
|
|
[ shebang
|
|
, autoaddedcomment
|
|
, "exec " ++ program ++ " " ++ action ++ " --notify-start --notify-finish -- \"$@\""
|
|
]
|
|
scriptname action = "git-annex " ++ action
|
|
installscript f c = whenM (safetoinstallscript f) $ do
|
|
writeFile f c
|
|
modifyFileMode (toRawFilePath f) $ addModes [ownerExecuteMode]
|
|
safetoinstallscript f = catchDefaultIO True $
|
|
elem autoaddedcomment . lines <$> readFileStrict f
|
|
autoaddedcomment = "# " ++ autoaddedmsg ++ " (To disable, chmod 600 this file.)"
|
|
autoaddedmsg = "Automatically added by git-annex, do not edit."
|
|
|
|
kdeDesktopFile actions = unlines $ concat $
|
|
kdeDesktopHeader actions : map kdeDesktopAction actions
|
|
kdeDesktopHeader actions =
|
|
[ "# " ++ autoaddedmsg
|
|
, "[Desktop Entry]"
|
|
, "Type=Service"
|
|
, "ServiceTypes=all/allfiles"
|
|
, "MimeType=all/all;"
|
|
, "Actions=" ++ intercalate ";" (map kdeDesktopSection actions)
|
|
, "X-KDE-Priority=TopLevel"
|
|
, "X-KDE-Submenu=Git-Annex"
|
|
, "X-KDE-Icon=git-annex"
|
|
, "X-KDE-ServiceTypes=KonqPopupMenu/Plugin"
|
|
]
|
|
kdeDesktopSection command = "GitAnnex" ++ command
|
|
kdeDesktopAction command =
|
|
[ ""
|
|
, "[Desktop Action " ++ kdeDesktopSection command ++ "]"
|
|
, "Name=" ++ command
|
|
, "Icon=git-annex"
|
|
, unwords
|
|
[ "Exec=sh -c 'cd \"$(dirname \"$1\")\" &&"
|
|
, program
|
|
, command
|
|
, "--notify-start --notify-finish -- \"$1\"'"
|
|
, "false" -- this becomes $0 in sh, so unused
|
|
, "%f"
|
|
]
|
|
]
|
|
#else
|
|
installFileManagerHooks _ = noop
|
|
#endif
|