This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
concerts.php
186 lines (155 loc) · 7.58 KB
/
concerts.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
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
<?php
session_start();
include("connection.php");
include("functions.php");
$user_data = check_login($con);
check_user();
function isFave($cid,$con){
$uid = $_SESSION['user_id'];
$checkQuery = "SELECT * FROM favorites WHERE user_id = $uid AND concert_id = $cid";
$result = mysqli_query($con, $checkQuery);
if($result && mysqli_num_rows($result)===1){
return true;
}else{
return false;
}
}
?>
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>Jukebox | Concerts </title>
<link rel="shortcut icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="/src/concerts.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&family=Work+Sans:ital,wght@0,100;0,200;0,400;0,500;0,600;1,100&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="/src/concerts.js"> </script>
<script src="/src/filter.js"> </script>
<style>
body {
background-image: url('cdn/background.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
font-family: "Roboto",sans-serif;
font-family: 'Work Sans', sans-serif;
overflow:auto;
}
html{
scroll-behavior: smooth;
}
</style>
</head>
<body>
<div class = "filter-button-div" id="filterBtn">
<button onclick ="showFilters()" class="filter-button"><img src="/assets/filter.png" alt="Filter Concerts"></button>
</div>
<div class = "filter-box" id="filterBox">
<div class = "title"><h1>Filters</h1></div>
<div><h2>Title</h2>
<input type="text" class="input-box" id="titleCriteria" placeholder="Enter concert title">
</div>
<div><h2>Artist Name</h2>
<input type="text" class="input-box" id="artistCriteria" placeholder="Enter artist name">
</div>
<div><h2>Category</h2>
<input type="text" class="input-box" id="genreCriteria" placeholder="Enter category (e.g. Rock)">
</div>
<div><h2>Date</h2>
<input type="date" class="input-box" id="dateCriteria" >
</div>
<div><h2>Organized by</h2>
<input type="text" class="input-box" id="unameCriteria" placeholder="Enter Username" >
</div>
</div>
<div class = "bottom-arrow" id="filterBoxArrow"></div>
<div class="banner">
<div class="navbar">
<div class="logo">
<a href="index.php"><img src="cdn/logo.png"></a>
</div>
<div class="dropdown">
<button class="dropbtn waving">
<?php
if($_SESSION['user_role'] === "ADMIN"){
echo 'ADMIN';
}elseif($_SESSION['user_role'] === "ORGANIZER"){
echo 'ORGANIZER';
}elseif($_SESSION['user_role'] === "USER"){
echo 'USER';
}else{
echo 'Internal Error';
die;
}
?>
MENU</button>
<div class="dropdown-content">
<?php
if($_SESSION['user_role'] === "ADMIN"){
echo '<a href="administration.php">User Catalog Tools</a>';
}elseif($_SESSION['user_role'] === "ORGANIZER"){
echo '<a href="organizer.php">Organizer Tools</a>';
}elseif($_SESSION['user_role'] === "USER"){
echo '<a href="concerts.php">Concerts</a>';
echo '<a href="favorites.php">Favorites</a>';
}else{
echo 'Internal Error';
die;
}
?>
<a href="mailto:admin@jukebox.com">Report a problem</a>
</div>
</div>
<div>
<button id="logoutBtn" type="button" class="logoutbtn" onclick="logout()" title="Sign out from <?php echo $_SESSION['uname'];?>">
<img src="assets/logout.png" alt="Logout">
</button>
</div>
<div>
<span> <img src="/assets/user.png" alt="User icon" class = "userico">
<p class="userinfo">
<?php
printf("%s %s (%s)",$_SESSION['last_name'],$_SESSION['first_name'], $_SESSION['user_role']);
?>
</p>
</span>
</div>
</div>
<div class="content">
<h1><span class="waving"> Browse among various concerts</span></h1>
<div class="concert-container">
<ul class="concert-list">
<?php
$query = "SELECT * FROM concerts";
if($result = mysqli_query($con, $query)){
if(mysqli_num_rows($result) > 0){
while($row = mysqli_fetch_array($result)){
echo '<li class="concert-box" cid="'.$row['id'].'" title="' .$row['title']. '" artist="'.$row['artistname'].'" genre="'.$row['category'].'" organizer="'.getUnameByID($row['organizer'],$con)['username'].'" date="'.$row['date'].'">';
echo '<div><h1>\'\'' . $row['title'] . '\'\'</h1></div>';
echo '<div><h2>Artists: ' . $row['artistname'] . '</h2></div>';
echo '<div><h2>Category: ' . $row['category'] . '</h2></div>';
echo '<div><p>Date: ' . $row['date'] . '<br>By: ' . getUnameByID($row['organizer'],$con)['username'] . '</p></div>';
$class = $func = "";
if(isFave($row['id'],$con)){
$class = "faved";
$func = "removeFave(".$row['id'].")";
}else{
$func = "addFave(".$row['id'].")";
}
echo '<div><button class="favorite-button unfaved '.$class.'" id="btnconcert'. $row['id'] .'" onclick="'.$func.'"><img src="" alt="fave" id="imgconcert'. $row['id'] .'"></button></div>';
echo '</li>';
}
}
}
?>
</ul>
</div>
<div class="divider">
</div>
</div>
</div>
</body>