API backend for Web File Manager

This commit is contained in:
Serghey Rodin 2015-07-16 02:21:22 +03:00
commit 75374e264a
11 changed files with 431 additions and 42 deletions

View file

@ -1,58 +1,49 @@
#!/bin/bash
# File copier
# info: copy file
# options: USER SRC_FILE DST_FLE
#
# The function copies file on the file system
user=$1
file_src=$2
file_dst=$3
src_file=$2
dst_file=$3
# Checking arguments
if [ -z "$file_dst" ]; then
if [ -z "$dst_file" ]; then
echo "Usage: USER SRC_FILE DST_FILE"
exit 1
fi
# Checking users
# Checking vesta user
if [ ! -e "$VESTA/data/users/$user" ]; then
exit 1
fi
# Checking homedir
# Checking user homedir
homedir=$(grep "^$user:" /etc/passwd | cut -f 6 -d :)
if [ -z $homedir ]; then
exit 1
fi
# Checking source file
if [ ! -e "$file_src" ]; then
if [ ! -f "$src_file" ]; then
exit 1
fi
# Checking source path
rpath=$(readlink -f "$file_src")
if [ -z "$(echo $rpath |grep ^/tmp)" ]; then
rpath=$(readlink -f "$src_file")
if [ -z "$(echo $rpath |egrep "^/tmp|^$homedir")" ]; then
exit 1
fi
# Checking destination path
rpath=$(readlink -f "$file_dst")
if [ -z "$(echo $rpath |grep ^$homedir)" ]; then
rpath=$(readlink -f "$dst_file")
if [ -z "$(echo $rpath |egrep "^/tmp|^$homedir")" ]; then
exit 1
fi
# Checking dst file permission
if [ -e "$file_dst" ]; then
perms=$(stat --format '%a' $file_dst)
fi
# Copying file
cp $file_src $file_dst
sudo -u $user cp $src_file $dst_file >/dev/null 2>&1
# Changing ownership
chown $user:$user $file_dst
# Changin permissions
if [ ! -z "$perms" ]; then
chmod $perms $file_dst
fi
exit
# Exiting
exit $?