1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
require_once "database.php";
require_once "user.php";
/*path is in terms of the simulated filesystem*/
function get_directory(string $abstract_path,User $user)
{
global $database;
if($abstract_path[0] != "/")
{
return NULL;
}
$component = strtok($abstract_path,"/");
$current_dir = $user->home_directory;
while($component)
{
$current_dir = $database->get_node_id($component, $current_dir);
$component = strtok("/");
}
return $current_dir;
}
/*returns an assoc arrat of Node-s*/
/*path is in terms of the simulated filesystem*/
function get_directory_contents(string $abstract_path,User $user)
{
global $database;
$dir_id=get_directory($abstract_path,$user);
if($dir_id==NULL)
return NULL;
return $database->get_links_of($dir_id);
}
/*path is in terms of the simulated filesystem*/
function create_directory(string $abstract_path,string $directory_name,string $note,User $user)
{
global $database;
$parent_dir_id=get_directory($abstract_path,$user);
if($database->check_if_name_is_taken($directory_name,$parent_dir_id))
{
return NULL;
}else
{
$dir_id=$database->create_dangling_directory();
$database->link_nodes($parent_dir_id,$dir_id,$directory_name,$note);
$database->give_view_access($dir_id, $user->user_id);
$database->give_edit_access($dir_id, $user->user_id);
return $dir_id;
}
}
?>
|