feat: update fechaexpedicion to string format and implement logging services
This commit is contained in:
parent
be300d449d
commit
b17b6608d3
54
app/Http/Controllers/Repuve/LogsController.php
Normal file
54
app/Http/Controllers/Repuve/LogsController.php
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<?php namespace App\Http\Controllers\Repuve;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use App\Services\LogsService;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Routing\Controllers\HasMiddleware;
|
||||||
|
use Notsoweb\ApiResponse\Enums\ApiResponse;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Descripción
|
||||||
|
*/
|
||||||
|
class LogsController extends Controller implements HasMiddleware
|
||||||
|
{
|
||||||
|
public function __construct(private LogsService $logsService)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function middleware(): array
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function repuveLogs(Request $request)
|
||||||
|
{
|
||||||
|
$filters = $this->filters($request);
|
||||||
|
$logs = $this->logsService->readRepuve($filters);
|
||||||
|
|
||||||
|
return ApiResponse::OK->response([
|
||||||
|
'source' => 'repuve',
|
||||||
|
'filters' => $filters,
|
||||||
|
'logs' => $logs,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function padronEstatalLogs(Request $request)
|
||||||
|
{
|
||||||
|
$filters = $this->filters($request);
|
||||||
|
$logs = $this->logsService->readPadronEstatal($filters);
|
||||||
|
|
||||||
|
return ApiResponse::OK->response([
|
||||||
|
'source' => 'padron-estatal',
|
||||||
|
'filters' => $filters,
|
||||||
|
'logs' => $logs,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function filters(Request $request): array
|
||||||
|
{
|
||||||
|
return $request->validate([
|
||||||
|
'start_date' => ['nullable', 'date'],
|
||||||
|
'end_date' => ['nullable', 'date', 'after_or_equal:start_date'],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -29,7 +29,7 @@ public function rules(): array
|
|||||||
'vehicle.rfv' => 'nullable|string|max:50',
|
'vehicle.rfv' => 'nullable|string|max:50',
|
||||||
'vehicle.rfc' => 'nullable|string|max:13',
|
'vehicle.rfc' => 'nullable|string|max:13',
|
||||||
'vehicle.ofcexpedicion' => 'nullable|string|max:100',
|
'vehicle.ofcexpedicion' => 'nullable|string|max:100',
|
||||||
'vehicle.fechaexpedicion' => 'nullable|date',
|
'vehicle.fechaexpedicion' => ['nullable', 'date_format:d/m/Y'],
|
||||||
'vehicle.tipo_veh' => 'nullable|string|max:50',
|
'vehicle.tipo_veh' => 'nullable|string|max:50',
|
||||||
'vehicle.numptas' => 'nullable|string',
|
'vehicle.numptas' => 'nullable|string',
|
||||||
'vehicle.observac' => 'nullable|string|max:500',
|
'vehicle.observac' => 'nullable|string|max:500',
|
||||||
|
|||||||
@ -36,7 +36,6 @@ class Vehicle extends Model
|
|||||||
];
|
];
|
||||||
|
|
||||||
protected $casts = [
|
protected $casts = [
|
||||||
'fechaexpedicion' => 'date',
|
|
||||||
'reporte_robo' => 'boolean',
|
'reporte_robo' => 'boolean',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
139
app/Services/LogsService.php
Normal file
139
app/Services/LogsService.php
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
<?php namespace App\Services;
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use Illuminate\Support\Arr;
|
||||||
|
use SplFileObject;
|
||||||
|
|
||||||
|
class LogsService
|
||||||
|
{
|
||||||
|
private array $sources = [
|
||||||
|
'repuve' => 'logs/repuve-nacional.log',
|
||||||
|
'padron-estatal' => 'logs/padron-estatal.log',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function readRepuve(array $filters): array
|
||||||
|
{
|
||||||
|
return $this->read('repuve', $filters);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function readPadronEstatal(array $filters): array
|
||||||
|
{
|
||||||
|
return $this->read('padron-estatal', $filters);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function read(string $source, array $filters): array
|
||||||
|
{
|
||||||
|
$path = storage_path($this->sources[$source]);
|
||||||
|
|
||||||
|
if (!is_file($path) || !is_readable($path)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
$entries = $this->parseFile($path);
|
||||||
|
|
||||||
|
return $this->applyFilters($entries, $filters);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function parseFile(string $path): array
|
||||||
|
{
|
||||||
|
$file = new SplFileObject($path, 'r');
|
||||||
|
$entries = [];
|
||||||
|
$current = null;
|
||||||
|
|
||||||
|
while (!$file->eof()) {
|
||||||
|
$line = rtrim((string) $file->fgets(), "\r\n");
|
||||||
|
if ($line === '') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$header = $this->parseHeader($line);
|
||||||
|
|
||||||
|
if ($header) {
|
||||||
|
if ($current) {
|
||||||
|
$entries[] = $this->sanitize($current);
|
||||||
|
}
|
||||||
|
$current = $header;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($current) {
|
||||||
|
$current['message'] .= "\n" . $line;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($current) {
|
||||||
|
$entries[] = $this->sanitize($current);
|
||||||
|
}
|
||||||
|
|
||||||
|
usort($entries, fn($a, $b) => strcmp($b['timestamp'], $a['timestamp']));
|
||||||
|
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function parseHeader(string $line): ?array
|
||||||
|
{
|
||||||
|
$pattern = '/^\[(?<dt>[^\]]+)\]\s[^\.\s]+\.(?<level>[A-Z]+):\s(?<message>.*)$/';
|
||||||
|
|
||||||
|
if (!preg_match($pattern, $line, $m)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$date = Carbon::parse($m['dt']);
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
'timestamp' => $date->toDateTimeString(),
|
||||||
|
'level' => strtolower($m['level']),
|
||||||
|
'message' => $m['message'],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
private function applyFilters(array $entries, array $filters): array
|
||||||
|
{
|
||||||
|
$start = !empty($filters['start_date']) ? Carbon::parse($filters['start_date'])->startOfDay() : null;
|
||||||
|
$end = !empty($filters['end_date']) ? Carbon::parse($filters['end_date'])->endOfDay() : null;
|
||||||
|
$level = $filters['level'] ?? null;
|
||||||
|
|
||||||
|
return array_values(array_filter($entries, function (array $entry) use ($start, $end, $level) {
|
||||||
|
$dt = Carbon::parse($entry['timestamp']);
|
||||||
|
|
||||||
|
if ($start && $dt->lt($start)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($end && $dt->gt($end)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($level && $entry['level'] !== strtolower($level)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
private function sanitize(array $entry): array
|
||||||
|
{
|
||||||
|
$text = $entry['message'];
|
||||||
|
|
||||||
|
$patterns = [
|
||||||
|
'/("password"\s*:\s*")[^"]*(")/i' => '$1***$2',
|
||||||
|
'/("token"\s*:\s*")[^"]*(")/i' => '$1***$2',
|
||||||
|
'/(authorization)\s*[:=]\s*([^,\s]+)/i' => '$1=***',
|
||||||
|
'/(<arg0>)(.*?)(<\/arg0>)/i' => '$1***$3',
|
||||||
|
'/(<arg1>)(.*?)(<\/arg1>)/i' => '$1***$3',
|
||||||
|
];
|
||||||
|
|
||||||
|
foreach ($patterns as $pattern => $replacement) {
|
||||||
|
$text = preg_replace($pattern, $replacement, $text);
|
||||||
|
}
|
||||||
|
|
||||||
|
$entry['message'] = $text;
|
||||||
|
|
||||||
|
return $entry;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -172,11 +172,7 @@ private function parsearRespuesta(string $soapResponse): array
|
|||||||
*/
|
*/
|
||||||
public function extraerDatosVehiculo(array $datos): array
|
public function extraerDatosVehiculo(array $datos): array
|
||||||
{
|
{
|
||||||
// Convertir fecha de DD/MM/YYYY a YYYY-MM-DD
|
$fechaexpedicion = $datos['fechaexp'] ?? null;
|
||||||
$fechaexpedicion = null;
|
|
||||||
if (isset($datos['fechaexp']) && $datos['fechaexp']) {
|
|
||||||
$fechaexpedicion = $this->convertirFecha($datos['fechaexp']);
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'placa' => $datos['placa'] ?? null,
|
'placa' => $datos['placa'] ?? null,
|
||||||
@ -201,29 +197,6 @@ public function extraerDatosVehiculo(array $datos): array
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Convierte fecha de DD/MM/YYYY a YYYY-MM-DD
|
|
||||||
*/
|
|
||||||
private function convertirFecha(?string $fecha): ?string
|
|
||||||
{
|
|
||||||
if (!$fecha) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Si ya está en formato YYYY-MM-DD, retornar tal cual
|
|
||||||
if (preg_match('/^\d{4}-\d{2}-\d{2}$/', $fecha)) {
|
|
||||||
return $fecha;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convertir de DD/MM/YYYY a YYYY-MM-DD
|
|
||||||
if (preg_match('/^(\d{2})\/(\d{2})\/(\d{4})$/', $fecha, $matches)) {
|
|
||||||
return "{$matches[3]}-{$matches[2]}-{$matches[1]}";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Si no coincide con ningún formato esperado, retornar null
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extrae los datos del propietario del resultado
|
* Extrae los datos del propietario del resultado
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -236,7 +236,9 @@ private function parseVehicleResponse(string $soapResponse, string $niv)
|
|||||||
'pedimento',
|
'pedimento',
|
||||||
'fecha_pedimento',
|
'fecha_pedimento',
|
||||||
'clave_importador',
|
'clave_importador',
|
||||||
'observaciones'
|
'folio_CI',
|
||||||
|
'identificador_CI',
|
||||||
|
'observaciones',
|
||||||
];
|
];
|
||||||
|
|
||||||
$jsonResponse = [];
|
$jsonResponse = [];
|
||||||
|
|||||||
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::table('vehicle', function (Blueprint $table) {
|
||||||
|
$table->string('fechaexpedicion', 10)->nullable()->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::table('vehicle', function (Blueprint $table) {
|
||||||
|
$table->date('fechaexpedicion')->nullable()->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
@ -153,6 +153,11 @@ public function run(): void
|
|||||||
|
|
||||||
$tagAssignToModule = $this->onPermission('tags.assign_to_module', 'Asignar etiquetas a módulo', $tags, 'api');
|
$tagAssignToModule = $this->onPermission('tags.assign_to_module', 'Asignar etiquetas a módulo', $tags, 'api');
|
||||||
|
|
||||||
|
// === LOGS DE SERVICIOS ===
|
||||||
|
$logsServices = PermissionType::updateOrCreate(['name' => 'Logs de Servicios']);
|
||||||
|
|
||||||
|
$logsServicesIndex = $this->onPermission('logs.services.index', 'Ver logs de servicios externos', $logsServices, 'api');
|
||||||
|
|
||||||
// =========================================================
|
// =========================================================
|
||||||
// ROLES
|
// ROLES
|
||||||
// =========================================================
|
// =========================================================
|
||||||
@ -194,7 +199,9 @@ public function run(): void
|
|||||||
// Constancias
|
// Constancias
|
||||||
$tagIndex, $tagCreate, $tagEdit, $tagDestroy,
|
$tagIndex, $tagCreate, $tagEdit, $tagDestroy,
|
||||||
//app
|
//app
|
||||||
$apkIndex
|
$apkIndex,
|
||||||
|
// Logs
|
||||||
|
$logsServicesIndex
|
||||||
);
|
);
|
||||||
|
|
||||||
// Encargado
|
// Encargado
|
||||||
@ -219,6 +226,8 @@ public function run(): void
|
|||||||
$packageIndex, $packageCreate, $packageEdit, $packageDestroy, $packageBoxTags,
|
$packageIndex, $packageCreate, $packageEdit, $packageDestroy, $packageBoxTags,
|
||||||
// Constancias
|
// Constancias
|
||||||
$tagIndex, $tagCreate, $tagEdit, $tagDestroy, $tagAssignToModule,
|
$tagIndex, $tagCreate, $tagEdit, $tagDestroy, $tagAssignToModule,
|
||||||
|
// Logs
|
||||||
|
$logsServicesIndex
|
||||||
);
|
);
|
||||||
|
|
||||||
// Perito
|
// Perito
|
||||||
|
|||||||
@ -15,6 +15,7 @@
|
|||||||
use App\Http\Controllers\Repuve\PackageController;
|
use App\Http\Controllers\Repuve\PackageController;
|
||||||
use App\Http\Controllers\Repuve\TagsController;
|
use App\Http\Controllers\Repuve\TagsController;
|
||||||
use App\Http\Controllers\Repuve\AppController;
|
use App\Http\Controllers\Repuve\AppController;
|
||||||
|
use App\Http\Controllers\Repuve\LogsController;
|
||||||
use App\Http\Controllers\System\SettingsController;
|
use App\Http\Controllers\System\SettingsController;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -100,6 +101,10 @@
|
|||||||
Route::delete('app/{app}', [AppController::class, 'destroy']);
|
Route::delete('app/{app}', [AppController::class, 'destroy']);
|
||||||
Route::get('app/download', [AppController::class, 'download']);
|
Route::get('app/download', [AppController::class, 'download']);
|
||||||
|
|
||||||
|
// Rutas de logs
|
||||||
|
Route::get('logs/repuve', [LogsController::class, 'repuveLogs']);
|
||||||
|
Route::get('logs/padron-estatal', [LogsController::class, 'padronEstatalLogs']);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/** Rutas públicas */
|
/** Rutas públicas */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user