Setup Guide and Project Overview
, (*1)
, (*2)
Setup Guide Symfony 4
1) Install the bundle, don't do the recipe at this time., (*3)
composer require start-kit-symfony/start-bundle
2) Add the api routes to the bundle in the config -> routes.yaml, (*4)
starter_kit_start:
resource: "@StarterKitStartBundle/Resources/config/routing.yml"
3) Add NelmioApiDocBundle to bundles.php in -> config folder, (*5)
Nelmio\ApiDocBundle\NelmioApiDocBundle::class => ['all' => true],
4) Add a nelmio_api_doc.yaml to the config folder and paste this in there., (*6)
nelmio_api_doc:
routes:
path_patterns: # an array of regexps
- ^/(api(?!-docs))
- ^/oauth
- ^/login_check
- ^/access-tokens
models: { use_jms: false }
documentation:
info:
title: 'Symfony Starter Api'
description: 'Our Symfony Starter Kit Api Documentation.'
version: 1.0.0
5) Add the service alias to services.yaml file. This is a temporary hack., (*7)
Nelmio\ApiDocBundle\ApiDocGenerator: '@nelmio_api_doc.generator'
6) Add A controller class called ApiDocController and add method called apiDoc, (*8)
<?php
namespace App\Controller;
use Nelmio\ApiDocBundle\ApiDocGenerator;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class ApiDocController extends Controller
{
/**
* @var ApiDocGenerator
*/
private $apiDocGenerator;
public function __construct(ApiDocGenerator $apiDocGenerator)
{
$this->apiDocGenerator = $apiDocGenerator;
}
/**
* @Route(name="api_docs", path="api-docs", methods={"GET"})
*
* @param Request $request
* @return Response
*/
public function apiDoc(Request $request)
{
$spec = $this->apiDocGenerator->generate()->toArray();
if ('' !== $request->getBaseUrl()) {
$spec['basePath'] = $request->getBaseUrl();
}
return $this->render('@NelmioApiDoc/SwaggerUi/index.html.twig', ['swagger_data' => ['spec' => $spec]]);
}
}
7) Create a jwt directory in your var folder, (*9)
mkdir var/jwt
8) Create your private key with and write down the pass phrase you used., (*10)
openssl genrsa -out var/jwt/private.pem -aes256 4096
9) Create your public key, you will need the pass phrase here and in the composer install step, (*11)
openssl rsa -pubout -in var/jwt/private.pem -out var/jwt/public.pem
10) In your App -> Entity folder create a User class that extends the BaseUser., (*12)
11) When u create your s3 Bucket you will need to a folder for each environment you have. In that folder you will need to add another folder called profile_pics which is where the personal pictures are stored. Say you have dev and prod. You can over ride this or not use s3 if you want to., (*13)
prod -> profile_pics
dev -> profile_pics
12) Fill out all the information for setting up service parameters in your .env file., (*14)
###> start-kit-symfony/start-bundle ###
# The Secret Pass
JWS_PASS_PHRASE=secret_change
JWS_TTL=5184000
REFRESH_TOKEN_TTL=10368000
# Facebook Config
FACEBOOK_APP_SECRET=facebook_secret
FACEBOOK_APP_ID=facebook_app_id
FACEBOOK_API_VERSION=2.10
# Google
GOOGLE_CLIENT_ID=google_client_id
# Amazon
AWS_KEY=amazon_key
AWS_SECRET=amazon_secret
AWS_REGION=us-west-2
AWS_BUCKET=fake-bucket
AWS_VERSION=2006-03-01
# Slack
SLACK_CLIENT_KEY=slack_client_key
SLACK_CLIENT_ID=slack_client_id
###< start-kit-symfony/start-bundle ###
APP_EMAIL=fake_email@gmail.com
14) Create a folder in your App called "Entity" and in that folder create an Entity Class called User., (*15)
<?php
namespace AppBundle\Entity;
use StarterKit\StartBundle\Entity\BaseUser;
use Doctrine\ORM\Mapping as ORM;
use StarterKit\StartBundle\Entity\FacebookTrait;
use StarterKit\StartBundle\Entity\GoogleTrait;
use StarterKit\StartBundle\Entity\ImageTrait;
use StarterKit\StartBundle\Entity\RefreshTokenTrait;
use StarterKit\StartBundle\Entity\SlackTrait;
/**
* @ORM\Entity(repositoryClass="StarterKit\StartBundle\Repository\UserRepository")
* @ORM\Table(name="User")
* @ORM\HasLifecycleCallbacks()
* @ORM\Table(name="User", indexes={
* @ORM\Index(name="idk_email", columns={"email"}),
* @ORM\Index(name="idk_google_user_id", columns={"google_user_id"}),
* @ORM\Index(name="idk_slack_user_Id", columns={"slack_user_id"}),
* @ORM\Index(name="idk_facebook_user_id", columns={"facebook_user_id"}),
* @ORM\Index(name="idk_forget_password_token", columns={"forget_password_token"}),
* @ORM\Index(name="idk_refresh_token", columns={"refresh_token"})
* })
* Class User
* @package AppBundle\Entity
*/
class User extends BaseUser
{
use ImageTrait;
use GoogleTrait;
use FacebookTrait;
use SlackTrait;
use RefreshTokenTrait;
}
15) Register Firewalls and Security Providers config -> packages -> security.yaml for symfony 4., (*16)
security:
encoders:
AppBundle\Entity\User:
algorithm: bcrypt
cost: 12
# https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
providers:
email:
id: StarterKit\StartBundle\Security\Provider\EmailProviderInterface
slack:
id: StarterKit\StartBundle\Security\Provider\SlackProviderInterface
token:
id: StarterKit\StartBundle\Security\Provider\TokenProviderInterface
facebook:
id: StarterKit\StartBundle\Security\Provider\FacebookProviderInterface
google:
id: StarterKit\StartBundle\Security\Provider\GoogleProviderInterface
refresh:
id: StarterKit\StartBundle\Security\Provider\RefreshTokenProviderInterface
role_hierarchy:
ROLE_ADMIN: [ROLE_USER, ROLE_ALLOWED_TO_SWITCH]
firewalls:
# disables authentication for assets and the profiler, adapt it according to your needs
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
facebook:
pattern: ^/access-tokens/facebook
stateless: true
provider: facebook
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
google:
pattern: ^/access-tokens/google
stateless: true
provider: google
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
slack:
pattern: ^/oauth/slack*
stateless: true
provider: slack
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\OAuthGuardInterface
refresh:
pattern: ^/access-tokens/refresh
stateless: true
provider: refresh
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
login:
pattern: ^/login_check
stateless: true
provider: email
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
api:
pattern: ^/api*
anonymous: ~
stateless: true
provider: token
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\StateLess\ApiGuardInterface
main:
pattern: ^/*
anonymous: ~
provider: token
stateless: true
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\StateLess\WebsiteGuardInterface
access_control:
- { path: ^/admin, roles: ROLE_ADMIN }
Setup Guide Symfony 3
1) Install the bundle, (*17)
composer require start-kit-symfony/start-bundle
2) Add to Bundle class to the app kernel., (*18)
new StarterKit\StartBundle\StarterKitStartBundle(),
3) cd into the directory where your project is, (*19)
4) Create a jwt directory in your var folder, (*20)
mkdir var/jwt
5) Create your private key with and write down the pass phrase you used., (*21)
openssl genrsa -out var/jwt/private.pem -aes256 4096
6) Create your public key, you will need the pass phrase here and in the composer install step, (*22)
openssl rsa -pubout -in var/jwt/private.pem -out var/jwt/public.pem
7) In your AppBundle -> Entity folder create a User class that extends the BaseUser., (*23)
8) When u create your s3 Bucket you will need to a folder for each environment you have. In that folder you will need to add another folder called profile_pics which is where the personal pictures are stored. Say you have dev and prod. You can over ride this or not use s3 if you want to., (*24)
prod -> profile_pics
dev -> profile_pics
9) Create a folder in your App called "Entity" and in that folder create an Entity Class called User., (*25)
<?php
namespace AppBundle\Entity;
use StarterKit\StartBundle\Entity\BaseUser;
use Doctrine\ORM\Mapping as ORM;
use StarterKit\StartBundle\Entity\FacebookTrait;
use StarterKit\StartBundle\Entity\GoogleTrait;
use StarterKit\StartBundle\Entity\ImageTrait;
use StarterKit\StartBundle\Entity\RefreshTokenTrait;
use StarterKit\StartBundle\Entity\SlackTrait;
/**
* @ORM\Entity(repositoryClass="StarterKit\StartBundle\Repository\UserRepository")
* @ORM\Table(name="User")
* @ORM\HasLifecycleCallbacks()
* @ORM\Table(name="User", indexes={
* @ORM\Index(name="idk_email", columns={"email"}),
* @ORM\Index(name="idk_google_user_id", columns={"google_user_id"}),
* @ORM\Index(name="idk_slack_user_Id", columns={"slack_user_id"}),
* @ORM\Index(name="idk_facebook_user_id", columns={"facebook_user_id"}),
* @ORM\Index(name="idk_forget_password_token", columns={"forget_password_token"}),
* @ORM\Index(name="idk_refresh_token", columns={"refresh_token"})
* })
* Class User
* @package AppBundle\Entity
*/
class User extends BaseUser
{
use ImageTrait;
use GoogleTrait;
use FacebookTrait;
use SlackTrait;
use RefreshTokenTrait;
}
10) Configure the Bundle, in the app -> config -> config.yml file., (*26)
starter_kit_start:
login_url: '%app.login_url%' # this is the path that your login screen is. This where website guard will nagivate people if login is required and the user is not logged in.
jws_ttl: '%app.jws_ttl%' # This the number of seconds the jwt token will live
jws_pass_phrase: '%app.jws_pass_phrase%' # This the pass phrased you used to create jwt private / public keys.
refresh_token_ttl: '%app.refresh_token_ttl%' # This how long the refresh token will live.
user_class: '%app.user_class%' # This is concrete class that extends the base user
facebook_app_secret: '%app.facebook_app_secret%' # This is client secret that you get when you register your website with facebook
facebook_api_version: '%app.facebook_api_version%' # Facebook Api Version
facebook_app_id: '%app.facebook_app_id%' # This is your facebook app id
google_client_id: '%app.google_client_id%' # This is your google client id
# All this information is found when you create the bucket
aws_api_version: '%app.aws_api_version%'
aws_key: '%app.aws_key%'
aws_secret: '%app.aws_secret%'
aws_region: '%app.aws_region%'
aws_s3_bucket_name: '%app.aws_region%'
# This client secret / client are found when u register your app with slack
slack_client_secret: '%app.slack_client_secret%'
slack_client_id: '%app.slack_client_id%'
11) Register Firewalls and Security Providers. This will be in the app -> config -> security.yml., (*27)
security:
encoders:
AppBundle\Entity\User:
algorithm: bcrypt
cost: 12
# https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
providers:
email:
id: StarterKit\StartBundle\Security\Provider\EmailProviderInterface
slack:
id: StarterKit\StartBundle\Security\Provider\SlackProviderInterface
token:
id: StarterKit\StartBundle\Security\Provider\TokenProviderInterface
facebook:
id: StarterKit\StartBundle\Security\Provider\FacebookProviderInterface
google:
id: StarterKit\StartBundle\Security\Provider\GoogleProviderInterface
refresh:
id: StarterKit\StartBundle\Security\Provider\RefreshTokenProviderInterface
role_hierarchy:
ROLE_ADMIN: [ROLE_USER, ROLE_ALLOWED_TO_SWITCH]
firewalls:
# disables authentication for assets and the profiler, adapt it according to your needs
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
facebook:
pattern: ^/access-tokens/facebook
stateless: true
provider: facebook
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
google:
pattern: ^/access-tokens/google
stateless: true
provider: google
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
slack:
pattern: ^/oauth/slack*
stateless: true
provider: slack
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\OAuthGuardInterface
refresh:
pattern: ^/access-tokens/refresh
stateless: true
provider: refresh
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
login:
pattern: ^/login_check
stateless: true
provider: email
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\LoginGuardInterface
api:
pattern: ^/api*
anonymous: ~
stateless: true
provider: token
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\StateLess\ApiGuardInterface
main:
pattern: ^/*
anonymous: ~
provider: token
stateless: true
guard:
authenticators:
- StarterKit\StartBundle\Security\Guard\StateLess\WebsiteGuardInterface
access_control:
- { path: ^/admin, roles: ROLE_ADMIN }
Project Overview
Services and Interfaces
Every service has an interface that is registered as a service. This bundle only uses interfaces in the constructor of the classes. This means that all you have to do to over ride a service is find the interface it is implementing and register the interface as a service in the app bundle., (*28)
Here is an example. Say you wanted to use tokens stored in the database instead of jwt / jws tokens. All you would have to do is create a service that implemented the AuthTokenServiceInterface and register it in the app bundle., (*29)
AppBundle\Service\DatabaseTokenService:
class: AppBundle\Service\DatabaseTokenService
arguments:
$ttl: '%app.jws_ttl%'
StarterKit\StartBundle\Service\AuthTokenServiceInterface: '@AppBundle\Service\DatabaseTokenService'
You can find the actual class implementation here., (*30)
Here is where services are registered for the bundle. services.yml, (*31)
No JMS Serializer, Symfony Serializer, FOS Rest Bundles
Here are some reasons we decided not to use theses., (*32)
1) Using a serializer is slower then just outputting an array
2) Using arrays and putting them in JsonResponse is way easier to test and unit test.
3) FOS Rest Bundle is confusing to configure and most projects will use json and not xml so you can bias your apis based on that.
4) You can always add theses if you want, I think the authors have done an amazing job with these bundles. ;), (*33)
Stateless Authentication
I feel that php sessions are confusing and vary too much from version to version of php. It's easier to understand authentication if every request has a token / string that represents who the user is. I believe this also helps separate concerns in the sense that client is responsible for storing the auth token and server is responsible for validating it., (*34)
Ajax Login
I think it's better to do ajax login and just have the request contain a cookie that the client stores for authentication. This means that you don't have to work about getting the last username and refreshing the page. It's also makes the guard logic simpler because every login response will have an auth cookie and authenticated response., (*35)
Response Envelopes
I think that every response should be wrap around envelope that describes what it how to parse it. The response fields this project uses are meta, and data. Meta will have a type that will clients to build parsers based on those types., (*36)
{
"meta":...,
"data":...
}
Email Only Login
I feel that email are the best approach to login and not username. Mainly because they are unique for sites to be able to be merged if one site buys another., (*37)
Table of Contents
How To / Examples
How to run tests
Be sure that sqlite is install our your system. That is what we use for the test database., (*38)
1) git clone https://github.com/phptuts/StarterBundleForSymfony.git, (*39)
2) cd into the directory you cloned the repo in., (*40)
3) Run this in the command in the command line., (*41)
sh run_tests.sh