sys.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. if (!function_exists('auth')) {
  14. /**
  15. * 节点访问权限检查
  16. * @param string $node
  17. * @return boolean
  18. */
  19. function auth($node)
  20. {
  21. return \app\admin\service\Auth::checkAuthNode($node);
  22. }
  23. }
  24. if (!function_exists('sysdata')) {
  25. /**
  26. * JSON 数据读取与存储
  27. * @param string $name 数据名称
  28. * @param array|null $value 数据内容
  29. * @return mixed
  30. * @throws \think\Exception
  31. * @throws \think\exception\PDOException
  32. */
  33. function sysdata($name, array $value = null)
  34. {
  35. if (is_null($value)) {
  36. $data = json_decode(\think\Db::name('SystemData')->where('name', $name)->value('value'), true);
  37. return empty($data) ? [] : $data;
  38. }
  39. return data_save('SystemData', ['name' => $name, 'value' => json_encode($value, 256)], 'name');
  40. }
  41. }
  42. if (!function_exists('_sysmsg')) {
  43. /**
  44. * 增加系统消息
  45. * @param string $title 消息标题
  46. * @param string $desc 消息描述
  47. * @param string $url 访问链接
  48. * @param string $node 权限节点
  49. * @return boolean
  50. */
  51. function _sysmsg($title, $desc, $url, $node)
  52. {
  53. return \app\admin\service\Message::add($title, $desc, $url, $node);
  54. }
  55. }
  56. if (!function_exists('_syslog')) {
  57. /**
  58. * 写入系统日志
  59. * @param string $action 日志行为
  60. * @param string $content 日志内容
  61. * @return boolean
  62. */
  63. function _syslog($action, $content)
  64. {
  65. return \app\admin\service\Log::write($action, $content);
  66. }
  67. }
  68. if (!function_exists('local_image')) {
  69. /**
  70. * 下载远程文件到本地
  71. * @param string $url 远程图片地址
  72. * @return string
  73. */
  74. function local_image($url)
  75. {
  76. $result = \library\File::down($url);
  77. if (isset($result['url'])) return $result['url'];
  78. return $url;
  79. }
  80. }
  81. if (!function_exists('base64_image')) {
  82. /**
  83. * base64 图片上传接口
  84. * @param string $content
  85. * @param string $predir
  86. * @return string
  87. */
  88. function base64_image($content, $predir = 'base64/')
  89. {
  90. try {
  91. if (preg_match('|^data:image/(.*?);base64,|i', $content)) {
  92. list($ext, $base) = explode('|||', preg_replace('|^data:image/(.*?);base64,|i', '$1|||', $content));
  93. $info = \library\File::save($predir . md5($base) . '.' . (empty($ext) ? 'tmp' : $ext), base64_decode($base));
  94. return $info['url'];
  95. }
  96. return $content;
  97. } catch (\Exception $e) {
  98. return $content;
  99. }
  100. }
  101. }
  102. // 注册中间键
  103. \think\facade\Middleware::add('app\admin\service\Auth');