123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace app\common\controller;
- use think\App;
- use think\Response;
- use app\BaseController;
- use think\facade\Event;
- use think\facade\Config;
- use think\exception\HttpResponseException;
- class Api extends BaseController
- {
-
- protected $responseType = 'json';
-
- protected $useSystemSettings = true;
- public function __construct(App $app)
- {
- parent::__construct($app);
- }
-
- protected function initialize()
- {
- if ($this->useSystemSettings) {
-
- ip_check();
-
- set_timezone();
-
- Event::trigger('uploadConfigInit', $this->app);
- }
- parent::initialize();
- $this->request->filter('trim,strip_tags,htmlspecialchars');
-
- $langset = $this->app->lang->getLangSet();
- $this->app->lang->load([
- app_path() . 'lang' . DIRECTORY_SEPARATOR . $langset . DIRECTORY_SEPARATOR . (str_replace('/', DIRECTORY_SEPARATOR, $this->app->request->controllerPath)) . '.php'
- ]);
- }
-
- protected function success(string $msg = '', $data = null, int $code = 1, string $type = null, array $header = [], array $options = [])
- {
- $this->result($msg, $data, $code, $type, $header, $options);
- }
-
- protected function error(string $msg = '', $data = null, int $code = 0, string $type = null, array $header = [], array $options = [])
- {
- $this->result($msg, $data, $code, $type, $header, $options);
- }
-
- public function result(string $msg, $data = null, int $code = 0, string $type = null, array $header = [], array $options = [])
- {
- $result = [
- 'code' => $code,
- 'msg' => $msg,
- 'time' => $this->request->server('REQUEST_TIME'),
- 'data' => $data,
- ];
-
- $type = $type ?: ($this->request->param(Config::get('route.var_jsonp_handler')) ? 'jsonp' : $this->responseType);
- $code = 200;
- if (isset($header['statuscode'])) {
- $code = $header['statuscode'];
- unset($header['statuscode']);
- }
- $response = Response::create($result, $type, $code)->header($header)->options($options);
- throw new HttpResponseException($response);
- }
- }
|