OplogService.php 1.8 KB

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