deguapp/frontend/libs/Router.php

40 lines
813 B
PHP
Raw Normal View History

2023-06-30 14:16:33 +02:00
<?php
class Router {
public $returned = false;
2023-11-09 01:36:43 +01:00
public $url = null;
2023-06-30 14:16:33 +02:00
function route($method, $url, $filename) {
2023-11-09 01:36:43 +01:00
$this->url = $url;
2023-06-30 14:16:33 +02:00
$methods = ['GET', 'POST'];
if(in_array($method, $methods)) {
if($_SERVER['REQUEST_METHOD'] == $method) {
if ($_SERVER['REQUEST_URI'] == $url) {
require_once("./pages/$filename/$filename.php");
$this->returned = true;
return;
}
}
}
}
2023-11-09 01:36:43 +01:00
function getUrl() {
return $_SERVER['REQUEST_URI'];
}
2023-06-30 14:16:33 +02:00
function __destruct() {
if($_SERVER['REQUEST_METHOD'] == 'GET') {
if(!$this->returned){
$url = explode("/", $_SERVER['REQUEST_URI']);
$url = $url[count($url)-1];
if (file_exists("./pages/$url/$url.php")) {
require_once("./pages/$url/$url.php");
} else {
require_once("./pages/errors/404.php");
}
}
}
}
}