~dricottone/my-utils

ref: 596d0a2530fc8b5bedf46eb7d9282766a2046ac2 my-utils/archives/unarchive.bash -rw-r--r-- 10.0 KiB
596d0a25Dominic Ricottone Help and usage messages 2 years ago
                                                                                
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#!/bin/bash

# See tarcat for simple usage

is_flagged_for_list() {
  #NOTE: Origins of these flags:
  #  "t"   = tar
  #  "tf"  = tar
  #  "Ot"  = tar
  #  "Otf" = tar
  #  "l"   = unrar, 7z
  #  "-l"  = unzip, unrpa
  if contains "$1" "l" "-l" "t" "tf" "Ot" "Otf"; then
    return 0
  fi
  return 1
}

is_flagged_for_stdout() {
  #NOTE: Origins of these flags:
  #  "Ox"    = tar
  #  "Oxf"   = tar
  #  "p"     = unrar
  #  "-p"    = unzip
  #  "x -so" = 7z
  if contains "$1" "p" "-p" "Ox" "Oxf"; then
    return 0
  fi
  return 1
}

unarchive() {
  local tar_bin=/usr/bin/tar
  local gpg_bin=/usr/bin/gpg
  local age_bin=age
  local unzip_bin=/usr/bin/unzip
  local unrar_bin=/usr/bin/unrar
  local unrpa_bin=unrpa
  local _7z_bin=/usr/bin/7z

  local decrypt=""
  local decrypt_cmd=""
  local decrypt_flags=""
  local passphrase_flags=""
  local passphrase=""
  local unarchive_cmd=""
  local unarchive_flags=""
  local unarchive_late_flags=""
  local to_directory=""

  while [[ $# -gt 0 ]]; do
    case $1 in

    --archive=tar)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xf"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.age)
      decrypt=1
      decrypt_cmd="${age_bin}"
      decrypt_flags="${decrypt_flags} --decrypt"
      passphrase_flags="--plaintext"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}x"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.gpg)
      decrypt=1
      decrypt_cmd="${gpg_bin}"
      decrypt_flags="${decrypt_flags} --decrypt --quiet"
      passphrase_flags="--batch --passphrase"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}x"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.gz)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xzf"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.gz.age)
      decrypt=1
      decrypt_cmd="${age_bin}"
      decrypt_flags="${decrypt_flags} --decrypt"
      passphrase_flags="--plaintext"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xz"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.gz.gpg)
      decrypt=1
      decrypt_cmd="${gpg_bin}"
      decrypt_flags="${decrypt_flags} --decrypt --quiet"
      passphrase_flags="--batch --passphrase"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xz"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.xz)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xJf"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.xz.age)
      decrypt=1
      decrypt_cmd="${age_bin}"
      decrypt_flags="${decrypt_flags} --decrypt"
      passphrase_flags="--plaintext"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xJ"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.xz.gpg)
      decrypt=1
      decrypt_cmd="${gpg_bin}"
      decrypt_flags="${decrypt_flags} --decrypt --quiet"
      passphrase_flags="--batch --passphrase"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xJ"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.zst)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xf"
      unarchive_late_flags="--zstd"
      shift
      ;;

    --archive=tar.zst.age)
      decrypt=1
      decrypt_cmd="${age_bin}"
      decrypt_flags="${decrypt_flags} --decrypt"
      passphrase_flags="--plaintext"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}x"
      unarchive_late_flags="--zstd"
      shift
      ;;

    --archive=tar.zst.gpg)
      decrypt=1
      decrypt_cmd="${gpg_bin}"
      decrypt_flags="${decrypt_flags} --decrypt --quiet"
      passphrase_flags="--batch --passphrase"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}x"
      unarchive_late_flags="--zstd"
      shift
      ;;

    --archive=tar.bz2)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xjf"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.bz2.age)
      decrypt=1
      decrypt_cmd="${age_bin}"
      decrypt_flags="${decrypt_flags} --decrypt"
      passphrase_flags="--plaintext"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xj"
      unarchive_late_flags=""
      shift
      ;;

    --archive=tar.bz2.gpg)
      decrypt=1
      decrypt_cmd="${gpg_bin}"
      decrypt_flags="${decrypt_flags} --decrypt --quiet"
      passphrase_flags="--batch --passphrase"
      unarchive_cmd="${tar_bin}"
      unarchive_flags="${unarchive_flags}xj"
      unarchive_late_flags=""
      shift
      ;;

    --archive=zip)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${unzip_bin}"
      if is_flagged_for_list "$unarchive_flags"; then
        unarchive_flags="-l"
      elif is_flagged_for_stdout "$unarchive_flags"; then
        unarchive_flags="-p"
      else
        unarchive_flags=""
      fi
      unarchive_late_flags=""
      shift
      ;;

    --archive=rar)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${unrar_bin}"
      if is_flagged_for_list "$unarchive_flags"; then
        unarchive_flags="l"
      elif is_flagged_for_stdout "$unarchive_flags"; then
        unarchive_flags="p"
      else
        unarchive_flags="x"
      fi
      unarchive_late_flags=""
      shift
      ;;

    --archive=rpa)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${unrpa_bin}"
      if is_flagged_for_list "$unarchive_flags"; then
        unarchive_flags="-l"
      elif is_flagged_for_stdout "$unarchive_flags"; then
        error_msg "unrpa does not support --stdout"
      else
        unarchive_flags=""
      fi
      unarchive_late_flags=""
      shift
      ;;

    --archive=7z)
      decrypt=0
      decrypt_cmd=""
      decrypt_flags=""
      passphrase_flags=""
      unarchive_cmd="${_7z_bin}"
      if is_flagged_for_list "$unarchive_flags"; then
        unarchive_flags="l -bso0 -bsp0"
      elif is_flagged_for_stdout "$unarchive_flags"; then
        unarchive_flags="x -so -bsp0"
      else
        unarchive_flags="x -bso0 -bsp0"
      fi
      unarchive_late_flags=""
      shift
      ;;

    --archive=*)
      error_msg "unsupported archive type '${1}'"
      ;;

    --directory)
      to_directory="$2"
      shift; shift
      ;;

    --list)
      case "$unarchive_cmd" in
      "$unzip_bin")
        #NOTE: `-l` is incompatible with all other flags, so overwrite
        unarchive_flags="-l"
        ;;

      "$unrar_bin")
        #NOTE: `l` is incompatible with all other flags, so overwrite
        unarchive_flags="l"
        ;;

      "$unrpa_bin")
        #NOTE: `-l` is incompatible with all other flags, so overwrite
        unarchive_flags="-l"
        ;;

      "$_7z_bin")
        #NOTE: `l` is incompatible with all other flags, so overwrite
        unarchive_flags="l -bso0 -bsp0"
        ;;

      *)
        #NOTE: `t` is incompatible with `x` (which I set by default), so partially overwrite
        unarchive_flags="$(/usr/bin/sed -e 's/x/t/' <<<"$unarchive_flags")"
        ;;
      esac
      shift
      ;;

    --passphrase)
      passphrase="$2"
      shift; shift
      ;;

    --stdout)
      case "$unarchive_cmd" in
      "$unzip_bin")
        #NOTE: `-p` is incompatible with all other flags, so overwrite
        unarchive_flags="-p"
        ;;

      "$unrar_bin")
        #NOTE: `p` is incompatible with all other flags, so overwrite
        unarchive_flags="p"
        ;;

      "$unrpa_bin")
        error_msg "unrpa does not support --stdout"
        ;;

      "$_7z_bin")
        #NOTE: `x` is incompatible with all other flags, so overwrite and append `-so`
        unarchive_flags="x -so -bsp0"
        ;;

      *)
        #NOTE: while the effect is unusual, `O` is not incompatible with `x`/`t`, so append
        unarchive_flags="O${unarchive_flags}"
        ;;
      esac
      shift
      ;;

    *)
      archive_fn="$(realpath "$1")"
      shift
      ;;
    esac
  done

  # error if archive does not exist
  if [[ ! -f "$archive_fn" ]]; then
    error_msg "no such archive '${archive_fn}'"
    usage_msg
  fi

  # handle passphrase
  if [[ ! -z "$passphrase_flags" && ! -z "$passphrase" ]]; then
    passphrase_flags="${passphrase_flags} ${passphrase}"
  else
    passphrase_flags=
  fi

  # handle debugging information
  local verbosity=/dev/stderr
  if [[ "$verbose" -ne 1 ]]; then
    verbosity=/dev/null
  elif [[ "$decrypt" -eq 1 ]]; then
    debug_msg "cd ${to_directory:-.} && $decrypt_cmd $decrypt_flags $archive_fn $passphrase_flags 2>$verbosity | $unarchive_cmd $unarchive_flags $unarchive_late_flags 2>$verbosity"
  else
    debug_msg "cd ${to_directory:-.} && $unarchive_cmd $unarchive_flags $archive_fn $unarchive_late_flags 2>$verbosity"
  fi

  # unarchive routine
  if [[ ! -z "$to_directory" ]] && ! cd "$to_directory" >/dev/null 2> >(/usr/bin/sed -e "s/.*cd/cd/" >$verbosity); then
    error_msg "could not access directory '${to_directory}'"
    echo "ping"
  fi
  if [[ "$decrypt" -eq 1 ]]; then
    ( \
      $decrypt_cmd $decrypt_flags $passphrase_flags "$archive_fn" 2>$verbosity \
        || error_msg "could not decrypt '${archive_fn}'" \
    ) \
    | ( \
      $unarchive_cmd $unarchive_flags $unarchive_late_flags 2>$verbosity \
        || error_msg "could not unarchive '${archive_fn}'" \
    )
  else
    $unarchive_cmd $unarchive_flags "$archive_fn" $unarchive_late_flags 2>$verbosity \
      || error_msg "could not unarchive '${archive_fn}'"
  fi
}