jflcarvalho / lbaw1763

Project developed for 'Database and Web Applications Laboratory', a third year subject @FEUP. The objective is to create one simple website with some new frameworks.

Home Page:http://lbaw1763.lbaw-prod.fe.up.pt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

This README describes how to setup the development environment for LBAW. It was prepared to run on Linux but it should be fairly easy to follow and adapt for other operating systems.

Installing Docker and Docker Compose

Before starting you'll need to have Docker and Docker Compose installed on your PC. The official instructions are in Install Docker and in Install Docker Compose:

# install docker-ce
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
docker run hello-world # make sure that the installation worked

# install docker-compose
sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version # verify that you have Docker Compose installed.

Setting up the Development repository

You should have your own repository and a copy of the demo repository in the same folder in your machine.
Then, copy the contents of the demo repository to your own:

# clone the group repository, if not yet available locally
git clone git@github.com:<YOUR GITHUB>/lbaw17GG 

# clone the branch of the demo copy
git clone -b phpdev-on-docker git@github.com:lbaw-admin/phpdev-on-docker.git

# remove the Git folder from the demo folder
rm -rf phpdev-on-docker/.git

# goto your repository
cd lbaw17GG

# make sure you are using the master branch
git checkout master 

# copy all the demo files
cp -r ../phpdev-on-docker/. .

# add the new files to your repository
git add .  
git commit -m "Base laravel structure"
git push origin master 

Tip: If you're having trouble cloning from GitHub using ssh, check this.

Notice that you need to substitute <YOUR GITHUB> with the username of the team member that owns the repository. At this point you should have the project skeleton in your local machine and be ready to start.

Starting Docker containers

You might just go ahead and execute docker-compose up at the project root and, while it runs, come back and read this section. If you're not familiar with Docker, you can may get a quick grasp of the tool by looking into its documentation What is docker?.

Docker is a tool that allows you to run containers (similar to virtual machines, but much lighter). Docker Compose is a tool that helps managing multiple containers at once: start, pause, stop, and so on.

Configured containers

+-------+ +-------+ +-------+ +-------+
|       | |       | |       | |       |
|  PHP  | |POSTGRE| |PG     | |MAILHOG|
|       | |SQL    | |ADMIN4 | |       |
|       | |       | |       | |       |
+-------+ +-------+ +-------+ +-------+
+-------------------------------------+
|               Docker                |
+-------------------------------------+

For development purposes we have 4 configured containers. Which are specified under services at docker-compose.yml:

  1. php --- were your source code lives.
  2. postgres --- to host the development (local) database.
  3. pgadmin --- to help interacting with the database.
  4. mailhog --- offers a "fake" e-mail server and client.

We setup the php container so that the project folder is shared with the container i.e. it both lives in your PC(s) and in the container. So when you change your code it also changes inside the container. Ports are also opened and forwarded so that, for instance, when you go to http://localhost:8000 on your browser, the requests are redirected to the php container (that is where the PHP server lives).

To start the servers you simply run

docker-compose up

This will "automagically" do everything for you. But it is important that you know a thing or two about what's going on under the hood:

  1. Docker-compose will read the docker-compose.yml file and know what containers it needs to start up.
  2. For each container, it will see what image this container is based on, and fetch it (from Docker Hub). In the case of an image not being provided, e.g. the php container, a Dockerfile is used. This file is like a shell script with commnands to create the corresponding image.
  3. Once docker-compose has the image of each service, it will spin up the respective containers.
  4. Around this phase, docker-compose sets up a network among all the containers and configures the respective internal DNS entries so that from one container you can reference the remaining by its service name (e.g if from the php container you ping postgres you'll hit the database server host).
  5. When the php container is launched, the docker_run-dev.sh script is run within the container (check the Dockerfile-dev for more details). It will wait for the database server to be ready and then, if it is the first start up, it will install the project dependencies (composer install) and seed your database (php artisan db:seed). And finally, it launches the PHP server (php artisan serve).

Everything should now be up and running. Checkout your web server at http://localhost:8000, the phpAdmin at http://localhost:5050 and mailhog at http://localhost:8025. To stop the servers just hit Ctrt^C.

To restart the containers, you just issue docker-compose up again. This docker-compose up followed by Ctrl^C is similar to turn on and off your computer, meaning that everything will be kept including the data at your database. But if for some reason you want to start fresh, you can run docker-compose down which will destroy your the containers. The next time you run docker-compose up, docker instantiates brand new containers from the previously compiled images. But you'll probably just want to reseed the database Development phase. Either way, your code will always be kept because it lives in the host (your computer) and is shared with the container.

When you publish your image, the project source code will be copied to a brand new php container, slightly differently configured, and uploaded to Docker Hub. Latter on, it will be pulled by an automated process to the production machine and, due to the different setup configurations, it will connect to your database at the "dbm.fe.up.pt", using the credentials previously given to each group.

Development phase

During the development you might need to reseed your database, or reinstall PHP dependencies i.e., interact with PHP that is running inside the container. Thankfully, docker provides a quick way of executing commands inside a container from the host:

    docker exec lbaw_php php artisan db:seed
    docker exec lbaw_php composer install

Note that the container must be running in order that you can run exec. Therefore, if you pause the containers by hitting Ctrl^C, for example, it won't work. This means that you'll have to have one terminal for running the containers and another to exec commands onto the php container.

You may "enter" the container by executing:

    docker exec -it lbaw_php bash

Notice that the terminal prompt changes to something like root@acf3dbd56f07:/app# .

Working with pgAdmin

You will be using PostgreSQL to implement this project. If you've followed the previous sections namely Starting Docker Containers you should now have both PostgreSQL and pgAdmin4 running locally.

You can access http://localhost:5050 to access pgAdmin4 and manage your database. On the first usage you will need to add the connection to the database using the following attributes:

hostname: postgres
username: postgres
password: pg!fcp

Hostname is postgres instead of localhost since docker composer creates an internal DNS entry to facilitate connection between linked containers.

Setting up PHP Interpreter and Debugger

PhpStorm

You can check the official instructions here, but it roughly translates into:

  1. File > Settings
  2. Languages & Frameworks > PHP
  3. On CLI Interpreter, click (...)
  4. Click (+) > From Docker, Vagrant, VM, Remote ...
  5. Choose Docker and select lbawlaravel_php:latest as the Image Name
  6. Hit OK, and it automatically should detect PHP 7.1.15 and Xdebug 2.6.0

Laravel code structure

In Laravel, a typical web request involves the following steps and files.

1) Routes

