HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/tracking.naniguide.com/app/middleware/CheckDomain.php
<?php
/**
 * =======================================================================================
 *                           GemFramework (c) GemPixel
 * ---------------------------------------------------------------------------------------
 *  This software is packaged with an exclusive framework as such distribution
 *  or modification of this framework is not allowed before prior consent from
 *  GemPixel. If you find that this framework is packaged in a software not distributed
 *  by GemPixel or authorized parties, you must not use this software and contact GemPixel
 *  at https://gempixel.com/contact to inform them of this misuse.
 * =======================================================================================
 *
 * @package GemPixel\Premium-URL-Shortener
 * @author GemPixel (https://gempixel.com)
 * @license https://gempixel.com/licenses
 * @link https://gempixel.com
 */
namespace Middleware;

use Core\Middleware;
use Core\Request;
use Core\Helper;
use Core\View;
use Core\DB;
use Helpers\Gate;

final class CheckDomain extends Middleware {

    use \Traits\Links;

	/**
	 * Check pointed domain
	 * @author GemPixel <https://gempixel.com>
	 * @version 7.6.3
	 */
	public function handle(Request $request) {

        // Store affiliate key for 90 days
        $request->ref ? $request->cookie('urid', clean($request->ref), 60 * 24 * 90) : '';

        $currenturi = trim(substr_replace($request->uri(false), '', strrpos($request->uri(false), $request->path()), strlen($request->path())), '/');

        // $currenturi = trim(str_replace($request->path(), '', $request->uri(false)), '/');

        $currenturinoscheme = str_replace(['https://', 'http://'], '', $currenturi);

        if(!in_array(str_replace(['https://', 'http://'], '', config('url')), [$currenturinoscheme, str_replace('www.', '', $currenturinoscheme)])){

            $host = \idn_to_utf8(Helper::parseUrl($request->host(), 'host'));

            if($domain = \Core\DB::domains()->whereRaw("domain = ? OR domain = ?", ["http://".$host, "https://".$host])->first()){

                if($domain->bioid){
                    if($profile = DB::profiles()->where('id', $domain->bioid)->first()){
                        if($url = DB::url()->first($profile->urlid)){
                            (new self)->updateStats($request, $url, null);
                            $config = config();
                            $config->url = $domain->domain;
                            $url->domain = $domain->domain;
                            Helper::set("config", $config);                            
                            Gate::profile($profile, null, $url);
                            exit;
                        }
                    }
                }

                if($domain->redirect){
                    header("Location: {$domain->redirect}");
                    exit;
                }
            }

            $domains_names = explode("\n", config('domain_names'));
            $domains_names = array_map('trim', $domains_names);

            if(in_array($currenturi, $domains_names)){
                header("Location: ".config('url'));
                exit;
            }

            View::set('title', e('Great! Your domain is working.'));
            View::with('gates.domain')->extend('layouts.auth');
            exit;
        }

        return true;
	}
}