Ajout route dans les bons controller (pas terminé)
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
c0c7d6560f
commit
637c522959
@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
// namespace App\Controller;
|
||||
namespace App\Controller;
|
||||
|
||||
// use App\Container;
|
||||
// use App\Router\Request\IRequest;
|
||||
// use App\Router\Response\Response;
|
||||
// use Shared\Attributes\Route;
|
||||
// use Twig\Environment;
|
||||
// use Data\Core\Preferences;
|
||||
// use Shared\Log;
|
||||
use App\Container;
|
||||
use App\Router\Request\IRequest;
|
||||
use App\Router\Response\Response;
|
||||
use Shared\Attributes\Route;
|
||||
use Twig\Environment;
|
||||
use Data\Core\Preferences;
|
||||
use Shared\Log;
|
||||
|
||||
// class AuthController extends BaseController
|
||||
// {
|
||||
// #[Route('/login', name: 'login')]
|
||||
// public function login(?string $username, ?string $password ,IRequest $request): Response {
|
||||
// // if user is already logged in, don't display the login page again
|
||||
// if ($user) {
|
||||
// return $this->redirectToRoute('blog_index');
|
||||
// }
|
||||
class AuthController extends BaseController
|
||||
{
|
||||
#[Route('/login', name: 'login')]
|
||||
public function login(?string $username, ?string $password ,IRequest $request): Response {
|
||||
// if user is already logged in, don't display the login page again
|
||||
if ($user) {
|
||||
return $this->redirectToRoute('blog_index');
|
||||
}
|
||||
|
||||
// // this statement solves an edge-case: if you change the locale in the login
|
||||
// // page, after a successful login you are redirected to a page in the previous
|
||||
// // locale. This code regenerates the referrer URL whenever the login page is
|
||||
// // browsed, to ensure that its locale is always the current one.
|
||||
// $this->saveTargetPath($request->getSession(), 'main', $this->generateUrl('admin_index'));
|
||||
// this statement solves an edge-case: if you change the locale in the login
|
||||
// page, after a successful login you are redirected to a page in the previous
|
||||
// locale. This code regenerates the referrer URL whenever the login page is
|
||||
// browsed, to ensure that its locale is always the current one.
|
||||
$this->saveTargetPath($request->getSession(), 'main', $this->generateUrl('admin_index'));
|
||||
|
||||
// return $this->render('security/login.html.twig', [
|
||||
// // last username entered by the user (if any)
|
||||
// 'last_username' => $helper->getLastUsername(),
|
||||
// // last authentication error (if any)
|
||||
// 'error' => $helper->getLastAuthenticationError(),
|
||||
// ]);
|
||||
// }
|
||||
return $this->render('security/login.html.twig', [
|
||||
// last username entered by the user (if any)
|
||||
'last_username' => $helper->getLastUsername(),
|
||||
// last authentication error (if any)
|
||||
'error' => $helper->getLastAuthenticationError(),
|
||||
]);
|
||||
}
|
||||
|
||||
// #[Route('/login', name: 'login')]
|
||||
// public function login(?string $username, ?string $password ,IRequest $request): Response {
|
||||
// // if user is already logged in, don't display the login page again
|
||||
// if ($user) {
|
||||
// return $this->redirectToRoute('blog_index');
|
||||
// }
|
||||
// #[Route('/login', name: 'login')]
|
||||
// public function login(?string $username, ?string $password ,IRequest $request): Response {
|
||||
// // if user is already logged in, don't display the login page again
|
||||
// if ($user) {
|
||||
// return $this->redirectToRoute('blog_index');
|
||||
// }
|
||||
|
||||
// // this statement solves an edge-case: if you change the locale in the login
|
||||
// // page, after a successful login you are redirected to a page in the previous
|
||||
// // locale. This code regenerates the referrer URL whenever the login page is
|
||||
// // browsed, to ensure that its locale is always the current one.
|
||||
// $this->saveTargetPath($request->getSession(), 'main', $this->generateUrl('admin_index'));
|
||||
// // this statement solves an edge-case: if you change the locale in the login
|
||||
// // page, after a successful login you are redirected to a page in the previous
|
||||
// // locale. This code regenerates the referrer URL whenever the login page is
|
||||
// // browsed, to ensure that its locale is always the current one.
|
||||
// $this->saveTargetPath($request->getSession(), 'main', $this->generateUrl('admin_index'));
|
||||
|
||||
// return $this->render('security/login.html.twig', [
|
||||
// // last username entered by the user (if any)
|
||||
// 'last_username' => $helper->getLastUsername(),
|
||||
// // last authentication error (if any)
|
||||
// 'error' => $helper->getLastAuthenticationError(),
|
||||
// ]);
|
||||
// }
|
||||
// return $this->render('security/login.html.twig', [
|
||||
// // last username entered by the user (if any)
|
||||
// 'last_username' => $helper->getLastUsername(),
|
||||
// // last authentication error (if any)
|
||||
// 'error' => $helper->getLastAuthenticationError(),
|
||||
// ]);
|
||||
// }
|
||||
|
||||
|
||||
// function inscription() {
|
||||
// $model = new ModelVisitor();
|
||||
// $log=Validation::clean_string($_POST['pseudo']);
|
||||
// $mdp=Validation::clean_string($_POST['password']);
|
||||
// if($model->createAUser($log,$mdp)){
|
||||
// if(ModelUser::login($log, $mdp)){
|
||||
// UserControler::displayView();
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// function login() {
|
||||
// $model = new ModelVisitor();
|
||||
// if(!isset($_POST['pseudo']) || !isset($_POST['password'])) throw new Exception(" some wrong with credentials !!!!!");
|
||||
// $log=Validation::clean_string($_POST['pseudo']);
|
||||
// $mdp=Validation::clean_string($_POST['password']);
|
||||
// if(ModelUser::login($log, $mdp)){
|
||||
// UserControler::displayView();
|
||||
// }
|
||||
function inscription() {
|
||||
$model = new ModelVisitor();
|
||||
$log=Validation::clean_string($_POST['pseudo']);
|
||||
$mdp=Validation::clean_string($_POST['password']);
|
||||
if($model->createAUser($log,$mdp)){
|
||||
if(ModelUser::login($log, $mdp)){
|
||||
UserControler::displayView();
|
||||
}
|
||||
}
|
||||
}
|
||||
function connexion(){
|
||||
$model = new ModelVisitor();
|
||||
if(!isset($_POST['pseudo']) || !isset($_POST['password'])) throw new Exception(" some wrong with credentials !!!!!");
|
||||
$log=Validation::clean_string($_POST['pseudo']);
|
||||
$mdp=Validation::clean_string($_POST['password']);
|
||||
if(ModelUser::login($log, $mdp)){
|
||||
UserControler::displayView();
|
||||
}
|
||||
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
// }
|
||||
}
|
||||
|
||||
?>
|
@ -1,36 +1,45 @@
|
||||
<?php
|
||||
|
||||
// namespace App\Controller;
|
||||
|
||||
// use App\Container;
|
||||
// use App\Router\Request\IRequest;
|
||||
// use App\Router\Response\Response;
|
||||
// use Shared\Attributes\Route;
|
||||
// use Twig\Environment;
|
||||
// use Data\Core\Preferences;
|
||||
// use Shared\Log;
|
||||
|
||||
// class HeartRateController extends BaseController
|
||||
// {
|
||||
|
||||
|
||||
// #[Route(path: '/import', name: 'import', methods: ['GET'])]
|
||||
// public function import(): Response
|
||||
// {
|
||||
// return $this->render('./page/import.html.twig',[
|
||||
// 'css' => $this->preference->getCookie(),
|
||||
// 'pp' => "test2",
|
||||
// 'user' => "Doe",
|
||||
// 'role' => "Athlète",
|
||||
// 'friendship' => [],
|
||||
// 'analyzes' => [],
|
||||
// 'mails' => [],
|
||||
// 'users' => [],
|
||||
// 'infoUser' => [],
|
||||
// 'exos' => [],
|
||||
// 'member' => []
|
||||
// ]);
|
||||
// }
|
||||
|
||||
|
||||
// }
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Container;
|
||||
use App\Router\Request\IRequest;
|
||||
use App\Router\Response\Response;
|
||||
use Shared\Attributes\Route;
|
||||
use Twig\Environment;
|
||||
use Data\Core\Preferences;
|
||||
use Shared\Log;
|
||||
|
||||
class HeartRateController extends BaseController
|
||||
{
|
||||
|
||||
private Environment $twig;
|
||||
private Preferences $preference;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
session_start();
|
||||
$this->preference = new Preferences();
|
||||
}
|
||||
|
||||
|
||||
#[Route(path: '/import', name: 'import', methods: ['GET'])]
|
||||
public function import(): Response
|
||||
{
|
||||
return $this->render('./page/import.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,80 +1,163 @@
|
||||
<?php
|
||||
|
||||
// namespace App\Controller;
|
||||
|
||||
// use App\Container;
|
||||
// use App\Router\Request\IRequest;
|
||||
// use App\Router\Response\Response;
|
||||
// use Shared\Attributes\Route;
|
||||
// use Twig\Environment;
|
||||
// use Data\Core\Preferences;
|
||||
// use Shared\Log;
|
||||
|
||||
// class UserController extends BaseController
|
||||
// {
|
||||
|
||||
|
||||
|
||||
|
||||
// #[Route(path: '/', name: 'home', methods: ['GET'])]
|
||||
// public function index(): Response
|
||||
// {
|
||||
// return $this->render('./page/home.html.twig',[
|
||||
// 'css' => $this->preference->getCookie(),
|
||||
// 'pp' => "test2",
|
||||
// 'user' => "Doe",
|
||||
// 'role' => "Athlète",
|
||||
// 'friendship' => [],
|
||||
// 'analyzes' => [],
|
||||
// 'mails' => [],
|
||||
// 'users' => [],
|
||||
// 'infoUser' => [],
|
||||
// 'exos' => [],
|
||||
// 'member' => []
|
||||
// ]);
|
||||
// }
|
||||
|
||||
|
||||
// #[Route(path: '/settings', name: 'settings', methods: ['GET'])]
|
||||
// public function settings(IRequest $req): Response
|
||||
// {
|
||||
// return $this->render('./page/settings.html.twig',[
|
||||
// 'css' => $this->preference->getCookie(),
|
||||
// 'pp' => "test2",
|
||||
// 'user' => "Doe",
|
||||
// 'role' => "Athlète",
|
||||
// 'friendship' => [],
|
||||
// 'analyzes' => [],
|
||||
// 'mails' => [],
|
||||
// 'users' => [],
|
||||
// 'infoUser' => [],
|
||||
// 'exos' => [],
|
||||
// 'member' => []
|
||||
// ]);
|
||||
// }
|
||||
|
||||
|
||||
// #[Route(path: '/preferences', name: 'preferences', methods: ['POST'])]
|
||||
// public function preferences(string $theme, IRequest $req): Response
|
||||
// {
|
||||
// /*TODO*/
|
||||
|
||||
// // VALIDER LES DONNEES
|
||||
// $this->preference->majCookie($theme);
|
||||
|
||||
// return $this->render('./page/settings.html.twig',[
|
||||
// 'css' => $this->preference->getCookie(),
|
||||
// 'pp' => "test2",
|
||||
// 'user' => "Doe",
|
||||
// 'role' => "Athlète",
|
||||
// 'friendship' => [],
|
||||
// 'analyzes' => [],
|
||||
// 'mails' => [],
|
||||
// 'users' => [],
|
||||
// 'infoUser' => [],
|
||||
// 'exos' => [],
|
||||
// 'member' => []
|
||||
// ]);
|
||||
// }
|
||||
|
||||
// }
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Container;
|
||||
use App\Router\Request\IRequest;
|
||||
use App\Router\Response\Response;
|
||||
use Shared\Attributes\Route;
|
||||
use Twig\Environment;
|
||||
use Data\Core\Preferences;
|
||||
use Shared\Log;
|
||||
|
||||
class UserController extends BaseController
|
||||
{
|
||||
|
||||
private Environment $twig;
|
||||
private Preferences $preference;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
session_start();
|
||||
$this->preference = new Preferences();
|
||||
}
|
||||
|
||||
|
||||
#[Route(path: '/', name: 'index', methods: ['GET'])]
|
||||
public function index(): Response
|
||||
{
|
||||
return $this->render('./page/index.html',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
#[Route(path: '/home', name: 'home', methods: ['GET'])]
|
||||
public function home(): Response
|
||||
{
|
||||
return $this->render('./page/home.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
#[Route(path: '/settings', name: 'settings', methods: ['GET'])]
|
||||
public function settings(IRequest $req): Response
|
||||
{
|
||||
return $this->render('./page/settings.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
#[Route(path: '/profile', name: 'profile', methods: ['GET'])]
|
||||
public function profile(): Response
|
||||
{
|
||||
return $this->render('./page/profile.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
#[Route(path: '/preferences', name: 'preferences', methods: ['POST'])]
|
||||
public function preferences(string $theme, IRequest $req): Response
|
||||
{
|
||||
/*TODO*/
|
||||
|
||||
// VALIDER LES DONNEES
|
||||
$this->preference->majCookie($theme);
|
||||
|
||||
return $this->render('./page/settings.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
#[Route(path: '/psettings', name: 'psettings', methods: ['POST'])]
|
||||
public function psettings(string $nom,string $prenom,string $dateNaissance,string $mail,string $tel, IRequest $req): Response
|
||||
{
|
||||
|
||||
|
||||
return $this->render('./page/settings.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => $prenom,
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
#[Route(path: '/mdp', name: 'mdp', methods: ['POST'])]
|
||||
public function mdp(string $ancienMotDePasse,string $nouveauMotDePasse,string $confirmerMotDePasse, IRequest $req): Response
|
||||
{
|
||||
|
||||
// CONFIRMER LES DONNESS !!!!! IMPORTANT
|
||||
|
||||
return $this->render('./page/settings.html.twig',[
|
||||
'css' => $this->preference->getCookie(),
|
||||
'pp' => "test2",
|
||||
'user' => "Doe",
|
||||
'role' => "Athlète",
|
||||
'friendship' => [],
|
||||
'analyzes' => [],
|
||||
'mails' => [],
|
||||
'users' => [],
|
||||
'infoUser' => [],
|
||||
'exos' => [],
|
||||
'member' => []
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue