GameHub is an online gaming website created by Erald Kola, Kledi Haxhimali and Terens Tare for the course "Web Technologies" at Epoka University.
The website uses the following technologies:
To run the website, you need to have a web server with PHP and MySQL installed. You can use XAMPP for this purpose. First, start a MySQL server. Then, start a web server and open localhost:port
on your web browser of choice.
The database is created using the gamehub.sql
file. It is automatically imported when you create the website. A default user with the following credentials is created:
- Username:
admin
- Password:
Adminn1234
- Role:
admin
The folder structure is as follows:
controllers
: contains the PHP files that handle the requests.games
: contains the games that are uploaded by the users. Inside this folder there is agames.json
file that contains data about the available games. The format of this file is:
[
{
"name": "<Game-Name>",
"folder": "<Game-Folder>",
"tags": [
"<Tag-1>",
"<Tag-2>",
"<Tag-3>"
...
],
}
]
To add a new game, you need to add a new entry in the games.json
file and create a folder with the same name as the game in the games
folder. Inside this folder, there should be an index.js
file that contains the game code. You can render to the canvas
element with id game
. Along with the game code, you need to add an icon.png
file that will be used as the game icon. For an example, you can check the snake
game inside the games
folder. The website will any new data from this file to the database on startup.
models/db
: contains the PHP files that describe the database tables. These files contain classes that derive from a commonTable
class, which contains some methods representing a common set of database operations.routes
: contains the PHP files that handle the requests. These files are called by theindex.php
file. Each of these files contains a class with anenter
function that just imports the corresponding view file from theviews
folder.utils
: contains the PHP files that contain utility functions/definitions, such as theDb
class that is used to connect to the database, or the regex constants that are used to validate the user input.views
: contains the PHP files that render the HTML pages. These files are called by theroutes
files. Some of these files contain just a widget instead of a full page, such as navbar.index.php
: the main file that handles the requests. It calls the correspondingroutes
file based on the request URL. This is achieved by using theRouter
utility class that is defined in theutils
folder. We define a route for each page in the website, using the files from theroutes
folder. The.htaccess
file is used to redirect all requests to theindex.php
file, which then redirects the request to the correspondingroutes
file.