1#!/bin/sh
2#-
3# Copyright (c) 2012 Ron McDowell
4# Copyright (c) 2012-2013 Devin Teske
5# All rights reserved.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26# SUCH DAMAGE.
27#
28#
29############################################################ INCLUDES
30
31BSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_dprintf "%s: loading includes..." "$0"
34f_include $BSDCFG_SHARE/dialog.subr
35f_include $BSDCFG_SHARE/mustberoot.subr
36
37BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="070.usermgmt"
38f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
39
40USERMGMT_HELPFILE=$BSDCFG_LIBE/$APP_DIR/include/usermgmt.hlp
41
42f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" ipgm &&
43	pgm="${ipgm:-$pgm}"
44
45############################################################ FUNCTIONS
46
47# dialog_menu_main
48#
49# Display the dialog(1)-based application main menu.
50#
51dialog_menu_main()
52{
53	local prompt=
54	local menu_list="
55		'X' '$msg_exit'
56		'1' '$msg_add_login'
57		'2' '$msg_edit_login'
58		'3' '$msg_delete_login'
59		'-' '-'
60		'4' '$msg_add_group'
61		'5' '$msg_edit_group'
62		'6' '$msg_delete_group'
63	" # END-QUOTE
64	local defaultitem= # Calculated below
65	local hline="$hline_arrows_tab_enter"
66
67	local height width rows
68	eval f_dialog_menu_size height width rows \
69	                        \"\$DIALOG_TITLE\"     \
70	                        \"\$DIALOG_BACKTITLE\" \
71	                        \"\$prompt\"           \
72	                        \"\$hline\"            \
73	                        $menu_list
74
75	# When using Xdialog(1) we need to bump the width for the buttons
76	[ "$USE_XDIALOG" ] && width=40
77
78	# Obtain default-item from previously stored selection
79	f_dialog_default_fetch defaultitem
80
81	local menu_choice
82	menu_choice=$( eval $DIALOG \
83		--title \"\$DIALOG_TITLE\"  \
84		--backtitle \"\$DIALOG_BACKTITLE\" \
85		--hline \"\$hline\"                \
86		--ok-label \"\$msg_ok\"            \
87		--cancel-label \"\$msg_cancel\"    \
88		--help-button                      \
89		--help-label \"\$msg_help\"        \
90		${USE_XDIALOG:+--help \"\"}        \
91		--default-item \"\$defaultitem\"   \
92		--menu \"\$prompt\"                \
93		$height $width $rows               \
94		$menu_list                         \
95		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
96	)
97	local retval=$?
98	f_dialog_data_sanitize menu_choice
99	f_dialog_menutag_store "$menu_choice"
100
101	# Only update default-item on success
102	[ $retval -eq $DIALOG_OK ] && f_dialog_default_store "$menu_choice"
103
104	return $retval
105}
106
107############################################################ MAIN
108
109# Incorporate rc-file if it exists
110[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
111
112#
113# Process command-line arguments
114#
115while getopts h$GETOPTS_STDARGS flag; do
116	case "$flag" in
117	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
118	esac
119done
120shift $(( $OPTIND - 1 ))
121
122#
123# Initialize
124#
125f_dialog_title "$msg_login_management"
126f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
127f_mustberoot_init
128
129#
130# Launch application main menu
131#
132while :; do
133	dialog_menu_main
134	retval=$?
135	f_dialog_menutag_fetch mtag
136	f_dprintf "retval=%u mtag=[%s]" $retval "$mtag"
137
138	if [ $retval -eq $DIALOG_HELP ]; then
139		f_show_help "$USERMGMT_HELPFILE"
140		continue
141	elif [ $retval -ne $DIALOG_OK ]; then
142		f_die
143	fi
144
145	command=
146	case "$mtag" in
147	X) break ;;
148	1) command=useradd   ;; # Add User
149	2) command=useredit  ;; # Edit/View User
150	3) command=userdel   ;; # Delete User
151	4) command=groupadd  ;; # Add Group
152	5) command=groupedit ;; # Edit/View Group
153	6) command=groupdel  ;; # Delete Group
154	esac
155
156	if [ "$command" ]; then
157		$BSDCFG_LIBE/$APP_DIR/$command ${USE_XDIALOG:+-X}
158	else
159		f_die 1 "$msg_unknown_user_management_menu_selection"
160	fi
161done
162
163exit $SUCCESS
164
165################################################################################
166# END
167################################################################################
168