OplogService.php 1.7 KB

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