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.

88 lines
3.5 KiB
PHP

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
namespace App\Services;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use mysql_xdevapi\Exception;
class LogService
{
public function RequestLog($arr,$id){ //记录请求日志
date_default_timezone_set('PRC');
self::CheckTableName();
$table_name='zz_request_log_' . date('ym');
$response_data =isset($arr['response_data'])?self::JsonEncode($arr['response_data']):'';
$header_data = self::JsonEncode($arr['request_header']);
$post_data = self::JsonEncode($arr['post_data']);
$get_data = json_encode($arr['get_data'], JSON_UNESCAPED_UNICODE);
$milliseconds = round(microtime(true) * 1000);
$date = date("Y-m-d H:i:s", $milliseconds / 1000);
$formatted_date = sprintf("%s.%03d", $date, $milliseconds % 1000);
// $i=DB::insert("insert into ".$table_name." (request_ip, response_data,header_data,post_data,get_data,request_url,create_time,update_time)
// values (?,?,?,?,?,?,?,?)",[$arr['ip'],$response_data,$header_data,$post_data,$get_data,$arr['request_url'],$formatted_date,$formatted_date]);
// var_dump($i);
if($id>0){
return DB::table($table_name)->where('id', $id)->update([
'response_data' => $response_data,
]);
}else{
return DB::table($table_name)->insertGetId([
'request_ip' => $arr['ip'],
'response_data' => $response_data,
'header_data' => $header_data,
'post_data' => $post_data,
'get_data' => $get_data,
'request_url' => $arr['request_url'],
'create_time' => $formatted_date,
'update_time' => $formatted_date
]);
}
}
public static function CheckTableName(){ // 查看日志表是否存在,每月一个表,如果没有就创建
$table_name='zz_request_log_' . date('ym');
if(Schema::hasTable($table_name)){
}else{
Schema::create($table_name, function (Blueprint $table) {
$table->id();
$table->string('mark', 100)->nullable();
$table->string('request_ip', 15);
$table->text('post_data');
$table->text('get_data');
$table->text('header_data');
$table->text('response_data')->nullable();
$table->string('request_url', 300);
$table->string('create_time', 30);
$table->string('update_time', 30);
$table->timestamps();
});
}
}
public static function JsonEncode($data){ //格式化数据转json
$post_data =$data;
foreach ($post_data as $key => $post_datum) {
$str_len = mb_strlen(json_encode($post_datum, JSON_UNESCAPED_UNICODE));
$str_size = $str_len / 1024;
if ($str_size > 10) {
if(is_array($post_data)){
$post_data[$key]= 'Row size too large';
}elseif(is_object($post_data)){
$post_data->$key= 'Row size too large';
}else{
$post_data="data size too large";
}
}
}
$post_data = json_encode($post_data, JSON_UNESCAPED_UNICODE);
$str_len = mb_strlen($post_data);
$str_size = $str_len / 1024;
if ($str_size > 40) $post_data = '{"data":"Row size too large"}';
return $post_data;
}
}