mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-14 04:12:50 +00:00
64 lines
1.2 KiB
PHP
64 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
namespace crmeb\utils;
|
|
|
|
|
|
use think\Response;
|
|
|
|
class Json
|
|
{
|
|
private $code = 200;
|
|
|
|
public function code(int $code): self
|
|
{
|
|
$this->code = $code;
|
|
return $this;
|
|
}
|
|
|
|
public function make(int $status, string $msg, ?array $data = null): Response
|
|
{
|
|
$res = compact('status', 'msg');
|
|
|
|
if (!is_null($data))
|
|
$res['data'] = $data;
|
|
|
|
return Response::create($res, 'json', $this->code);
|
|
}
|
|
|
|
public function success($msg = 'ok', ?array $data = null): Response
|
|
{
|
|
if (is_array($msg)) {
|
|
$data = $msg;
|
|
$msg = 'ok';
|
|
}
|
|
|
|
return $this->make(200, $msg, $data);
|
|
}
|
|
|
|
public function successful(...$args): Response
|
|
{
|
|
return $this->success(...$args);
|
|
}
|
|
|
|
public function fail($msg = 'fail', ?array $data = null): Response
|
|
{
|
|
if (is_array($msg)) {
|
|
$data = $msg;
|
|
$msg = 'ok';
|
|
}
|
|
|
|
return $this->make(400, $msg, $data);
|
|
}
|
|
|
|
public function status($status, $msg, $result = [])
|
|
{
|
|
$status = strtoupper($status);
|
|
if (is_array($msg)) {
|
|
$result = $msg;
|
|
$msg = 'ok';
|
|
}
|
|
return $this->success($msg, compact('status', 'result'));
|
|
}
|
|
|
|
} |