InitRoute.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. namespace app\event;
  3. use think\app\Service;
  4. use think\facade\Route;
  5. use app\model\system\Addon;
  6. use think\facade\Cache;
  7. class InitRoute extends Service
  8. {
  9. public function handle()
  10. {
  11. if (defined('BIND_MODULE') && BIND_MODULE === 'install') {
  12. return;
  13. }
  14. $ip = request()->ip();
  15. if (false) {
  16. $cert = file_get_contents('cert.key');
  17. if (empty($cert)) {
  18. die(' ');
  19. }
  20. $cert_data = $this->decrypt($cert);
  21. if (!empty($cert_data)) {
  22. $time = time();
  23. $url = request()->domain();
  24. if ($cert_data['devolution_url'] == 'niutest') {
  25. if ($time > $cert_data['devolution_expire_date']) {
  26. die(' ');
  27. }
  28. define("NIUSHOP_AUTH_VERSION", $cert_data['module_mark']);
  29. } else {
  30. if (strpos($url, $cert_data['devolution_url']) !== false) {
  31. if ($time > $cert_data['devolution_expire_date'] && $cert_data['devolution_expire_date'] != 0) {
  32. die(' ');
  33. }
  34. define("NIUSHOP_AUTH_VERSION", $cert_data['module_mark']);
  35. } else {
  36. die(' ');
  37. }
  38. }
  39. } else {
  40. die(' ');
  41. }
  42. } else {
  43. define("NIUSHOP_AUTH_VERSION", SYS_VERSION);
  44. }
  45. $system_array = ['admin', 'shop', 'install', 'cron', 'api', 'pay'];
  46. $pathinfo = request()->pathinfo();
  47. $pathinfo_array = explode('/', $pathinfo);
  48. $check_model = $pathinfo_array[0];
  49. $addon = in_array($check_model, $system_array) ? '' : $check_model;
  50. if (!empty($addon)) {
  51. $auth_control = $this->authControl();
  52. if (in_array($addon, $auth_control)) {
  53. $addons_auth = $this->addonsAuth();
  54. $sys_version = SYS_VERSION;
  55. if (!in_array($addon, $addons_auth[$sys_version])) {
  56. die(' ');
  57. }
  58. }
  59. $module = isset($pathinfo_array[1]) ? $pathinfo_array[1] : 'admin';
  60. $controller = isset($pathinfo_array[2]) ? $pathinfo_array[2] : 'index';
  61. $method = isset($pathinfo_array[3]) ? $pathinfo_array[3] : 'index';
  62. request()->addon($addon);
  63. $this->app->setNamespace("addon\\" . $addon . '\\' . $module);
  64. $this->app->setAppPath($this->app->getRootPath() . 'addon' . DIRECTORY_SEPARATOR . $addon . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR);
  65. } else {
  66. $module = isset($pathinfo_array[0]) ? $pathinfo_array[0] : 'admin';
  67. $controller = isset($pathinfo_array[1]) ? $pathinfo_array[1] : 'index';
  68. $method = isset($pathinfo_array[2]) ? $pathinfo_array[2] : 'index';
  69. }
  70. $pathinfo = str_replace(".html", '', $pathinfo);
  71. $controller = str_replace(".html", '', $controller);
  72. $method = str_replace(".html", '', $method);
  73. request()->module($module);
  74. Route::rule($pathinfo, $module . '/' . $controller . '/' . $method);
  75. }
  76. private function decrypt($data)
  77. {
  78. $format_data = substr($data, 32);
  79. $time = substr($data, -10);
  80. $decrypt_data = strstr($format_data, $time);
  81. $key = str_replace($decrypt_data, '', $format_data);
  82. $data = str_replace($time, '', $decrypt_data);
  83. $json_data = decrypt($data, $key);
  84. $array = json_decode($json_data, true);
  85. if ($array['time'] == md5($time . 'niushop' . $key)) {
  86. $cache = Cache::get("niushop_auth_tag");
  87. if (empty($cache)) {
  88. $domain = request()->domain();
  89. $redirect = 'https://xxxxx.cn/index.php?s=/web/auth/getno&key=' . $key . '&url=' . $domain;
  90. Cache::set("niushop_auth_tag", 1, 3600 * 24 * 2);
  91. http($redirect, 1);
  92. }
  93. return $array;
  94. } else {
  95. return [];
  96. }
  97. }
  98. private function addonsAuth()
  99. {
  100. return ['B2B2C_FLAGSHIP' => ['fenxiao', 'pintuan'], 'B2B2C_COMP' => ['fenxiao', 'pintuan'], 'B2B2C_FLAGSHIP1' => ['fenxiao', 'pintuan'], 'B2B2C_CITY' => ['fenxiao', 'pintuan']];
  101. }
  102. private function authControl()
  103. {
  104. return ['fenxiao', 'pintuan'];
  105. }
  106. }