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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
|
<?php
require_once "configuration.php";
require_once "user.php";
require_once "misc.php";
require_once "node.php";
/*handles database stuff*/
class Database
{
private $pdo;
public function __construct()
{
global $domain_name;
global $database_name;
global $database_username;
global $database_password;
global $database_location;
$this->pdo=new PDO("mysql:dbname={$database_name};host={$database_location}",$database_username,$database_password);
}
/*returns false if this isn't a user, otherwise returns the user*/
function get_user(string $user)
{
$ret=new User;
$prep=$this->pdo->prepare("select user_id,username,email from users where username=:username");
$prep->bindParam(':username',$user);
$prep->execute();
$hold=$prep->fetch(PDO::FETCH_ASSOC);
if($hold)
{
$ret->user_id=$hold["user_id"];
$ret->username=$hold["username"];
$ret->email_address=$hold["email"];
$ret->current_directory=$hold["home_directory"];
return $ret;
}else
{
return false;
}
}
/*returns false if this isn't a user or the password is incorrect, otherwise returns the userid*/
function authenticate(string $user, string $password)
{
$ret=new User;
$prep=$this->pdo->prepare("select user_id,username,email,password,home_directory from users where username=:username");
$prep->bindParam(':username',$user);
$prep->execute();
$hold=$prep->fetch(PDO::FETCH_ASSOC);
if($hold)
{
if(password_verify($password,$hold["password"]))
{
$ret->user_id=$hold["user_id"];
$ret->username=$hold["username"];
$ret->email_address=$hold["email"];
$ret->home_directory=$hold["home_directory"];
return $ret;
}else
{
return false;
}
}else
{
return false;
}
}
/*returns assoc array*/
function get_nodes_with_name($name)
{
$statement=$this->pdo->prepare(
"select node_id
from node_links
where name=:name"
);
$statement->bindParam(':name',$name);
if($statement->execute()==NULL)
{
error_log("there was a problem with the sql statement at get_nodes_with_name");
return [];
}
return $statement->fetchAll(PDO::FETCH_ASSOC);
}
/*returns assoc array*/
function get_node_with_code($code)
{
$statement=$this->pdo->prepare(
"select node_id as id
from nodes
where code=:code"
);
$statement->bindParam(':code',$code);
if($statement->execute()==NULL)
{
error_log("there was a problem with the sql statement at get_nodes_with_code");
return [];
}
return $statement->fetchAll(PDO::FETCH_ASSOC);
}
/* I think this only makes sense if node is a dir*/
/* returns assoc array of nodes*/
function get_links_of(int $node_id)
{
$statement=$this->pdo->prepare("
select node_links.node_id as id,
node_links.name as name,
node_links.note as note,
nodes.is_directory as is_directory,
nodes.code as code
from node_links
inner join nodes on
nodes.node_id=node_links.node_id
where nodes.node_id=:id
");
$statement->bindParam(':id',$node_id);
if($statement->execute()==false)
{
error_log("there is an error in the sql statement in get_links_of");
return [];
}
return $statement->fetchAll(PDO::FETCH_ASSOC);
}
/*if both are not null returns the id of the node with the name name in the directory_id node*/
function get_node_id($name,$directory_id)
{
$statement=$this->pdo->prepare(
"select nl.node_id as id from node_links nl
inner join nodes n on n.node_id=nl.node_id
where name=:name and directory_id=:directory_id)");
$statement->bindParam(':name',$name);
$statement->bindParam(':directory_id',$directory_id);
if($statement->execute()==false)
{
error_log("there is an error in the sql statement in get_node_id");
return NULL;
}
$hold=$statement->fetch(PDO::FETCH_ASSOC);
if($hold==false)
{
return NULL;
}else
{
return $hold["id"];
}
}
/*is used to get a random codename for the node as well*/
function get_random_node_name(string $prefix)
{
do{
$proposal=uniqid($prefix,true);
}while(count($this->get_nodes_with_name($proposal))!=0);
return $proposal;
}
/*this is used to create seperate roots for the users*/
function create_dangling_directory(): int
{
$code_name=$this->get_random_node_name("");
global $storage_root;
$prep=$this->pdo->prepare("insert into nodes(is_directory,relative_path,code) values(true,:root,:code)");
$prep->bindParam(':code',$code_name);
$prep->bindParam(':root',$storage_root);
if($prep->execute()==false)
{
error_log("tried to create a dangling directory but sql statement failed. Fatal error!");
exit(1);
}
$id=$this->get_node_with_code($code_name);
if(count($id)!=1)
{
error_log("created a dangling directory but couldn't find it afterward. Fatal error!");
exit(1);
}
//print count($id);
return $id[0]["id"];
}
/*links source to target*/
function link_nodes(int $target_id,int $source_id,string $name,string $note)
{
$statement=$this->pdo->prepare("
insert into node_links(directory_id,node_id,name,note)
values (:dir,:node,:name,:note)
");
$statement->bindParam(':dir',$target_id);
$statement->bindParam(':node',$source_id);
$statement->bindParam(':name',$name);
$statement->bindParam(':note',$note);
if($statement->execute()==false)
{
error_log("there was an error with the statement ni link_nodes");
}
}
/*returns the file name as it must be in the filesystem relative to the storage root*/
function create_file_node(string $filename,string $note,int $dir_id): string
{
global $storage_root;
/*checkout the directory*/
$dir_prep=$this->pdo->prepare("
select
nodes.is_directory as is_directory,
node_access.can_edit as can_edit
from nodes
inner join node_access on
nodes.node_id=node_access.node_id
where nodes.node_id=:dir_id
");
$dir_prep->bindParam(':dir_id',$dir_id);
if($dir_prep->execute()==false)
{
error_log("could not exedude dir sql statement in create_file_node");
return "error";
}
$dir=$dir_prep->fetch(PDO::FETCH_ASSOC);
if($dir["is_directory"]==false)
{
return "error";
}
if($dir["can_edit"]==false)
{
/*TODO*/
return "error";
}
/*generate the node*/
$code=$this->get_random_node_name("");
if($filename==NULL)return "error";
$prep=$this->pdo->prepare("insert into nodes(is_directory,relative_path,code)
values(false,:root,:code)
");
$prep->bindParam(':root',"/".$code);
$prep->bindParam(':code',$code);
if($prep->execute()==false)
{
error_log("could not upload file");
/*not so quiet error*/
return "error";
}
$new_id=get_node_with_code($code);
/*link the node to the directory*/
link_nodes($dir_id,$new_id,$filename,$note);
return $code;
}
/*checks if there is a link between two node_id-s*/
function are_linked(int $directory_id,int $node_id): bool
{
$prepare=$this->pdo->prepare("select node_id
from node_links
where node_id=:node_id and directory_id=:dir_id
");
$prepare->bindParam(':node_id',$node_id);
$prepare->bindParam(':dir_id',$directory_id);
if($prepare->execute()==false)
{
error_log("there is an sql error in are_linked");
/*quiet error*/
return false;
}
if(count($prepare->fetch(PDO::FETCH_ASSOC))==1)
{
return true;
}else
{
return false;
}
}
/*returns false if username is taken, email is not checked here*/
function register_user(string $user,string $password,string $email) : bool
{
$hold=$this->get_user($user);
global $domain_name;
global $has_email_verification;
global $password_hash_algo;
if($hold)
{
return false;
}else
{
if($has_email_verification)
{
generate_email_verification_link();
}else
{
$hashed_pass=password_hash($password,$password_hash_algo);
$home_dir=$this->create_dangling_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);
if($prep->execute()==false)
{
error_log("can't create user because there was an error in the sql statement");
/*todo make an error page*/
exit(1);
}
}
return true;
}
}
}
$database=new Database();
?>
|