You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
#!/bin/bash
|
|
# info: list directory
|
|
# options: USER DIRECTORY
|
|
#
|
|
# example: v-list-fs-directory /home/admin/web
|
|
#
|
|
# This function lists directory on the file system
|
|
|
|
user=$1
|
|
path=$2
|
|
|
|
# Includes
|
|
# shellcheck source=/etc/hestiacp/hestia.conf
|
|
source /etc/hestiacp/hestia.conf
|
|
# shellcheck source=/usr/local/hestia/func/main.sh
|
|
source $HESTIA/func/main.sh
|
|
# load config file
|
|
source_conf "$HESTIA/conf/hestia.conf"
|
|
|
|
#----------------------------------------------------------#
|
|
# Verifications #
|
|
#----------------------------------------------------------#
|
|
|
|
check_args '1' "$#" 'USER [DIRECTORY]'
|
|
is_format_valid 'user'
|
|
is_object_valid 'user' 'USER' "$user"
|
|
|
|
# Checking user homedir
|
|
homedir=$(grep "^$user:" /etc/passwd | cut -f 6 -d :)
|
|
if [ -z $homedir ]; then
|
|
echo "Error: user home directory doesn't exist"
|
|
exit 12
|
|
fi
|
|
|
|
# Checking path
|
|
if [ ! -z "$path" ]; then
|
|
rpath=$(readlink -f "$path")
|
|
if [ -z "$(echo $rpath | grep $homedir)" ]; then
|
|
echo "Error: invalid path $path"
|
|
exit 2
|
|
fi
|
|
else
|
|
path=$homedir
|
|
fi
|
|
|
|
# Listing directory
|
|
user_exec find "$path" -maxdepth 1 \
|
|
-printf "%y|%m|%TY-%Tm-%Td|%TH:%TM|%u|%g|%s|%P\n" 2> /dev/null
|
|
|
|
# Exiting
|
|
exit $?
|