mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-03 08:11:49 +02:00
Initial upload of the control panel
This commit is contained in:
parent
f21bd93fbc
commit
7eab26586c
791 changed files with 312718 additions and 0 deletions
169
cp/bootstrap/helper.php
Normal file
169
cp/bootstrap/helper.php
Normal file
|
@ -0,0 +1,169 @@
|
|||
<?php
|
||||
/**
|
||||
* Helper functions
|
||||
* @author Hezekiah O. <support@hezecom.com>
|
||||
*/
|
||||
|
||||
use Pinga\Auth\Auth;
|
||||
|
||||
/**
|
||||
* @return mixed|string|string[]
|
||||
*/
|
||||
function routePath() {
|
||||
if (isset($_SERVER['REQUEST_URI'])) {
|
||||
$scriptDir = str_replace('\\', '/', dirname($_SERVER['SCRIPT_NAME']));
|
||||
$uri = (string) parse_url('http://a' . $_SERVER['REQUEST_URI'], PHP_URL_PATH);
|
||||
|
||||
if (stripos($uri, $_SERVER['SCRIPT_NAME']) === 0) {
|
||||
return $_SERVER['SCRIPT_NAME'];
|
||||
}
|
||||
if ($scriptDir !== '/' && stripos($uri, $scriptDir) === 0) {
|
||||
return $scriptDir;
|
||||
}
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $key
|
||||
* @param null $default
|
||||
* @return mixed|null
|
||||
*/
|
||||
function config($key, $default=null){
|
||||
return \App\Lib\Config::get($key, $default);
|
||||
}
|
||||
/**
|
||||
* @param $var
|
||||
* @return mixed
|
||||
*/
|
||||
function envi($var, $default=null)
|
||||
{
|
||||
if(isset($_ENV[$var])){
|
||||
return $_ENV[$var];
|
||||
}
|
||||
return $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Start session
|
||||
*/
|
||||
function startSession(){
|
||||
if (session_status() == PHP_SESSION_NONE) {
|
||||
session_start();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $var
|
||||
* @return mixed
|
||||
*/
|
||||
function session($var){
|
||||
if (isset($_SESSION[$var])) {
|
||||
return $_SESSION[$var];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Global PDO connection
|
||||
* @return \DI\|mixed|PDO
|
||||
* @throws \DI\DependencyException
|
||||
* @throws \DI\NotFoundException
|
||||
*/
|
||||
function pdo(){
|
||||
global $container;
|
||||
return $container->get('pdo');
|
||||
|
||||
}
|
||||
/**
|
||||
* @return Auth
|
||||
*/
|
||||
function auth(){
|
||||
$db = pdo();
|
||||
$auth = new Auth($db);
|
||||
return $auth;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $name
|
||||
* @param array $params1
|
||||
* @param array $params2
|
||||
* @return mixed
|
||||
* @throws \DI\DependencyException
|
||||
* @throws \DI\NotFoundException
|
||||
*/
|
||||
function route($name, $params1 =[], $params2=[]){
|
||||
global $container;
|
||||
return $container->get('router')->urlFor($name,$params1,$params2);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $dir
|
||||
* @return string
|
||||
*/
|
||||
function baseUrl(){
|
||||
$root = "";
|
||||
$root .= !empty($_SERVER['HTTPS']) ? 'https' : 'http';
|
||||
$root .= '://' . $_SERVER['HTTP_HOST'];
|
||||
return $root;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string|null $name
|
||||
* @return string
|
||||
*/
|
||||
function url($url=null, $params1 =[], $params2=[]){
|
||||
if($url){
|
||||
return baseUrl().route($url,$params1,$params2);
|
||||
}
|
||||
return baseUrl();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $resp
|
||||
* @param $page
|
||||
* @param array $arr
|
||||
* @return mixed
|
||||
* @throws \DI\DependencyException
|
||||
* @throws \DI\NotFoundException
|
||||
*/
|
||||
function view($resp, $page, $arr=[]){
|
||||
global $container;
|
||||
return $container->get('view')->render($resp, $page, $arr);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $type
|
||||
* @param $message
|
||||
* @return mixed
|
||||
* @throws \DI\DependencyException
|
||||
* @throws \DI\NotFoundException
|
||||
*/
|
||||
function flash($type, $message){
|
||||
global $container;
|
||||
return $container->get('flash')->addMessage($type, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \App\Lib\Redirect
|
||||
*/
|
||||
function redirect()
|
||||
{
|
||||
return new \App\Lib\Redirect();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $location
|
||||
* @return string
|
||||
*/
|
||||
function assets($location){
|
||||
return url().dirname($_SERVER["REQUEST_URI"]).'/'.$location;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $data
|
||||
* @return mixed
|
||||
*/
|
||||
function toArray($data){
|
||||
return json_decode(json_encode($data), true);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue