101 lines
2.7 KiB
PHP
101 lines
2.7 KiB
PHP
<?php
|
|
function removeSession($session){
|
|
if(\Session::has($session)){
|
|
\Session::forget($session);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function randomString($length,$type = 'token'){
|
|
if($type == 'password')
|
|
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_-=+;:,.?";
|
|
elseif($type == 'username')
|
|
$chars = "abcdefghijklmnopqrstuvwxyz0123456789";
|
|
else
|
|
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
|
$token = substr( str_shuffle( $chars ), 0, $length );
|
|
return $token;
|
|
}
|
|
|
|
function activeRoute($route, $isClass = false): string
|
|
{
|
|
$requestUrl = request()->fullUrl() === $route ? true : false;
|
|
|
|
if($isClass) {
|
|
return $requestUrl ? $isClass : '';
|
|
} else {
|
|
return $requestUrl ? 'active' : '';
|
|
}
|
|
}
|
|
|
|
function checkRecordExist($table_list,$column_name,$id){
|
|
if(count($table_list) > 0){
|
|
foreach($table_list as $table){
|
|
$check_data = \DB::table($table)->where($column_name,$id)->count();
|
|
if($check_data > 0) return false ;
|
|
}
|
|
return true;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Model file save to storage by spatie media library
|
|
function storeMediaFile($model,$file,$name)
|
|
{
|
|
if($file) {
|
|
$model->clearMediaCollection($name);
|
|
if (is_array($file)){
|
|
foreach ($file as $key => $value){
|
|
$model->addMedia($value)->toMediaCollection($name);
|
|
}
|
|
}else{
|
|
$model->addMedia($file)->toMediaCollection($name);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Model file get by storage by spatie media library
|
|
function getSingleMedia($model, $collection = 'image_icon',$skip=true)
|
|
{
|
|
if (!\Auth::check() && $skip) {
|
|
return asset('images/avatars/01.png');
|
|
}
|
|
if ($model !== null) {
|
|
$media = $model->getFirstMedia($collection);
|
|
}
|
|
$imgurl= isset($media)?$media->getPath():'';
|
|
if (file_exists($imgurl)) {
|
|
return $media->getFullUrl();
|
|
}
|
|
else
|
|
{
|
|
switch ($collection) {
|
|
case 'image_icon':
|
|
$media = asset('images/avatars/01.png');
|
|
break;
|
|
case 'profile_image':
|
|
$media = asset('images/avatars/01.png');
|
|
break;
|
|
default:
|
|
$media = asset('images/common/add.png');
|
|
break;
|
|
}
|
|
return $media;
|
|
}
|
|
}
|
|
|
|
// File exist check
|
|
function getFileExistsCheck($media)
|
|
{
|
|
$mediaCondition = false;
|
|
if($media) {
|
|
if($media->disk == 'public') {
|
|
$mediaCondition = file_exists($media->getPath());
|
|
} else {
|
|
$mediaCondition = \Storage::disk($media->disk)->exists($media->getPath());
|
|
}
|
|
}
|
|
return $mediaCondition;
|
|
}
|