sys.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 app\admin\service\NodeService;
  15. use app\admin\service\OplogService;
  16. use library\File;
  17. use think\Db;
  18. use think\facade\Middleware;
  19. use think\Request;
  20. if (!function_exists('auth')) {
  21. /**
  22. * 节点访问权限检查
  23. * @param string $node
  24. * @return boolean
  25. * @throws ReflectionException
  26. */
  27. function auth($node)
  28. {
  29. return NodeService::checkAuth($node);
  30. }
  31. }
  32. if (!function_exists('sysdata')) {
  33. /**
  34. * JSON 数据读取与存储
  35. * @param string $name 数据名称
  36. * @param array|null $value 数据内容
  37. * @return mixed
  38. * @throws \think\Exception
  39. * @throws \think\exception\PDOException
  40. */
  41. function sysdata($name, array $value = null)
  42. {
  43. if (is_null($value)) {
  44. $data = json_decode(Db::name('SystemData')->where(['name' => $name])->value('value'), true);
  45. return empty($data) ? [] : $data;
  46. } else {
  47. return data_save('SystemData', ['name' => $name, 'value' => json_encode($value, JSON_UNESCAPED_UNICODE)], 'name');
  48. }
  49. }
  50. }
  51. if (!function_exists('sysoplog')) {
  52. /**
  53. * 写入系统日志
  54. * @param string $action 日志行为
  55. * @param string $content 日志内容
  56. * @return boolean
  57. */
  58. function sysoplog($action, $content)
  59. {
  60. return OplogService::write($action, $content);
  61. }
  62. }
  63. if (!function_exists('local_image')) {
  64. /**
  65. * 下载远程文件到本地
  66. * @param string $url 远程图片地址
  67. * @return string
  68. */
  69. function local_image($url)
  70. {
  71. $result = File::down($url);
  72. if (isset($result['url'])) {
  73. return $result['url'];
  74. } else {
  75. return $url;
  76. }
  77. }
  78. }
  79. if (!function_exists('base64_image')) {
  80. /**
  81. * base64 图片上传接口
  82. * @param string $content
  83. * @param string $predir
  84. * @return string
  85. */
  86. function base64_image($content, $predir = 'base64/')
  87. {
  88. try {
  89. if (preg_match('|^data:image/(.*?);base64,|i', $content)) {
  90. list($ext, $base) = explode('|||', preg_replace('|^data:image/(.*?);base64,|i', '$1|||', $content));
  91. $info = File::save($predir . md5($base) . '.' . (empty($ext) ? 'tmp' : $ext), base64_decode($base));
  92. return $info['url'];
  93. } else {
  94. return $content;
  95. }
  96. } catch (\Exception $e) {
  97. return $content;
  98. }
  99. }
  100. }
  101. // 访问权限检查中间键
  102. Middleware::add(function (Request $request, \Closure $next) {
  103. // 访问权限检查
  104. if (NodeService::checkAuth()) {
  105. return $next($request);
  106. } else {
  107. if (NodeService::islogin()) {
  108. return json(['code' => 0, 'msg' => '抱歉,没有访问该操作的权限!']);
  109. } else {
  110. return json(['code' => 0, 'msg' => '抱歉,您还没有登录获取访问权限!', 'url' => url('@admin/login')]);
  111. }
  112. }
  113. });