This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheg-installer
executable file
·712 lines (600 loc) · 22.1 KB
/
eg-installer
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
#!/usr/bin/env bash
# EG-Installer
# SereneTeam (c) 2019.
# Twitter: @Serene_JP
#
# Yamada Hayao
# Twitter: @Hayao0819
# Email : [email protected]
#===== 各基本ウィンドウの使い方 =====#
# プログレスバー
# command | loading [横幅] [高さ] [メッセージ]
#
# エラーウィンドウ
# error [横幅] [高さ] [メッセージ]
#
# 警告ウィンドウ
# warning [横幅] [高さ] [メッセージ]
#
# 情報ウィンドウ
# info [横幅] [高さ] [メッセージ]
#
# 質問ウィンドウ
# question [横幅] [高さ] [メッセージ] [OKラベル] [Cancelラベル]
#
# 改行する場合は \n と記述してください。
#-- 設定 --#
settings=$(cd $(dirname $0) && pwd)/config
entry_extension="entry"
version=1.11
temp_dir=/tmp/EG-Installer-${version}
debug_mode=false
#-- 変数定義 --#
set -eu
current_path=$(cd $(dirname $0) && pwd)/$(basename $0)
current_dir=$(dirname $current_path)
options=$@
unset run
set +eu
#-- 関数定義 --#
# 自分自身を呼び出す
set -eu
function call_me () {
export recall=true
bash ${0} ${options}
}
# ウィンドウの基本型
function window () {
zenity \
--title="'${window_text}'" \
--window-icon="'${window_icon}'" \
$@
}
# 読み込みウィンドウ
function loading () {
window \
--progress \
--auto-close \
--pulsate \
--width="${1}" \
--height="${2}" \
--text="${3}"
}
# エラーウィンドウ
function error () {
window \
--error \
--width="${1}" \
--height="${2}" \
--text="${3}"
}
# 警告ウィンドウ
function warning () {
window \
--warning \
--width="${1}" \
--height="${2}" \
--text="${3}"
}
# 情報ウィンドウ
function info () {
window \
--info \
--width="${1}" \
--height="${2}" \
--text="${3}"
}
# 質問ウィンドウ
function question () {
window \
--question \
--width="${1}" \
--height="${2}"
--text="${3}" \
--ok-label="${4}" \
--cancel-label="${5}"
}
# ユーザーチェック
function user_check () {
if [[ $(getent passwd ${1} > /dev/null ; printf ${?}) = 0 ]]; then
if [[ -z ${1} ]]; then
printf 1
fi
printf 0
else
printf 1
fi
}
# 設定上の関数チェック
function check_func () {
if [[ ! $(type -t ${1}) = "function" ]]; then
error 800 100 "${2}"
exit 1
fi
}
# パッケージチェック
function check_pkg () {
if [[ -n $(installed_list | grep -x "${1}") ]]; then
printf 0
else
printf 1
fi
}
# 値の初期化
function clear_variable () {
unset name
unset package_name
unset description
unset run_preparing
unset preparing_msg
unset install
unset uninstall
unset preparing
unset install_check
}
# デバッグモード
function debug_msg () {
if [[ "${debug_mode}" = true ]]; then
echo -e "${@}"
fi
}
# オプション確認メッセージ
function debug_opts_msg () {
if [[ "${debug_mode}" = true && "${recall}" = false ]]; then
echo -e "${@}"
fi
}
set +eu
#-- ディスプレイチェック --#
set -eu
if [[ -z "${DISPLAY}" ]]; then
echo "GUI環境で起動してください。" >&2
exit 1
fi
set +eu
#-- 設定読み込み --#
if [[ ! -f "${settings}" ]]; then
error 600 100 "${settings}が存在しません。"
exit 1
elif [[ ! -r ${settings} ]]; then
error 600 100 "${settings}の読み込みに失敗しました。\n権限を確認してください。"
fi
source ${settings}
if [[ -z $ID ]]; then
source /etc/os-release
fi
options=$(echo ${fixed_option} ${@})
#-- アイコンチェック --#
if [[ ! -f "${window_icon}" ]]; then
error 600 100 "${window_icon}が存在しません。"
exit 1
elif [[ ! -r "${window_icon}" ]]; then
error 600 100 "$window_iconが読み込めませんでした。権限を確認してください。"
exit 1
fi
#-- 引数用関数 --#
# ArchLinuxモードを強制的に有効化
function enable_arch () {
export ID=arch
}
# アップデータのための情報を表示
function show_updater_info () {
echo "${version} ${settings}"
exit 0
}
# dpkg用のinstalled_listを有効化
function enable_installed_list_dpkg () {
installed_list () {
${pacman} -Q | awk '{print $2}';
}
[[ ! "${recall}" = true ]] && warning 600 100 "dpkg,apt用のinstalled_listを使用します。" > /dev/null
}
# ヘルプを表示
function show_help () {
info 700 100 "== デバッグ用 ==\nこれはデバッグ用オプションです。通常利用はしないでください。\n${settings}を変更することで値を保存できます。\n\n-a : ArchLinuxモードを強制的に有効化します。\n-d : dpkg,apt用のinstalled_listを使用します。\n-h : このヘルプを表示します。このオプションが有効な場合、他のオプションは無視されます。\n-p : pacman用のinstalled_listを使用します。\n-v : バージョン情報を表示します。\n-x : bashでのデバッグモードを有効化します。\n-z : デバッグモードを有効化します。(設定されたデバッグメッセージをターミナル上に表示します。)\n-r [ 実行する項目の番号 ] : 特定の動作をメニューをスキップして行います。\n-s [スクリプトディレクトリ] : スクリプトディレクトリを指定します。\n-t [ ウィンドウタイトル ] : ウィンドウタイトルを指定します。\n-u [ ユーザー名 ] : パッケージのビルドに使用するユーザーを指定します。\n"
exit 0
}
# pacman用のinstalled_listを有効化
function enable_installed_list_pacman () {
installed_list () {
${pacman} -Q | awk '{print $1}'
}
debug_opts_msg "pacman用のinstalled_listを使用します。"
}
# 実行する内容を直接指定
function run_execution () {
direct_execution=true
if [[ ! "${recall}" = true ]]; then
case "${OPTARG}" in
1) run="クリーンアップ";;
2) run="アップグレード";;
3) run="追加と削除" ;;
*) error 600 100 "引数${OPTARG}が間違っています。"; exit 1 ;;
esac
else
exit 0
fi
}
# bashデバッグを有効化
function enable_bash_debug () {
set -x
debug_opts_msg "bashデバッグモードが有効化されました。"
}
# デバッグメッセージを有効化
function enable_debug () {
debug_mode=true
debug_opts_msg "デバッグモードが有効化されました。"
}
# バージョン情報表示
function show_version () {
window \
--info \
--width="600" \
--height="100" \
--text="== EG-Installer ==\nVersion: ${version}\nYamada Hayao [email protected]"
debug_msg "EG-Installer v${version}"
exit 0
}
#-- デバッグ用引数 --#
while getopts 'adeg:hpr:s:t:u:vwxz-:' arg; do
case "${arg}" in
a) enable_arch;;
d) enable_installed_list_dpkg ;;
e) show_updater_info;;
g) softwares_update="${OPTARG}" ; debug_opts_msg "アップデートスクリプトが${OPTARG}に指定されました。" ;;
h) show_help;;
p) enable_installed_list_pacman ;;
r) run_execution;;
s) script_dir="${OPTARG}"; debug_opts_msg "スクリプトディレクトリが${OPTARG}に指定されました。" ;;
t) window_text="${OPTARG}"; debug_opts_msg "ウィンドウタイトルが${OPTARG}に設定されました。" ;;
u) aur_user="${OPTARG}";;
v) show_version;;
w) enable_bash_debug; enable_debug;;
x) enable_bash_debug;;
z) enable_debug;;
-)
case "${OPTARG}" in
enable-arch ) enable_arch;;
dpkg ) enable_installed_list_dpkg;;
update-info ) show_updater_info;;
help ) show_help ;;
pacman ) enable_installed_list_pacman;;
version ) show_updater_info;;
bash-debug ) enable_bash_debug;;
debug ) enable_debug;;
* ) error 600 100 "引数が無効です。"; exit 1;;
esac
;;
"") : ;;
* ) exit 1;;
esac
done
#-- Rootチェック --#
if [[ ! "${UID}" = 0 ]]; then
if [[ ! -f /tmp/user || -w /tmp/user ]]; then
echo -n 'aur_user=' > /tmp/user
echo "$(whoami)" >> /tmp/user
fi
pkexec env DISPLAY="${DISPLAY}" XAUTHORITY="${XAUTHORITY}" "${current_path}" ${options}
exit
fi
#-- check_pkgについて --#
if [[ ! "$(type -t installed_list)" = "function" ]]; then
if [[ -f "/usr/bin/pacman" ]]; then
enable_installed_list_pacman
elif [[ -f "/usr/bin/apt-get" ]]; then
enable_installed_list_dpkg
else
error 800 100 "${settings}で、installed_listをディストリビューションごとに設定してください。\nわからない場合は、ディストリビューションの配布元へ連絡してください。"
exit 1
fi
fi
#-- スクリプトディレクトリのチェック --#
if [[ ! -d "${script_dir}" ]]; then
error 600 100 "${script_dir}が存在しません。"
exit
fi
#-- pacapt --#
if [[ "${ID}" = "arch" || "${ID}" = "arch32" ]]; then
pacman=pacman
else
if [[ ! -f "${pacman}" ]]; then
error 600 100 "${pacman}が存在しません。"
exit 1
fi
if [[ ! -x "${pacman}" ]]; then
chmod 755 "${pacman}"
fi
fi
#-- set false --#
[[ ! "${recall}" = true ]] && recall=false
[[ ! "${run_in_terminal}" = true ]] && run_in_terminal=false
[[ ! "${debug_mode}" = true ]] && debug_mode=false
#-- softwares-update --##
if [[ "${softwares_update}" = "debug" ]]; then
if [[ -f /tmp/softwares_update ]]; then
rm -f /tmp/softwares_update
fi
echo -e '#!/usr/bin/env bash\n\nzenity --warning --text="疑似ソフトウェアアップデート デバッグモード" --width="300" --height="100"' > /tmp/softwares_update
chmod 755 /tmp/softwares_update
softwares_update=/tmp/softwares_update
fi
#-- 一時ディレクトリの作成 --#
if [[ ! -d "${temp_dir}" ]]; then
mkdir -p "${temp_dir}"
fi
#-- AURユーザー --#
debug_msg "/etc/os-releaseのIDは${ID}です。"
if [[ ! $recall = true ]]; then
if [[ "${ID}" = "arch" || "${ID}" = "arch32" ]]; then
function ask_user () {
set -eu
aur_user=$(window --entry --text="パッケージのビルドに使用する一般ユーザーを入力してください。")
set +eu
if [[ -z "${aur_user}" ]]; then
error 600 100 "ユーザー名を入力してください。"
ask_user
fi
if [[ "${aur_user}" = "root" ]]; then
error 600 100 "一般ユーザーを入力してください。"
ask_user
fi
}
if [[ -n "${aur_user}" ]]; then
if [[ "${aur_user}" = root ]]; then
error 600 100 "rootは使用できません。"
ask_user
else
warning 600 100 "デバッグ用引数で指定されたユーザー(${aur_user})を使用します。この設定は/tmp/userに保存されます。"
fi
elif [[ -f /tmp/user ]]; then
source /tmp/user
if [[ -n ${aur_user} ]]; then
info 600 100 "/tmp/userに保存されているユーザー(${aur_user})を使用します。"
else
ask_user
fi
[[ -z "${aur_user}" ]] && ask_user
elif [[ ! "${SUDO_USER}" = root && -n "${SUDO_USER}" ]]; then
aur_user="${SUDO_USER}"
info 600 100 "sudoで使用されていたユーザー(${aur_user})を使用します。この設定は/tmp/userに保存されます。"
else
ask_user
fi
while [ $(user_check "${aur_user}") = 1 ]; do
error 600 100 "指定されたユーザー(${aur_user})は正しくありません。"
ask_user
done
if [[ -f /tmp/user ]]; then
rm -f /tmp/user
fi
echo "aur_user=${aur_user}" > /tmp/user
export aur_user="${aur_user}"
fi
fi
debug_msg "AURユーザーは${aur_user}に設定されました。"
#-- クリーンアップ --#
function cleanup () {
"${pacman}" -Scc --noconfirm | loading 600 100 "クリーンアップを実行中です。"
if [[ "${ID}" = "arch" || "${ID}" = "arch32" ]]; then
if [[ -n "$(pacman -Qttdq)" ]]; then
pacman -Qttdq | pacman -Rsnc - | loading 600 100 "クリーンアップを実行中です。"
fi
else
"${pacman}" -Rsn --noconfirm | loading 600 100 "クリーンアップを実行中です"
fi
}
#-- データベースのアップデート --#
function update_db () {
"${pacman}" -Syy --noconfirm
}
#-- パッケージのアップグレード --#
function upgrade_pkg () {
"${pacman}" -Syu --noconfirm
}
#-- インストールとアンインストール --#
function install_and_uninstall () {
# スクリプトのアップデート処理
if [[ -n "${softwares_update}" && -f "${softwares_update}" && -x "${softwares_update}" ]]; then
"${softwares_update}" | loading 600 100 "スクリプトを更新しています。"
fi
# スクリプト読み込み
scripts=($(cd "${script_dir}"; ls *.${entry_extension}; cd ..))
for package in ${scripts[@]}; do
source ${script_dir}/${package}
function check_func () {
if [[ ! $(type -t ${1}) = "function" ]]; then
error 600 100 "スクリプト${package}の${1}関数が間違っています。"
exit 1
fi
}
function check_variable () {
eval variable="${1}"
if [[ -z "${variable}" ]]; then
error 600 100 "スクリプト${package}の${variable}変数が間違っています。"
exit 1
fi
}
check_variable name
if [[ ! "${install_check}" = false ]]; then
check_variable package_name
check_func uninstall
fi
check_variable description
check_variable run_preparing
check_func install
if [[ "${run_preparing}" = true ]]; then
check_func preparing
fi
clear_variable
done
# リスト
window \
--warning \
--width="600" \
--height="100" \
--text="スクリプトの読み込みを行います。これにはしばらく時間がかかる場合があります。\nしばらくたっても表示されない場合はターミナル上でスクリプトを実行してみてください。" \
--ok-label="読み込み開始"
gen_list () {
window \
--list \
--checklist \
--column="選択" \
--column="パッケージ" \
--column="インストール済" \
--column="説明" \
--width="900" \
--height="500" \
--text="インストールまたは削除したいパッケージを選択してください。" \
$(
scripts=($(cd "${script_dir}"; ls *.${entry_extension}; cd ..))
for package in ${scripts[@]}; do
source ${script_dir}/$package
if [[ "${install_check}" = false ]]; then
status_display="'None'"
elif [[ $(check_pkg "${package_name}") = 0 ]]; then
status_display="'はい'"
else
status_display="'いいえ'"
fi
echo "FALSE"
echo "'${name}'"
echo "'${status_display}'"
echo "'${description}'"
clear_variable
done
)
}
selected_list=$(gen_list; exit_code=$?)
selected_list=(${selected_list//'|'/ })
if [[ ! ${exit_code} = 0 && -z "${selected_list}" ]]; then
error 600 100 "パッケージが選択されませんでした。$(
if [[ ! $direct_execution = "true" ]]; then
echo 'トップに戻ります。'
else
echo '終了します。'
fi
)"
call_me $options
exit
fi
# データベースの更新
update_db | loading 600 100 "リポジトリデータベースを更新しています。"
# 実行
for selected in ${selected_list[@]}; do
# 選択パッケージに対応しているファイルを探す
scripts=($(cd $script_dir; ls *.${entry_extension}; cd ..))
for package in ${scripts[@]}; do
set name
set description
set preparing
set install
source $script_dir/$package
if [[ $name = $selected ]]; then
break
fi
clear_variable
done
# インストール or アンインストール
source $script_dir/$package
if [[ $install_check = false ]]; then
set -eu
window \
--question \
--text="スクリプト${name}を適用します。よろしいですか?\nこのスクリプトは適用済、未適用を判定していません。複数回の適用は正常に動作しない可能性がありますので注意してください。" \
--ok-label="続行する" \
--cancel-label="中断する" \
--width=600 \
--height=100
if $run_preparing; then
preparing | loading 600 100 "パッケージをビルドしています"
fi
install | loading 600 100 "パッケージ${name}をインストールしています"
set +eu
else
if [[ $(check_pkg ${package_name}) = 1 ]]; then
set -eu
window \
--question \
--text="パッケージ${name}をインストールします。よろしいですか?" \
--ok-label="続行する" \
--cancel-label="中断する" \
--width=600 \
--height=100
set +eu
if [[ "${run_preparing}" = true ]]; then
if [[ -n "${preparing_msg}" ]]; then
set -eu
preparing | loading 600 100 "${preparing_msg}"
set +eu
else
set -eu
preparing | loading 600 100 "パッケージをビルドしています"
set +eu
fi
fi
set -eu
install | loading 600 100 "パッケージ${name}をインストールしています"
set +eu
else
set -eu
window \
--question \
--text="パッケージ${name}をアンインストールします。よろしいですか?" \
--ok-label="続行する" \
--cancel-label="中断する" \
--width=600 \
--height=100
uninstall | loading 600 100 "パッケージ${name}をアンインストールしています。"
set +eu
fi
fi
done
info 600 100 "処理が完了しました。\n詳細はターミナルを参照してください。"
}
#-- 実行 --#
unset exit_code
# メニュー
if [[ ! "${direct_execution}" = true ]]; then
run=$(
window \
--info \
--text="何を実行しますか?\n\n終了・・・終了します$( if [[ "${ID}" = "arch" || "${ID}" = "arch32" ]]; then echo "\nAUR情報を削除・・・保存されているAURのユーザー情報を削除します。"; fi )$( if [[ -n "${softwares_update}" && -f "${softwares_update}" && -x "${softwares_update}" ]]; then echo "\n一覧をアップデート・・・「追加と削除」で選択できる項目をアップデートします。"; fi )\nクリーンアップ・・・パッケージのクリーンアップを行います。\nアップグレード・・・パッケージのアップグレードを行います\n追加と削除・・・パッケージのインストールやアンインストールを行います。 " \
--ok-label="終了する" \
$(
# ArchLinux用メニュー
if [[ "${ID}" = "arch" || "${ID}" = "arch32" ]]; then
echo '--extra-button=AUR情報を削除'
fi
) \
$(
# スクリプトのアップデート
if [[ -n "${softwares_update}" && -f "${softwares_update}" && -x "${softwares_update}" ]]; then
# if true; then
echo "--extra-button=一覧をアップデート"
fi
) \
--extra-button="クリーンアップ" \
--extra-button="アップグレード" \
--extra-button="追加と削除" \
--width="400" \
--height="120"
)
exit_code="${?}"
case "${exit_code}" in
0 ) exit 0 ;;
* ) :;;
esac
fi
debug_msg "run=${run}"
debug_msg "exit_code=${exit_code}"
case "${run}" in
"追加と削除" ) install_and_uninstall ;;
"アップグレード" ) upgrade_pkg | loading 600 100 "パッケージのアップグレードを行っています。" ;;
"AUR情報を削除" ) rm -f /tmp/user ; info 600 100 "保存されているユーザーを削除しました" ; exit 0;;
"クリーンアップ" ) cleanup ;;
"一覧をアップデート" ) "${softwares_update}" | loading 600 100 "スクリプトを更新しています。";;
* ) error 600 100 "例外が発生しました。"; exit 1;;
esac
#-- 最初に戻る --#
call_me ${options}