-
Notifications
You must be signed in to change notification settings - Fork 14
/
termux-storage
executable file
·348 lines (245 loc) · 6.29 KB
/
termux-storage
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#!/bin/bash
# dependencies /////////////////////////////////////////////////////////////////
if [[ -z $(command -v frobulator) ]]
then
if [[ $(id -u -n) = "root" ]]
then
SUDO_HOME=/root
USER="${SUDO_USER}"
HOME=/home/"${USER}"
fi
if [[ -z $(command -v curl) ]]
then
yes | apt-get install curl
fi
if [ ! -d "${HOME}"/.local/bin ]
then
mkdir -p "${HOME}"/.local/bin
fi
curl -s -L get.frbltr.app > "${HOME}"/.local/bin/frobulator
chmod +x "${HOME}"/.local/bin/frobulator
fi
. "${HOME}"/.local/bin/frobulator
# script ///////////////////////////////////////////////////////////////////////
script=$(basename -- "${BASH_SOURCE[0]}")
# version //////////////////////////////////////////////////////////////////////
version="06-22-2024"
# usage ////////////////////////////////////////////////////////////////////////
while (($#))
do
case "${1}"
in
-l|--link)
option="link"
;;
-h|--help)
echo
echo -e "Usage: ${script} -c | -e [Environment] | -t | -n | -b | -u [Update Type] [Utility Name] | [OPTION]"
echo
echo -e "Options:"
echo
echo -e "-l, --link Link and unify storage directories."
echo
echo -e "-h, --help Show help and usage information."
echo
echo -e "'${script}' [ Version // ${version} ]"
echo
exit
;;
"")
# handle empty argument:
# use default values specified in script
:
;;
*)
echo
echo -e "Usage: ${script} -c | -e [Environment] | -t | -n | -b | -u [Update] [Name] | [OPTION]"
echo
echo -e "${script}: Unknown option '${1}'"
echo -e "Type './${script} --help' for help and usage information."
echo
exit 1
;;
esac
shift
done
# prompt ///////////////////////////////////////////////////////////////////////
frobulator.script "Setting up ${script#*-}"
# variables ////////////////////////////////////////////////////////////////////
# defaults /////////////////////////////////////////////////////////////////////
# functions ////////////////////////////////////////////////////////////////////
storage_intent () {
unset storage_command
storage_command+="am broadcast"
storage_command+=" --user 0"
storage_command+=" -e com.termux.app.reload_style storage"
storage_command+=" -a com.termux.app.reload_style com.termux"
frobulator.silence "${storage_command}"
}
storage_directories () {
# generate home directory structure
directories_list+=(
Desktop
Documents
Downloads
Music
Pictures
Public
Templates
Videos
)
frobulator.directory "${base_directory}" ${directories_list[@]}
directories_list=()
}
# verify termux storage directory existence
if [ ! -f "${HOME}"/.dextop/dextop-termux-storage ]
then
if [ ! -d "${HOME}"/storage ]
then
# does not exist:
# enable storage permissions: requires user touch input
frobulator.wrn "User permission required to access storage on this device:"
frobulator.nul "Both internal and external storage locations are made available."
echo
frobulator.inf "Storage is also made accessible through container."
echo
frobulator.ins "Select 'Allow' when prompted to proceed."
echo
frobulator.separate
# storage permissions dialog
storage_intent
frobulator.countdown 5 "Continuing" "[ ${script} ]"
else
# exists:
# proceed with setup
frobulator.scs "Storage directory detected" "[ "${HOME}" ]"
echo
frobulator.fwd "Continuing${marker_elp}"
echo
fi
frobulator.file "${HOME}"/.dextop dextop-termux-storage
fi
directories_list=(
"${PREFIX}"/media
)
for directory in ${directories_list[@]}
do
if [ -d "${directory}" ]
then
for item in "${directory}"/*
do
frobulator.delete "${item}"
done
fi
done
directories_list=()
# generate links
frobulator.fwd "Setting up storage${marker_elp}"
echo
# link primary/internal android storage
frobulator.fwd "Linking${marker_elp}"
echo
directories_list=(
"${PREFIX}"/media
)
if [ -d /storage/self/primary ]
then
for directory in ${directories_list[@]}
do
frobulator.link /storage/self "${directory}" primary Android
done
fi
directories_list=()
# link external storage
# use /proc/mounts to detect mounted media:
# circumvent /storage access issues and DAC policy (Android 11+)
commands_list=(
$(cat /proc/mounts | sed -r '/[A0-Z9]{4}[-][A0-Z9]{4}/!d' | grep '/storage' | cut -d ' ' -f 2)
$(cat /proc/mounts | sed -r '/[A0-Z9]{40}/!d' | grep '/storage' | cut -d ' ' -f 2)
)
# set IFS
IFS=$'\n'
for command in ${commands_list[@]}
do
read -r -a storage_mounts_list <<< ${command}
for storage_mount in ${storage_mounts_list[@]}
do
storage_paths_list+=("${storage_mount}")
done
done
if [ -n "${#storage_paths_list[@]}" ]
then
for storage_path in ${storage_paths_list[@]}
do
storage_uuid="${storage_path/\/storage\//}"
if [ -f "${storage_path}"/.storage ]
then
storage_label=$(cat ${storage_path}/.storage)
else
frobulator.wrn "No storage identifier found" "[ ${storage_uuid} ]"
echo
frobulator.inf "Using mounts UUID for identification"
echo
frobulator.fwd "Proceeding${marker_elp}"
echo
fi
frobulator.scs "Storage media detected" "[ ${storage_uuid} ]"
echo
if [ ! -f "${PREFIX}"/media/"${storage_label}" ]
then
frobulator.link /storage "${PREFIX}"/media "${storage_uuid}" "${storage_label}"
fi
done
else
storage_uuid="N/A"
frobulator.err "No storage media detected" "[ ${storage_uuid} ]"
echo
frobulator.fwd "Continuing${marker_elp}"
echo
fi
commands_list=()
# reset IFS
IFS=''
# options
if [[ "${option}" = "link" ]]
then
# link and unify home directory structure:
# use 'Home' .storage label indicator
if [ -d "${PREFIX}"/media/[hH][oO][mM][eE] ]
then
base_directory=("${PREFIX}"/media/[hH][oO][mM][eE])
fi
storage_directories
# set IFS
IFS=$'\n'
directories_list=(
$(ls "${base_directory}")
)
for directory in ${directories_list[@]}
do
read -r -a links_list <<< ${directory}
if [[ -d "${HOME}"/"${directory}" ]]
then
frobulator.delete "${HOME}" "${directory}"
fi
if [[ -L "${HOME}"/"${directory}" ]]
then
break
fi
frobulator.link "${base_directory}" "${HOME}" ${links_list[@]}
links_list=()
done
directories_list=()
# reset IFS
IFS=''
else
base_directory="${HOME}"
storage_directories
fi
# remove existing termux storage references
if [ -d "${HOME}"/storage ]
then
frobulator.fwd "Cleaning up${marker_elp}"
echo
frobulator.delete "${HOME}" storage
fi