A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
185 lines
6.1 KiB
185 lines
6.1 KiB
<?php
|
|
class SystemUrlSeoUrl extends Controller {
|
|
private $notfound = 'error/not_found';
|
|
private $regType = array(
|
|
"%d" => '(\\d{1,})',
|
|
"%w" => '(\\w{1,})',
|
|
"%a" => '([[:ascii:]]{1,})',
|
|
"%" => '(.*)');
|
|
|
|
public function __construct($registry)
|
|
{
|
|
parent::__construct($registry);
|
|
|
|
if(defined("NOT_FOUND")) {
|
|
$this->notfound = NOT_FOUND;
|
|
}
|
|
}
|
|
|
|
public function index() {
|
|
// Add rewrite to url class
|
|
if ($this->config->get('config_seo_url')) {
|
|
$this->url->addRewrite($this);
|
|
}
|
|
|
|
$match = array();
|
|
|
|
// Decode URL
|
|
if (isset($this->request->get['_route_'])) {
|
|
$parts_count = explode('/', $this->request->get['_route_']);
|
|
$parts = array($this->request->get['_route_']);
|
|
|
|
foreach ($parts as $part) {
|
|
if(defined('USE_DB_CONFIG') && USE_DB_CONFIG == true)
|
|
$query = $this->db->query("SELECT * FROM url_alias WHERE keyword = '" . $this->db->escape($part) . "'");
|
|
|
|
if (isset($query) && $query != false && $query->num_rows === 1) {
|
|
|
|
//$url = explode('=', $query->row['query']);
|
|
|
|
if($query->row['get'] != "") {
|
|
$a = explode(',', $query->row['get']);
|
|
|
|
foreach($a as $value) {
|
|
$b = explode('=', $value);
|
|
$_GET[$b[0]] = $b[1];
|
|
}
|
|
}
|
|
|
|
$this->request->get['route'] = $query->row['query'];
|
|
|
|
} elseif (defined('ROUTES') && is_array(ROUTES)) {
|
|
$rotas = ROUTES;
|
|
|
|
if(isset($rotas[$part])){
|
|
$this->request->get['route'] = $rotas[$part];
|
|
} else {
|
|
|
|
foreach($rotas as $key => $page) {
|
|
|
|
if(isRegularExpression($key)) {
|
|
|
|
$preg = preg_quote($key, "/");
|
|
|
|
$preg = str_replace(array_keys($this->regType), array_values($this->regType), $preg);
|
|
|
|
if((@preg_match("/". $preg . "/", $parts[0], $match))) {
|
|
|
|
$countTree = explode("/", $match[0]);
|
|
|
|
if(count($countTree) == count($parts_count)){
|
|
|
|
unset($match[0]);
|
|
|
|
$match = $this->request->clean($match);
|
|
|
|
$pagina = $page;
|
|
|
|
break;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
if(isset($pagina)) {
|
|
$this->request->get['route'] = $pagina;
|
|
} else {
|
|
$this->request->get['route'] = $this->notfound;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
$this->request->get['route'] = $this->notfound;
|
|
}
|
|
}
|
|
|
|
|
|
if (isset($this->request->get['route'])) {
|
|
return $this->forward($this->request->get['route'], $match);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function rewrite($link) {
|
|
if ($this->config->get('config_seo_url')) {
|
|
$url_data = parse_url(str_replace('&', '&', $link));
|
|
|
|
$url = '';
|
|
|
|
$data = array();
|
|
|
|
parse_str($url_data['query'], $data);
|
|
|
|
$joinRegex = implode("|", array_keys($this->regType));
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
if (isset($data['route'])) {
|
|
if(defined('USE_DB_CONFIG') && USE_DB_CONFIG == true)
|
|
$query = $this->db->query("SELECT * FROM url_alias WHERE `query` = '" . $this->db->escape($value) . "'");
|
|
if (isset($query) && $query->num_rows && $query->num_rows != NULL) {
|
|
$url .= '/' . $query->row['keyword'];
|
|
} elseif (defined('ROUTES') && is_array(ROUTES)) {
|
|
//$arV = array_search($value, ROUTES);
|
|
foreach(ROUTES as $query => $page) {
|
|
if($page == $value){
|
|
if(isRegularExpression($query)){
|
|
unset($data['route']);
|
|
$qnt = substr_count($query, '%');
|
|
if(count($data) == $qnt) {
|
|
$str = $query;
|
|
|
|
foreach($data as $replace){
|
|
$str = preg_replace('/('.$joinRegex.')/', $replace, $str, 1);
|
|
}
|
|
|
|
$url .= '/' .($str);
|
|
|
|
$data = false;
|
|
|
|
break;
|
|
}
|
|
} else {
|
|
$url .= '/' . (array_search($value, ROUTES));
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
unset($data[$key]);
|
|
}
|
|
|
|
}
|
|
|
|
if ($url) {
|
|
unset($data['route']);
|
|
|
|
$query = '';
|
|
|
|
if ($data) {
|
|
foreach ($data as $key => $value) {
|
|
$query .= '&' . $key . '=' . $value;
|
|
}
|
|
|
|
if ($query) {
|
|
$query = '?' . trim($query, '&');
|
|
}
|
|
}
|
|
|
|
return $url_data['scheme'] . '://' . $url_data['host'] . (isset($url_data['port']) ? ':' . $url_data['port'] : '') . str_replace('/index.php', '', $url_data['path']) . $url . $query;
|
|
} else {
|
|
return $link;
|
|
}
|
|
} else {
|
|
return $link;
|
|
}
|
|
}
|
|
}
|
|
|
|
function isRegularExpression($string) {
|
|
return (strpos($string, '%') !== false);
|
|
}
|
|
|
|
|