This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
firejail-handler-http
52 lines (46 loc) · 1.71 KB
/
firejail-handler-http
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
#!/bin/sh
#
## HTTP(S) URL handler for Firejail
#+ point your sandboxed application to this script for easy HTTP(S) URL relaying
#+ (1) this script saves a URL at a read/write accessible location inside the sandbox
#+ (2) from outside the sandbox `firejail-url-handler-ctl` picks up that URL
#+ and opens it in the configured web browser via a custom xdg-open wrapper
#+ (defaults to firefox)
# shellcheck disable=SC2154
# bail if we didn't get a URL
[ -z "$1" ] && exit 1
### vars
## source common settings
_settings_file="firejail-handler-settings-http.inc"
if [ -f "${HOME}/.config/firejail/${_settings_file}" ]; then
#+ use settings defined by user
. "${HOME}/.config/firejail/${_settings_file}"
elif [ -f "/etc/firejail/${_settings_file}" ]; then
#+ use system-wide settings
. "/etc/firejail/${_settings_file}"
else
#+ fall back to hard-coded values
_browser_bin="/usr/bin/firefox"
_debug=0
if [ "$(which xdg-user-dir)" ]; then
_drop_dir="$(xdg-user-dir DOWNLOAD)"
else
_xdg_config_home="$(env | grep -c "XDG_CONFIG_HOME")"
if [ "$_xdg_config_home" = 1 ]; then
if [ -s "${XDG_CONFIG_HOME}/user-dirs.dirs" ]; then
_drop_dir="$(grep "^XDG_DOWNLOAD_DIR=" "${XDG_CONFIG_HOME}/user-dirs.dirs" | awk '{split($0,a,"="); print a[2]}' | sed 's/"//g')"
fi
elif [ -s "${HOME}/.config/user-dirs.dirs" ]; then
_drop_dir="$(grep "^XDG_DOWNLOAD_DIR=" "${HOME}/.config/user-dirs.dirs" | awk '{split($0,a,"="); print a[2]}' | sed 's/"//g')"
else
_drop_dir="${HOME}/Downloads"
fi
fi
_drop_dir="${_drop_dir}/.firejail-dropzone"
_drop_file="${_drop_dir}/firejail.drop"
_xdg_open_wrapper_bin="/usr/local/bin/xdg-open"
fi
### logic
# create drop
echo "$1" > "$_drop_file"
exit 0