-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
134 lines (106 loc) · 3.72 KB
/
index.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
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
<?php
try {
require('Controller/Controller.php');
if(isset($_GET['action'])) {
if ($_GET['action'] == 'login') {
login($_POST['email'], $_POST['mdp']);
} elseif ($_GET['action'] == 'signup') {
if ($_POST['mdp'] == $_POST['cmdp']) {
signup();
}
} elseif($_GET['action'] == 'ProfileInfo') {
ProfileInfo();
}elseif($_GET['action'] == 'UpdateProfile') {
UpdateProfile();
}elseif ($_GET['action'] == 'listBooks') {
listBooks();
}elseif($_GET['action'] == 'listFavorites'){
listFavorites();
} elseif ($_GET['action'] == 'listAuthors') {
listAuthors();}
elseif ($_GET['action'] == 'addbook') {
addbook();
} elseif ($_GET['action'] == 'uploadBook') {
if (isset($_GET['id'])) {
$id = $_GET['id'];
var_dump($_POST);
uploadBook($_POST['titleBook'], $_POST['discBook'], $_POST['author'],$_POST['genreID']);
}
} elseif ($_GET['action'] == 'addAuthor') {
addAuthor();
} elseif ($_GET['action'] == 'uploadAuthor') {
if (isset($_GET['id'])) {
$id = $_GET['id'];
uploadAuthor($_POST['NameAuthor'], $_POST['DiscAuthor']);
}
}elseif ($_GET['action'] == 'BookPage') {
if (isset($_GET['id']) ) {
$id = $_GET['id'];
BookView($id);
}}
elseif ($_GET['action'] == 'AuthorPage') {
if (isset($_GET['id'])) {
$id = $_GET['id'];
AuthorView($id);}
} elseif ($_GET['action'] == 'listEvents') {
listEvents();}
elseif ($_GET['action'] == 'AddEvent') {
addEvent();
}elseif ($_GET['action'] == 'uploadEvent') {
if (isset($_GET['id'])) {
$id = $_GET['id'];
uploadEvent($_POST['event'], $_POST['eventDescription'], $_POST['eventDate'],$id);
}
}elseif ($_GET['action'] == 'search'){
search();
}elseif ($_GET['action'] == 'searchbook'){
if($_POST['genreID']!='all'){
GenreSearch($_POST['var'],$_POST['genreID']);
}else{
SearchBook($_POST['var']);}
}elseif ($_GET['action'] == 'AddFav'){
if (isset($_GET['id'] )and isset($_GET['uid'] )) {
$id = $_GET['id'];
$uid = $_SESSION['id'];
AddFavourite($id,$uid);
}
}elseif ($_GET['action'] == 'DelFav'){
if (isset($_GET['id'] )and isset($_GET['uid'] )) {
$id = $_GET['id'];
$uid = $_SESSION['id'];
DelFavourite($id,$uid);}
}elseif ($_GET['action'] =='DeleteBook'){
if (isset($_GET['id']) ){
$id= $_GET['id'];
deleteElement('book',$id);
}
}elseif ($_GET['action'] =='DeleteAuthor'){
if (isset($_GET['id']) ){
$id= $_GET['id'];
deleteElement('author',$id);
}
}elseif ($_GET['action'] =='DeleteEvent'){
if (isset($_GET['id']) ){
$id= $_GET['id'];
deleteElement('event',$id);
}
}
elseif ($_GET['action'] =='logout'){
logout();
}elseif(isset($_GET['action'])) {if($_GET['action'] == 'confirmer') {
GetNonConfUsers();
}
if($_GET['action'] == 'conf') {
ConfirmUsers($_GET['id']);
}
elseif ($_GET['action'] =='statistics'){
statistics();
}
}
}
else {
HomePage();
}
}catch(exeption $e){
$errorMessage = $e->getMessage();
}