myvesta/bin/v-open-fs-file
2014-07-30 15:41:06 +03:00

37 lines
524 B
Bash
Executable File

#!/bin/bash
# File reader
user=$1
path=$2
# Checking arguments
if [ -z "$path" ]; then
echo "Usage: USER PATH"
exit 1
fi
# Checking users
if [ ! -e "$VESTA/data/users/$user" ]; then
exit 1
fi
# Checking homedir
homedir=$(grep "^$user:" /etc/passwd | cut -f 6 -d :)
if [ -z $homedir ]; then
exit 1
fi
# Checking path
if [ ! -z "$path" ]; then
# Validating absolute path
rpath=$(readlink -f "$path")
if [ -z "$(echo $rpath |grep $homedir)" ]; then
exit 1
fi
fi
cat "$path"
exit