mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
332 lines
8.3 KiB
PHP
332 lines
8.3 KiB
PHP
<?php
|
|
|
|
use App\Helpers;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
/**
|
|
* @param $lang code like fa
|
|
* @return string
|
|
*/
|
|
function getEmojiLanguagebyCode($lang) : string
|
|
{
|
|
$languages = [
|
|
"af" => "🇿🇦", // Afrikaans
|
|
"sq" => "🇦🇱", // Albanian
|
|
"am" => "🇪🇹", // Amharic
|
|
"ar" => "🇸🇦", // Arabic
|
|
"hy" => "🇦🇲", // Armenian
|
|
"az" => "🇦🇿", // Azerbaijani
|
|
"eu" => "🇪🇸", // Basque
|
|
"be" => "🇧🇾", // Belarusian
|
|
"bn" => "🇧🇩", // Bengali
|
|
"bs" => "🇧🇦", // Bosnian
|
|
"bg" => "🇧🇬", // Bulgarian
|
|
"ca" => "🇪🇸", // Catalan
|
|
"zh" => "🇨🇳", // Chinese
|
|
"hr" => "🇭🇷", // Croatian
|
|
"cs" => "🇨🇿", // Czech
|
|
"da" => "🇩🇰", // Danish
|
|
"nl" => "🇳🇱", // Dutch
|
|
"en" => "🇺🇸", // English
|
|
"et" => "🇪🇪", // Estonian
|
|
"fi" => "🇫🇮", // Finnish
|
|
"fr" => "🇫🇷", // French
|
|
"gl" => "🇪🇸", // Galician
|
|
"ka" => "🇬🇪", // Georgian
|
|
"de" => "🇩🇪", // German
|
|
"el" => "🇬🇷", // Greek
|
|
"gu" => "🇮🇳", // Gujarati
|
|
"ht" => "🇭🇹", // Haitian
|
|
"he" => "🇮🇱", // Hebrew
|
|
"hi" => "🇮🇳", // Hindi
|
|
"hu" => "🇭🇺", // Hungarian
|
|
"is" => "🇮🇸", // Icelandic
|
|
"id" => "🇮🇩", // Indonesian
|
|
"ga" => "🇮🇪", // Irish
|
|
"it" => "🇮🇹", // Italian
|
|
"ja" => "🇯🇵", // Japanese
|
|
"kk" => "🇰🇿", // Kazakh
|
|
"ko" => "🇰🇷", // Korean
|
|
"lv" => "🇱🇻", // Latvian
|
|
"lt" => "🇱🇹", // Lithuanian
|
|
"mk" => "🇲🇰", // Macedonian
|
|
"ms" => "🇲🇾", // Malay
|
|
"ml" => "🇮🇳", // Malayalam
|
|
"mt" => "🇲🇹", // Maltese
|
|
"mn" => "🇲🇳", // Mongolian
|
|
"no" => "🇳🇴", // Norwegian
|
|
"ps" => "🇦🇫", // Pashto
|
|
"fa" => "🇮🇷", // Persian
|
|
"pl" => "🇵🇱", // Polish
|
|
"pt" => "🇵🇹", // Portuguese
|
|
"ro" => "🇷🇴", // Romanian
|
|
"ru" => "🇷🇺", // Russian
|
|
"sr" => "🇷🇸", // Serbian
|
|
"sk" => "🇸🇰", // Slovak
|
|
"sl" => "🇸🇮", // Slovenian
|
|
"es" => "🇪🇸", // Spanish
|
|
"sw" => "🇰🇪", // Swahili
|
|
"sv" => "🇸🇪", // Swedish
|
|
"ta" => "🇮🇳", // Tamil
|
|
"te" => "🇮🇳", // Telugu
|
|
"th" => "🇹🇭", // Thai
|
|
"tr" => "🇹🇷", // Turkish
|
|
"uk" => "🇺🇦", // Ukrainian
|
|
"ur" => "🇵🇰", // Urdu
|
|
"uz" => "🇺🇿", // Uzbek
|
|
"vi" => "🇻🇳", // Vietnamese
|
|
"cy" => "🇬🇧" // Welsh
|
|
];
|
|
$lang = strtolower($lang);
|
|
if (array_key_exists($lang, $languages)) {
|
|
return $languages[$lang];
|
|
} else {
|
|
return "❓";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* has route as named we want this model?
|
|
* @param $name string
|
|
* @param $endRoute string 'index' or alt list
|
|
* @return bool
|
|
*/
|
|
|
|
function hasRoute($name) : bool
|
|
{
|
|
// create route
|
|
$routes = explode('.',request()->route()->getName());
|
|
$routes[count($routes) - 1 ] = $name;
|
|
$cRuote = implode('.',$routes);
|
|
|
|
if (\Illuminate\Support\Facades\Route::has($cRuote)) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* get named route url
|
|
* @param $name string
|
|
* @param $args array
|
|
* @return string|null
|
|
*/
|
|
function getRoute($name, $args = []) : string | null
|
|
{
|
|
// create route
|
|
$routes = explode('.',request()->route()->getName());
|
|
$routes[count($routes) - 1 ] = $name;
|
|
$cRuote = implode('.',$routes);
|
|
|
|
if (\Illuminate\Support\Facades\Route::has($cRuote)) {
|
|
return \route($cRuote, $args);
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* make sort link suffix
|
|
* @param $col string
|
|
* @return string
|
|
*/
|
|
function sortSuffix($col) : string
|
|
{
|
|
if (request()->sort == $col) {
|
|
if (request('sortType', 'asc') == 'desc') {
|
|
return '&sortType=asc';
|
|
} else {
|
|
return '&sortType=desc';
|
|
}
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* make array compatible | help us to translate
|
|
* @param $array
|
|
* @param $translate
|
|
* @return false|string
|
|
*/
|
|
function arrayNormolizeVueCompatible($array, $translate = false): false | string
|
|
{
|
|
$result = [];
|
|
foreach ($array as $index => $item) {
|
|
$result[] = ['id' => $index, 'name' => ($translate ? __($item) : $item)];
|
|
}
|
|
return json_encode($result);
|
|
}
|
|
|
|
|
|
/**
|
|
* check string is json or not
|
|
* @param $string
|
|
* @return bool
|
|
*/
|
|
function isJson($string) : bool {
|
|
json_decode($string);
|
|
return json_last_error() === JSON_ERROR_NONE;
|
|
}
|
|
|
|
|
|
/**
|
|
* save admin batch log
|
|
* @param $method
|
|
* @param $cls class
|
|
* @param $ids
|
|
* @return void
|
|
*/
|
|
function logAdminBatch($method, $cls, $ids): void
|
|
{
|
|
$act = explode('\\', $method);
|
|
foreach ($ids as $id) {
|
|
auth()->user()->logs()->create([
|
|
'action' => $act[count($act) - 1],
|
|
'loggable_type' => $cls,
|
|
'loggable_id' => $id,
|
|
]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* save admin log
|
|
* @param $method
|
|
* @param $cls class
|
|
* @param $id
|
|
* @return void
|
|
*/
|
|
function logAdmin($method, $cls, $id) :void
|
|
{
|
|
$act = explode('\\', $method);
|
|
auth()->user()->logs()->create([
|
|
'action' => $act[count($act) - 1],
|
|
'loggable_type' => $cls,
|
|
'loggable_id' => $id,
|
|
]);
|
|
}
|
|
|
|
|
|
/**
|
|
* build query with excepts
|
|
* @param $except
|
|
* @return string
|
|
*/
|
|
function queryBuilder($except = null){
|
|
$queries = request()->toArray();
|
|
if ($except != null){
|
|
unset($queries[$except]);
|
|
unset($queries['sortType']);
|
|
}
|
|
return http_build_query($queries);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $name
|
|
* @param $replace_char string
|
|
* @return string
|
|
*/
|
|
function sluger($name, $replace_char = '-')
|
|
{
|
|
// special chars
|
|
$name = str_replace(['&', '+' , '@', '*'], ['and', 'plus', 'at', 'star'], $name);
|
|
|
|
// replace non letter or digits by -
|
|
$name = preg_replace('~[^\pL\d\.]+~u', $replace_char, $name);
|
|
|
|
// transliterate
|
|
$name = iconv('utf-8', 'utf-8//TRANSLIT', $name);
|
|
|
|
// trim
|
|
$name = trim($name, $replace_char);
|
|
|
|
// remove duplicate -
|
|
$name = preg_replace('~-+~', $replace_char, $name);
|
|
|
|
// lowercase
|
|
$name = strtolower($name);
|
|
|
|
if (empty($name)) {
|
|
return 'N-A';
|
|
}
|
|
|
|
return substr($name, 0, 120);
|
|
}
|
|
|
|
|
|
/**
|
|
* generate last item of breadcrumb of admin panel
|
|
* @return void
|
|
*/
|
|
function lastCrump()
|
|
{
|
|
$routes = explode('.', Route::currentRouteName());
|
|
if (count($routes) != 3) {
|
|
echo '<li >
|
|
<a>
|
|
<i class="fa fa-cube" ></i>
|
|
' . __(ucfirst($routes[count($routes) - 1])) . '
|
|
</a>
|
|
</li>';
|
|
return;
|
|
}
|
|
$route = $routes[count($routes) - 1];
|
|
if ($route == 'home') {
|
|
return;
|
|
}
|
|
|
|
if ($route == 'all' || $route == 'index' || $route == 'list') {
|
|
echo '<li >
|
|
<a>
|
|
<i class="fa fa-list" ></i>
|
|
' . __(ucfirst($routes[count($routes) - 2])) . '
|
|
</a>
|
|
</li>';
|
|
} else {
|
|
$link = '#';
|
|
$temp = $routes;
|
|
array_pop($temp);
|
|
$temp = implode('.', $temp) . '.';
|
|
$link = \route($temp . 'index');
|
|
echo '<li>
|
|
<a href="' . $link . '">
|
|
<i class="ri-list-check" ></i>
|
|
' . __(Str::plural(ucfirst($routes[count($routes) - 2]))) . '
|
|
</a>
|
|
</li>';
|
|
switch ($route) {
|
|
case 'create':
|
|
$title = __('Add') . ' ' . __($routes[count($routes) - 2]);
|
|
$icon = 'ri-add-line';
|
|
break;
|
|
case 'edit':
|
|
$title = __('Edit') . ' ' . __($routes[count($routes) - 2]);
|
|
$icon = 'ri-edit-line';
|
|
break;
|
|
case 'show':
|
|
$title = __('Show') . ' ' . __($routes[count($routes) - 2]);
|
|
$icon = 'ri-eye-line';
|
|
break;
|
|
case 'sort':
|
|
$title = __('Sort') . ' ' . __($routes[count($routes) - 2]);
|
|
$icon = 'ri-sort-number-asc';
|
|
break;
|
|
default:
|
|
$title = __('') . ' ' . __(ucfirst($routes[count($routes) - 1]));
|
|
$icon = 'ri-bubble-chart-line';
|
|
break;
|
|
}
|
|
echo '<li>
|
|
<a>
|
|
<i class="' . $icon . '" ></i>
|
|
' . $title . '
|
|
</a>
|
|
</li>';
|
|
}
|
|
}
|