Skip to content

ineeve/lbaw1713

Repository files navigation

LBAW, FEUP

Name: GROUP1713
Theme: Collaborative News

Element College e-mail
Anabela Costa e Silva up201506034@fe.up.pt
Beatriz Souto de Sá Baldaia up201505633@fe.up.pt
João Francisco Veríssimo Dias Esteves up201505145@fe.up.pt
Renato Alexandre Sousa Campos up201504942@fe.up.pt

Installing the Software Dependencies

To prepare you computer for development you need to install some software, namely docker, php and the php package manager composer.

We recommend using an ubuntu distribution that ships php 7.1 (e.g Ubuntu 17.10). You can install the required software with:

sudo apt-get install git composer php7.1 php7.1-mbstring php7.1-xml php7.1-pgsql php7.1-gd

You will also need to install the latest version of docker and docker compose, as described here and here:

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

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.

Installing local PHP dependencies

After the steps above you will have updated your repository with the required laravel structure form this repository. Afterwards, the command bellow will install all local dependencies, required for development.

composer install # install locally all dependencies

Working with PostgreSQL

You will be using PostgreSQL to implement this project. We've created a docker-compose file that sets up PostgreSQL and pgadmin 4 locally. From the project root issue the following command:

sudo docker-compose up

This will start the database and pgadmin. The database's username is postgres and the password pg!fcp. You can access http://localhost:5050 to access pgadmin 4 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.

CREATE A SYMBOLIC LINK FOR IMAGE ASSETS

# Create a symbolic link in folder public pointing to storage/app/public
php artisan storage:link
# Assets should be placed in the folder storage/app/public

Developing the project

You're all set up to start developing the project. In the provided skeleton you will already find a basic todo list app, which you will modify to start implementing your own.

To start the development server, from the project's root run:

# Seed database from the seed.sql file. Needed on first run and everytime the database script changes.
php artisan db:seed
# Start the development server
php artisan serve

Access http://localhost:8000 to see the app running. If you made changes to the credentials be sure to update the .env file accordingly.

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 teachers 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/. Make 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, your 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).