This is an DIY practical.
You must to get your solution to your GitLab repository before 23.3.2025.
./practical-03/
The objective is to expand the application from previous practical by:
Please see following slides for details and instructions.
Your database schema must resemble the one below. Feel free to add indices and foreign keys at will.
CREATE TABLE `Articles` (
`id` int NOT NULL AUTO_INCREMENT,
`author_id` int,
`title` varchar(128) NOT NULL,
`content` varchar(1024) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
CREATE TABLE `Authors` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
You can connect to MySQL at webik using phpMyAdmin, or Adminer.
You can connect to the database using SSH tunel from your computer.
ssh {user-name}@webik.ms.mff.cuni.cz -p 42222 -L 3306:localhost:3306
This will open the shell as well. You can use "-N" to not execute a remote command.
Start with a small example, just connect to the database and list content of a table.
First you need to install dependencies. See Project setup. Think about what you are installing and why, do not just copy and paste. Do you need all listed dependencies?
Next, continue with Obtaining the EntityManager. Keep in mind what database and driver you are using. You also need to enable the driver (mysqli extension) in your PHP installation. For purpose of this project please use mysqli driver.
The next step is to create you entities. Those will be mapped to database tables. You can draw inspiration from the tutorial section Product Entity, Bug, and User entity.
Tro to utilize PHP-DI to inject repositories (EntityManager.getRepository) not the EntityManager. You should have one repository for Articles and one for Authors.
Your application needs to load the configuration from somewhere. The configuration includes: database connection details and base path.
Use parse_ini_file to parse and load configuration from "practical-03/.env" file. Your application must be able to load files of following structure:
DATABASE_NAME = skoda
DATABASE_USER = skoda
DATABASE_PASSWORD = heslo1234
BASE_URL = /~skoda/nswi153/practical-03
Finish implementation of the pages:
For each article in the list show: title and author name. For each author in the list show: name and list names of all authored articles.
Add following API endpoints.
...