The webpage is processed by Laravel's routing mechanism. By default, routes are defined inside routes/web.php. A typical route looks like this:

Route::get('cards/{id}', 'CardController@show');

This route receives a parameter id that is passed on to the show method of a controller called CardController.

2) Controllers

Controllers group related request handling logic into a single class. Controllers are normally defined in the app/Http/Controllers folder.

class CardController extends Controller
{
    public function show($id)
    {
      $card = Card::find($id);

      $this->authorize('show', $card);

      return view('pages.card', ['card' => $card]);
    }
}

This particular controller contains a show method that receives an id from a route. The method searches for a card in the database, checks if the user as permission to view the card, and then returns a view.

3) Database and Models

To access the database, we will use the query builder capabilities of Eloquent but the initial database seeding will still be done using raw SQL (the script that creates the tables can be found in resources/sql/seed.sql).

$card = Card::find($id);

This line tells Eloquent to fetch a card from the database with a certain id (the primary key of the table). The result will be an object of the class Card defined in app/Card.php. This class extends the Model class and contains information about the relation between the card tables and other tables:

/* A card belongs to one user */
public function user() {
  return $this->belongsTo('App\User');
}

/* A card has many items */
public function items() {
  return $this->hasMany('App\Item');
}

4) Policies

Policies define which actions a user can take. You can find policies inside the app/Policies folder. For example, in the CardPolicy.php file, we defined a show method that only allows a certain user to view a card if that user is the card owner:

public function show(User $user, Card $card)
{
  return $user->id == $card->user_id;
}

In this example policy method, $user and $card are models that represent their respective tables, $id and $user_id are columns from those tables that are automatically mapped into those models.

To use this policy, we just have to use the following code inside the CardController:

$this->authorize('show', $card);

As you can see, there is no need to pass the current user.

5) Views

A controller only needs to return HTML code for it to be sent to the browser. However we will be using Blade templates to make this task easier:

return view('pages.card', ['card' => $card]);

In this example, pages.card references a blade template that can be found at resources/views/pages/card.blade.php. The second parameter is the data we are sending to the template.

The first line of the template states it extends another template:

@extends('layouts.app')

This second template can be found at resources/views/layouts/app.blade.php and is the basis of all pages in our application. Inside this template, the place where the page template is introduced is identified by the following command:

@yield('content')

Besides the pages and layouts template folders, we also have a partials folder where small snippets of HTML code can be saved to be reused in other pages.

6) CSS

The easiest way to use CSS is just to edit the CSS file found at public/css/app.css.

If you prefer to use less, a PHP version of the less command-line tool as been added to the project. In this case, edit the file at resources/assets/less/app.less instead and keep the following command running in a shell window so that any changes to this file can be compiled into the public CSS file:

./compile-assets.sh

7) Javascript

To add Javascript into your project, just edit the file found at public/js/app.js.

Publishing your image

You should keep your git's master branch always functional and frequently build and deploy your code. To do so, you will create a docker image for your project and publish it at docker hub. LBAW's production machine will frequently pull all these images and make them available at http://<YOUR_GROUP>.lbaw-prod.fe.up.pt/. This demo repository is available at http://demo.lbaw-prod.fe.up.pt/. M ake sure you are inside FEUP's network or VPN.

First thing you need to do is create a docker hub account and get your username from it. Once you have a username, let your docker know who you are by executing:

docker login

Once your docker is able to communicate with the docker hub using your credentials configure the upload_image.sh script with your username and group's identification as well. Example configuration:

DOCKER_USERNAME=johndoe # Replace by your docker hub username
IMAGE_NAME=lbaw17GG # Replace by your lbaw group name

Afterwards, you can build and upload the docker image by executing that script from the project root:

./upload_image.sh

You can test the locally by running:

docker run -it -p 8000:80 -e DB_DATABASE=<your db username> -e DB_USERNAME=<your db username> -e DB_PASSWORD=<your db password> <DOCKER_USERNAME>/<IMAGE NAME>

The above command exposes your application on http://localhost:8000. The -e argument creates environment variables inside the container, used to provide Laravel with the required database configurations.

Note that during the build process we adopt the production configurations configured in the .env_production file. You should not add your database username and password to this file. The configuration will be provided as an environment variable to your container on execution time. This prevents anyone else but us from running your container with your database.

There should be only one image per group. One team member should create the image initially and add his team to the repository at docker hub. You should provide your teacher the details for accessing your docker image, namely, docker username and repository (DOCKER_USERNAME/lbaw17GG).

About

Project developed for 'Database and Web Applications Laboratory', a third year subject @FEUP. The objective is to create one simple website with some new frameworks.

http://lbaw1763.lbaw-prod.fe.up.pt


Languages

Language:PLpgSQL 100.0%