#!/bin/bash

# Sparky Check Groups is a simply tool which lets you check any user's groups
# Created by Paweł "pavroo" Pijanowski 2013/Oct/28
# Copyright 2013-2019 under the GNU GPL2 License
# Last updated 2019/11/27 by pavroo

# get default's locale file
DEFLOCDIR="/usr/share/sparky/sparky-users"
if [ "`cat /etc/default/locale | grep de`" != "" ]; then
. $DEFLOCDIR/de
elif [ "`cat /etc/default/locale | grep el`" != "" ]; then
. $DEFLOCDIR/el
elif [ "`cat /etc/default/locale | grep es`" != "" ]; then
. $DEFLOCDIR/es
elif [ "`cat /etc/default/locale | grep fr`" != "" ]; then
. $DEFLOCDIR/fr
elif [ "`cat /etc/default/locale | grep hu`" != "" ]; then
. $DEFLOCDIR/hu
elif [ "`cat /etc/default/locale | grep id_ID`" != "" ]; then
. $DEFLOCDIR/id_ID
elif [ "`cat /etc/default/locale | grep it`" != "" ]; then
. $DEFLOCDIR/it
elif [ "`cat /etc/default/locale | grep ja`" != "" ]; then
. $DEFLOCDIR/ja
elif [ "`cat /etc/default/locale | grep pl`" != "" ]; then
. $DEFLOCDIR/pl
elif [ "`cat /etc/default/locale | grep pt_BR`" != "" ]; then
. $DEFLOCDIR/pt_BR
elif [ "`cat /etc/default/locale | grep pt_PT`" != "" ]; then
. $DEFLOCDIR/pt_PT
elif [ "`cat /etc/default/locale | grep ru`" != "" ]; then
. $DEFLOCDIR/ru
else
. $DEFLOCDIR/en
fi

DIALOG="`which yad` --width=450 --height=250 --window-icon=gtk-find --image=gtk-find"
TEXT="--text="
TITLE="--title="
ENTRY="--entry"
OKEXIT="--button=Ok:0 --button=$LOCAL5:1"
OKBUTTON="--button=Ok:0"

USER3=`$DIALOG $TEXT"$LOCAL20" $TITLE"$LOCAL21" $ENTRY $OKEXIT`

if [ "$?" != "0" ]; then
	$DIALOG $TEXT"$LOCAL22" $TITLE"$LOCAL23" $OKBUTTON
	exit 1

else
	GROUP3=`groups $USER3 | cut -d "|" -f 1`

	$DIALOG $TEXT"$LOCAL24\n$GROUP3 \n$LOCAL25" $TITLE"$LOCAL23" $OKBUTTON
	exit 0

fi

exit 0
