Common.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. namespace addons\shopro\controller;
  3. use think\Lang;
  4. use app\common\controller\Api;
  5. use addons\shopro\controller\traits\Util;
  6. use addons\shopro\controller\traits\UnifiedToken;
  7. /**
  8. * shopro 基础控制器
  9. */
  10. class Common extends Api
  11. {
  12. use Util, UnifiedToken;
  13. protected $model = null;
  14. public function _initialize()
  15. {
  16. Lang::load(APP_PATH . 'api/lang/zh-cn.php'); // 加载语言包
  17. parent::_initialize();
  18. if (check_env('yansongda', false)) {
  19. set_addon_config('epay', ['version' => 'v2'], false);
  20. }
  21. }
  22. // /**
  23. // * 操作成功返回的数据
  24. // * @param string $msg 提示信息
  25. // * @param mixed $data 要返回的数据
  26. // * @param int $code 错误码,默认为1
  27. // * @param string $type 输出类型
  28. // * @param array $header 发送的 Header 信息
  29. // */
  30. // protected function success($msg = '', $data = null, $error = 0, $type = null, array $header = [])
  31. // {
  32. // $this->result($msg, $data, $error, $type, $header);
  33. // }
  34. // /**
  35. // * 操作失败返回的数据
  36. // * @param string $msg 提示信息
  37. // * @param mixed $data 要返回的数据
  38. // * @param int $code 错误码,默认为0
  39. // * @param string $type 输出类型
  40. // * @param array $header 发送的 Header 信息
  41. // */
  42. // protected function error($msg = '', $error = 1, $data = null, $type = null, array $header = [])
  43. // {
  44. // $this->result($msg, $data, $error, $type, $header);
  45. // }
  46. // /**
  47. // * 返回封装后的 API 数据到客户端
  48. // * @access protected
  49. // * @param mixed $msg 提示信息
  50. // * @param mixed $data 要返回的数据
  51. // * @param int $code 错误码,默认为0
  52. // * @param string $type 输出类型,支持json/xml/jsonp
  53. // * @param array $header 发送的 Header 信息
  54. // * @return void
  55. // * @throws HttpResponseException
  56. // */
  57. // protected function result($msg, $data = null, $error = 0, $type = null, array $header = [])
  58. // {
  59. // $result = [
  60. // 'error' => $error,
  61. // 'msg' => $msg,
  62. // 'time' => Request::instance()->server('REQUEST_TIME'),
  63. // 'data' => $data,
  64. // ];
  65. // // 如果未设置类型则自动判断
  66. // $type = $type ? $type : ($this->request->param(config('var_jsonp_handler')) ? 'jsonp' : $this->responseType);
  67. // $statuscode = 200;
  68. // if (isset($header['statuscode'])) {
  69. // $statuscode = $header['statuscode'];
  70. // unset($header['statuscode']);
  71. // }
  72. // $response = Response::create($result, $type, $statuscode)->header($header);
  73. // throw new HttpResponseException($response);
  74. // }
  75. }