-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcli.php
48 lines (44 loc) · 1.69 KB
/
cli.php
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
<?php
function __autoload($class_name) {
include $cat = str_replace('\\', '/', $class_name) . '.php';
}
date_default_timezone_set('GB');
ini_set('display_startup_errors', '1');
ini_set('display_errors', '1');
$filename = array_shift($argv);
$command = array_shift($argv);
$controller = new \db\controller($argv);
$result['error'] = true;
$result['message'] = "Wrong Argument, type help to see more\n";
$result['body'] = "use create, update \$id, show \$id, and more\n";
switch ($command) {
case "create":
$result = $controller->create();
break;
case "update":
$id = array_shift($argv);
$controller->setRequestParameters($argv);
$result = $controller->update($id);
break;
case "show":
$id = array_shift($argv);
$controller->setRequestParameters($argv);
$result = $controller->show($id);
break;
case "help":
$result['error'] = false;
$result['body'] = "Use the following commands in HMS: \n"
."create fname=name lname=family gender=1 birthdate=1900-01-01 fatherID=id motherID=id dead=0 \n"
."update id something=newValue or adopt a son or daughter or die\n"
."to show the information you can use : \nshow all \n"
."show id\n"
."show id sons/daughters/children/father/mother or more\n"
."show id theOldestInFamily? or orphan?\n";
default:
break;
}
if (!$result['error'])
echo $result['body']."\n";
else
echo $result['message']."\n";
?>