心理咨询网
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ApiController.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年4月22日
  7. * API公共控制类
  8. */
  9. namespace app\common;
  10. use core\basic\Controller;
  11. use core\basic\Config;
  12. class ApiController extends Controller
  13. {
  14. public function __construct()
  15. {
  16. // 自动缓存基础信息
  17. cache_config();
  18. // 从配置文件读取cmsname参数来设置系统名称
  19. define("CMSNAME", $this->config("cmsname") ?: 'PbootCMS');
  20. $this->checkAccess($this->config());
  21. }
  22. /**
  23. * 客户端发起请求必须包含appid、timestamp、signature三个参数;
  24. * signature通过appid、secret、timestamp连接为一个字符串,然后进行双层md5加密生成;
  25. */
  26. public static function checkAccess($config)
  27. {
  28. if (! isset($config['api_open']) || ! $config['api_open']) {
  29. json(0, '系统尚未开启API功能,请到后台配置');
  30. }
  31. // 验证总开关
  32. if ($config['api_auth']) {
  33. // 判断用户
  34. if (! $config['api_appid']) {
  35. json(0, '请求失败:管理后台接口认证用户配置有误');
  36. }
  37. // 判断密钥
  38. if (! $config['api_secret']) {
  39. json(0, '请求失败:管理后台接口认证密钥配置有误');
  40. }
  41. // 获取参数
  42. if (! $appid = request('appid')) {
  43. json(0, '请求失败:未检查到appid参数');
  44. }
  45. if (! $timestamp = request('timestamp')) {
  46. json(0, '请求失败:未检查到timestamp参数');
  47. }
  48. if (! $signature = request('signature')) {
  49. json(0, '请求失败:未检查到signature参数');
  50. }
  51. // 验证时间戳
  52. if (strpos($_SERVER['HTTP_REFERER'], get_http_url()) === false && time() - $timestamp > 15) { // 请求时间戳认证,不得超过15秒
  53. json(0, '请求失败:接口时间戳验证失败!');
  54. }
  55. // 验证签名
  56. if ($signature != md5(md5($config['api_appid'] . $config['api_secret'] . $timestamp))) {
  57. error('请求失败:接口签名信息错误!');
  58. }
  59. }
  60. }
  61. }