sys.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. use library\File;
  15. use library\service\AdminService;
  16. use library\service\CaptchaService;
  17. use library\service\SystemService;
  18. use think\Db;
  19. use think\facade\Middleware;
  20. use think\facade\Route;
  21. use think\Request;
  22. if (!function_exists('auth')) {
  23. /**
  24. * 节点访问权限检查
  25. * @param string $node 需要检查的节点
  26. * @return boolean
  27. * @throws ReflectionException
  28. */
  29. function auth($node)
  30. {
  31. return AdminService::instance()->check($node);
  32. }
  33. }
  34. if (!function_exists('sysdata')) {
  35. /**
  36. * JSON 数据读取与存储
  37. * @param string $name 数据名称
  38. * @param mixed $value 数据内容
  39. * @return mixed
  40. * @throws \think\Exception
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @throws \think\exception\DbException
  44. * @throws \think\exception\PDOException
  45. */
  46. function sysdata($name, $value = null)
  47. {
  48. if (is_null($value)) {
  49. return SystemService::instance()->getData($name);
  50. } else {
  51. return SystemService::instance()->setData($name, $value);
  52. }
  53. }
  54. }
  55. if (!function_exists('sysoplog')) {
  56. /**
  57. * 写入系统日志
  58. * @param string $action 日志行为
  59. * @param string $content 日志内容
  60. * @return boolean
  61. */
  62. function sysoplog($action, $content)
  63. {
  64. return SystemService::instance()->setOplog($action, $content);
  65. }
  66. }
  67. if (!function_exists('sysqueue')) {
  68. /**
  69. * 创建异步处理任务
  70. * @param string $title 任务名称
  71. * @param string $loade 执行内容
  72. * @param integer $later 延时执行时间
  73. * @param array $data 任务附加数据
  74. * @param integer $double 任务多开
  75. * @return boolean
  76. * @throws \think\Exception
  77. */
  78. function sysqueue($title, $loade, $later = 0, $data = [], $double = 1)
  79. {
  80. $map = [['title', 'eq', $title], ['status', 'in', [1, 2]]];
  81. if (empty($double) && Db::name('SystemQueue')->where($map)->count() > 0) {
  82. throw new \think\Exception('该任务已经创建,请耐心等待处理完成!');
  83. }
  84. $result = Db::name('SystemQueue')->insert([
  85. 'title' => $title, 'preload' => $loade,
  86. 'data' => json_encode($data, JSON_UNESCAPED_UNICODE),
  87. 'time' => $later > 0 ? time() + $later : time(),
  88. 'double' => intval($double), 'create_at' => date('Y-m-d H:i:s'),
  89. ]);
  90. return $result !== false;
  91. }
  92. }
  93. if (!function_exists('local_image')) {
  94. /**
  95. * 下载远程文件到本地
  96. * @param string $url 远程图片地址
  97. * @param boolean $force 是否强制重新下载
  98. * @param integer $expire 强制本地存储时间
  99. * @return string
  100. */
  101. function local_image($url, $force = false, $expire = 0)
  102. {
  103. $result = File::down($url, $force, $expire);
  104. if (isset($result['url'])) {
  105. return $result['url'];
  106. } else {
  107. return $url;
  108. }
  109. }
  110. }
  111. if (!function_exists('base64_image')) {
  112. /**
  113. * base64 图片上传接口
  114. * @param string $content 图片base64内容
  115. * @param string $dirname 图片存储目录
  116. * @return string
  117. */
  118. function base64_image($content, $dirname = 'base64/')
  119. {
  120. try {
  121. if (preg_match('|^data:image/(.*?);base64,|i', $content)) {
  122. list($ext, $base) = explode('|||', preg_replace('|^data:image/(.*?);base64,|i', '$1|||', $content));
  123. $info = File::save($dirname . md5($base) . '.' . (empty($ext) ? 'tmp' : $ext), base64_decode($base));
  124. return $info['url'];
  125. } else {
  126. return $content;
  127. }
  128. } catch (\Exception $e) {
  129. return $content;
  130. }
  131. }
  132. }
  133. // 访问权限检查中间键
  134. Middleware::add(function (Request $request, \Closure $next) {
  135. if (AdminService::instance()->check()) {
  136. return $next($request);
  137. } elseif (AdminService::instance()->isLogin()) {
  138. return json(['code' => 0, 'msg' => '抱歉,没有访问该操作的权限!']);
  139. } else {
  140. return json(['code' => 0, 'msg' => '抱歉,需要登录获取访问权限!', 'url' => url('@admin/login')]);
  141. }
  142. });
  143. // ThinkAdmin 图形验证码
  144. Route::get('/think/admin/captcha', function () {
  145. $image = CaptchaService::instance();
  146. return json(['code' => '1', 'info' => '生成验证码', 'data' => [
  147. 'uniqid' => $image->getUniqid(), 'image' => $image->getData()
  148. ]]);
  149. });