PHP Classes

File: backend/Router/Perfis.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Web App Multi-Perfil   backend/Router/Perfis.php   Download  
File: backend/Router/Perfis.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Web App Multi-Perfil
App that uses CRUD to manage multiple users
Author: By
Last change:
Date: 1 month ago
Size: 1,287 bytes
 

Contents

Class file image Download
<?php
namespace App\Router;

use
App\Controller\PerfilController;
use
App\Model\Perfis;
use
App\Controller\TokenController;


function
addPerfilRoutes($router) {
   
$router->mount('/Perfil', function () use ($router) {
   
$router->get('/', function () {
       
$permitido = new TokenController();
       
$permitido->autorizado();
       
$perfil = new Perfis();
       
$controller = new PerfilController($perfil);
       
$resultado = $controller->listarPerfis();
        echo
json_encode($resultado);
    });
   
   
$router->post('/', function () {
       
$body = json_decode(file_get_contents('php://input'), true);
       
$permitido = new TokenController();
       
$permitido->autorizado();
       
$perfil = new Perfis();
       
$perfil->setNome($body['nome']);
       
$controller = new PerfilController($perfil);
           
$resultado = $controller->adicionarPerfil();
            echo
json_encode($resultado);
    });
   
$router->delete('/([a-z0-9_-]+)', function ($id) {
       
$permitido = new TokenController();
       
$permitido->autorizado();
       
$perfil = new Perfis();
       
$perfil->setId($id);
       
$controller = new PerfilController($perfil);
       
$resultado = $controller->removerPerfil();
        echo
json_encode($resultado);
    });
});
}