Log.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. namespace app\admin\service;
  14. use library\tools\Node;
  15. use think\Db;
  16. /**
  17. * 系统日志服务管理
  18. * Class Log
  19. * @package app\admin\service
  20. */
  21. class Log
  22. {
  23. /**
  24. * 写入操作日志
  25. * @param string $action
  26. * @param string $content
  27. * @return bool
  28. */
  29. public static function write($action = '行为', $content = "内容描述")
  30. {
  31. $data = [
  32. 'node' => Node::current(),
  33. 'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : request()->ip(),
  34. 'action' => $action,
  35. 'content' => $content,
  36. 'username' => PHP_SAPI === 'cli' ? 'cli' : session('user.username'),
  37. ];
  38. return Db::name('SystemLog')->insert($data) !== false;
  39. }
  40. /**
  41. * 清理系统日志数据
  42. * @return boolean
  43. * @throws \think\Exception
  44. * @throws \think\exception\PDOException
  45. */
  46. public static function clear()
  47. {
  48. return Db::name('SystemLog')->where('1=1')->delete() !== false;
  49. }
  50. }