diff options
author | adam <adam@> | 2021-02-15 11:46:00 +0200 |
---|---|---|
committer | adam <adam@> | 2021-02-15 11:46:00 +0200 |
commit | da7b9b5455c46abcab2d093147b21430ee42683a (patch) | |
tree | 39141f297b467843fea726d3c97891aa08eac70c | |
parent | 2bd33c027d19fa39a4c6505a901cdea0b16924d2 (diff) | |
download | fileup-da7b9b5455c46abcab2d093147b21430ee42683a.tar.gz |
asdf
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | php/database.php | 40 | ||||
-rw-r--r-- | php/node.php | 2 |
3 files changed, 30 insertions, 13 deletions
@@ -1,2 +1,3 @@ screen files +php/custom_configuration.php diff --git a/php/database.php b/php/database.php index c951576..9d1f782 100644 --- a/php/database.php +++ b/php/database.php @@ -117,7 +117,8 @@ require_once "node.php"; } /* I think this only makes sense if node is a dir*/ /* returns assoc array of nodes*/ - function get_links_of(int $node_id) + /* returns permissions as well*/ + function get_links_of(int $node_id,int $user_id) { $statement=$this->pdo->prepare(" select node_links.node_id as id, @@ -125,13 +126,20 @@ require_once "node.php"; node_links.note as note, nodes.is_directory as is_directory, nodes.code as code, - nodes.type as mimetype + nodes.type as mimetype, + node_access.can_view as can_view, + node_access.can_view as can_eddit from node_links inner join nodes on - nodes.node_id=node_links.node_id - where node_links.directory_id=:id + nodes.node_id=node_links.node_id + inner join node_access on + node_access.node_id=node_links.node_id + where + node_links.directory_id=:id and + node_access.user_id=:user_id "); $statement->bindParam(':id',$node_id); + $statement->bindParam(':user_id',$user_id); if($statement->execute()==false) { error_log("there is an error in the sql statement in get_links_of"); @@ -439,14 +447,16 @@ require_once "node.php"; } - function create_home_directory():int + function create_home_directory() { - $ret=$this->create_dangling_directory(); + $home_id=$this->create_dangling_directory(); $trash_folder_id=$this->create_dangling_directory(); - $this->link_nodes($ret,$trash_folder_id,"trash","trash folder"); + $this->link_nodes($home_id,$trash_folder_id,"trash","trash folder"); $share_folder_id=$this->create_dangling_directory(); - $this->link_nodes($ret,$share_folder_id,"share","shared things go in here"); + $this->link_nodes($home_id,$share_folder_id,"share","shared things go in here"); + + $ret=array("home" => $home_id, "trash" => $trash_folder_id , "share" =>$share_folder_id); return $ret; } @@ -647,12 +657,12 @@ require_once "node.php"; }else { $hashed_pass=password_hash($password,$password_hash_algo); - $home_dir=$this->create_home_directory(); + $dirs=$this->create_home_directory(); $prep=$this->pdo->prepare("insert into users(username,password,email,home_directory) values(:username,:password,:email,:dir)"); $prep->bindParam(':username',$user); $prep->bindParam(':password',$hashed_pass); $prep->bindParam(':email',$email); - $prep->bindParam(':dir',$home_dir); + $prep->bindParam(':dir',$dirs["home"]); if($prep->execute()==false) { error_log("can't create user because there was an error in the sql statement"); @@ -660,8 +670,14 @@ require_once "node.php"; exit(1); } $user_id=$this->get_user($user)->user_id; - $this->give_view_access($home_dir,$user_id); - $this->give_edit_access($home_dir,$user_id); + $this->give_view_access($dirs["home"],$user_id); + $this->give_edit_access($dirs["home"],$user_id); + + $this->give_view_access($dirs["trash"],$user_id); + $this->give_edit_access($dirs["trash"],$user_id); + + $this->give_view_access($dirs["share"],$user_id); + $this->give_edit_access($dirs["share"],$user_id); } return true; } diff --git a/php/node.php b/php/node.php index d434f1c..646f147 100644 --- a/php/node.php +++ b/php/node.php @@ -48,7 +48,7 @@ require_once "user.php"; $dir_id=get_directory($abstract_path,$user); if($dir_id==NULL) return NULL; - return $database->get_links_of($dir_id); + return $database->get_links_of($dir_id,$user->user_id); } /*path is in terms of the simulated filesystem*/ |