-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
service.sh
85 lines (85 loc) · 3.03 KB
/
service.sh
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/data/adb/magisk/busybox ash
# shellcheck shell=dash
# shellcheck disable=SC2034
ASH_STANDALONE=1
SH=$(readlink -f "$0")
MODDIR=$(dirname "$SH")
it_failed() {
ui_print " "
ui_print "⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠"
ui_print " "
ui_print " Uh-oh, the installer encountered an issue!"
ui_print " It's probably one of these reasons:"
ui_print " 1) Installer is corrupt"
ui_print " 2) You didn't follow instructions"
ui_print " 3) You have an unstable internet connection"
ui_print " 4) Your ROM is broken"
ui_print " 5) There's a *tiny* chance we screwed up"
ui_print " Please fix any issues and retry."
ui_print " If you feel this is a bug or need assistance, head to our telegram"
mv "${EXT_DATA}"/logs "${TMPDIR}"
rm -rf "${EXT_DATA:?}"/*
mv "${TMPDIR}"/logs "${EXT_DATA}"/
ui_print " "
ui_print "⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠"
ui_print " "
exit 1
}
INSTALL=false
# shellcheck disable=SC1090,SC1091
. "${MODDIR}"/status.txt
FINDLOG=$MODDIR/logs/find.log
VERBOSELOG=$MODDIR/logs/service.log
touch "$VERBOSELOG"
{
echo "Module: WebviewManager v10"
echo "Device: $BRAND $MODEL ($DEVICE)"
echo "ROM: $ROM, sdk$API"
} >"$VERBOSELOG"
set -x >>"$VERBOSELOG"
echo "Started at $(date)"
while test ! -d /storage/emulated/0/Android; do
sleep 1
done
detect_ext_data() {
if touch /sdcard/.rw && rm /sdcard/.rw; then
export EXT_DATA="/sdcard/WebviewManager"
elif touch /storage/emulated/0/.rw && rm /storage/emulated/0/.rw; then
export EXT_DATA="/storage/emulated/0/WebviewManager"
elif touch /data/media/0/.rw && rm /data/media/0/.rw; then
export EXT_DATA="/data/media/0/WebviewManager"
else
EXT_DATA='/storage/emulated/0/WebviewManager'
fi
}
detect_ext_data
if ! $INSTALL; then
if find "${MODDIR}" | grep -i 'webview[.]apk'; then
pm install -r -g "$(find "${MODDIR}" | grep -i 'webview[.]apk')" 2>&3
fi
if find "${MODDIR}" | grep -i 'browser[.]apk'; then
pm install -r -g "$(find "${MODDIR}" | grep -i 'browser[.]apk')" 2>&3
fi
echo "Installed webview as user app.."
if pm list packages -a | grep -q com.android.chrome 2>&3; then
pm uninstall com.android.chrome 2>&3
fi
if pm list packages -a | grep -q com.google.android.webview 2>&3; then
pm uninstall com.android.chrome 2>&3
fi
echo "Disabled chrome and google webview. You may re-enable but please be aware that may cause issues"
sed -i "/INSTALL/d" "${MODDIR}"/status.txt
echo "INSTALL=true" >>"${MODDIR}"/status.txt
else
echo "Skipping install, as the needed files are not present. This is most likely because they've already been installed"
fi
touch "$FINDLOG"
{
echo -n "SDCARD DIR contains:"
find "$EXT_DATA"
echo -n "Module DIR contains:"
find "$MODDIR"
} >"$FINDLOG"
tail -n +1 "$EXT_DATA"/logs/install.log "$MODDIR"/logs/aapt.log "$MODDIR"/logs/find.log "$MODDIR"/logs/postfsdata.log "$MODDIR"/logs/service.log >"$MODDIR"/logs/full-"$(date +%F-%T)".log
cp -rf "$MODDIR"/logs/full-"$(date +%F-%T)".log "$EXT_DATA"/logs
find "$EXT_DATA"/logs -mtime +3 -exec rm -f {} \;