Spaces:
Running
Running
File size: 3,600 Bytes
40dca3b 0c117c4 40dca3b 0c117c4 40dca3b 0c117c4 40dca3b 0c117c4 40dca3b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | <?php
namespace App\Services;
use App\Models\BaseModel;
use App\Models\BaseModel as Model;
use Carbon\Carbon;
use Google_Service_Drive_DriveFile;
use Illuminate\Support\Facades\Storage;
class BaseServices
{
public $model;
public function __construct(Model $model)
{
$this->model = $model;
}
protected function getCurrentUser()
{
return auth()->user();
}
protected function timeCondition($request,&$query, $tableName)
{
$query_array = $request->query();
$month = $query_array['month'] ?? "";
$year = $query_array['year'] ?? "";
$quarter = $query_array['quarter'] ?? "";
if (!empty($month) && !empty($year)) {
$query = $query->whereYear('updated_at', $year)
->whereMonth('updated_at', $month);
}
if (empty($month) && !empty($year)) {
$query = $query->whereYear('updated_at', $year);
}
if (!empty($quarter) && !empty($year)) {
$start_date = Carbon::create()->year($year)->month(BaseModel::QUATER_OF_YEAR[$quarter])->firstOfQuarter()->format('Y-m-d');
$end_date = Carbon::create()->year($year)->month(BaseModel::QUATER_OF_YEAR[$quarter])->endOfQuarter()->format('Y-m-d');
$query = $query
->whereRaw($tableName.".updated_at <= STR_TO_DATE(?, '%Y-%m-%d')", $end_date)
->whereRaw($tableName.".updated_at >= STR_TO_DATE(?, '%Y-%m-%d')", $start_date);
}
}
protected function responseJson($message, $code = 200, $data = null)
{
return response()->json([
'code' => $code,
'message' => $message,
'data' => $data
], $code);
}
function generateRandomString($length = 10)
{
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
public function getGGId($url){
$pattern = "/https:\/\/lh3.googleusercontent.com\/d\/(.*?)=w1000/i";
preg_match($pattern, $url,$matches);
return $matches[1]??"";
}
public function deteleGGDrive($urls){
try {
$driveService = Storage::disk('google');
$pattern = "/https:\/\/lh3.googleusercontent.com\/d\/(.*?)=w1000/i";
if(isset($urls)){
foreach ($urls as $url){
preg_match($pattern, $url,$matches);
$folderId = $matches[1]??null;
if($folderId)
$driveService->files->delete($folderId);
}
}
}catch (\Exception $e){
}
return true;
}
public function postGGDrive($driveService, $file, $folderId)
{
if (!$file) {
return null;
}
$name = $file->getClientOriginalName();
$type = $file->getClientMimeType();
$content = file_get_contents($file->getRealPath());
$fileMetadata = new Google_Service_Drive_DriveFile(array(
'name' => $this->generateRandomString(15) . '_' . time() . '_' . $name,
'parents' => array($folderId)));
$file = $driveService->files->create($fileMetadata, array(
'data' => $content,
'mimeType' => $type,
'uploadType' => 'multipart',
'fields' => 'id'));
return $file;
}
}
|