sys.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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\AuthService;
  15. use think\admin\extend\NodeExtend;
  16. if (!function_exists('auth')) {
  17. /**
  18. * 访问权限检查
  19. * @param string $node
  20. * @return boolean
  21. * @throws ReflectionException
  22. */
  23. function auth($node)
  24. {
  25. return AuthService::check($node);
  26. }
  27. }
  28. if (!function_exists('sysdata')) {
  29. /**
  30. * JSON 数据读取与存储
  31. * @param string $name 数据名称
  32. * @param array|null $value 数据内容
  33. * @return mixed
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. function sysdata($name, array $value = null)
  39. {
  40. if (is_null($value)) {
  41. $data = json_decode(app()->db->name('SystemData')->where(['name' => $name])->value('value'), true);
  42. return empty($data) ? [] : $data;
  43. } else {
  44. return data_save('SystemData', ['name' => $name, 'value' => json_encode($value, JSON_UNESCAPED_UNICODE)], 'name');
  45. }
  46. }
  47. }
  48. if (!function_exists('sysoplog')) {
  49. /**
  50. * 写入系统日志
  51. * @param string $action 日志行为
  52. * @param string $content 日志内容
  53. * @return boolean
  54. */
  55. function sysoplog($action, $content)
  56. {
  57. return app()->db->name('SystemOplog')->insert([
  58. 'node' => NodeExtend::getCurrent(),
  59. 'action' => $action, 'content' => $content,
  60. 'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : app()->request->ip(),
  61. 'username' => PHP_SAPI === 'cli' ? 'cli' : app()->session->get('user.username'),
  62. ]);
  63. }
  64. }