No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppEndBehavior.php 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?php
  2. namespace app\admin\behavior;
  3. use think\Db;
  4. /**
  5. * 系统行为扩展:
  6. */
  7. class AppEndBehavior {
  8. protected static $actionName;
  9. protected static $controllerName;
  10. protected static $moduleName;
  11. protected static $method;
  12. /**
  13. * 构造方法
  14. * @param Request $request Request对象
  15. * @access public
  16. */
  17. public function __construct()
  18. {
  19. }
  20. // 行为扩展的执行入口必须是run
  21. public function run(&$params){
  22. self::$actionName = request()->action();
  23. self::$controllerName = request()->controller();
  24. self::$moduleName = request()->module();
  25. self::$method = request()->method();
  26. // file_put_contents ( DATA_PATH."log.txt", date ( "Y-m-d H:i:s" ) . " " . var_export('admin_CoreProgramBehavior',true) . "\r\n", FILE_APPEND );
  27. $this->_initialize();
  28. }
  29. private function _initialize() {
  30. $this->resetAuthor(); // 临时处理授权问题
  31. $this->clearHtmlCache(); // 变动数据之后,清除页面缓存和数据
  32. $this->eyou_statistics_data(); // 商城主题欢迎页的数据统计
  33. }
  34. /**
  35. * 临时处理授权问题
  36. */
  37. private function resetAuthor()
  38. {
  39. /*在以下相应的控制器和操作名里执行,以便提高性能*/
  40. $ctlActArr = array(
  41. 'Index@index',
  42. );
  43. $ctlActStr = self::$controllerName.'@'.self::$actionName;
  44. if (in_array($ctlActStr, $ctlActArr) && 'GET' == self::$method) {
  45. if(!empty($_SESSION['isset_resetAuthor']))
  46. return true;
  47. $_SESSION['isset_resetAuthor'] = 1;
  48. session('isset_author', null);
  49. }
  50. /*--end*/
  51. }
  52. /**
  53. * 数据变动之后,清理页面和数据缓存
  54. */
  55. private function clearHtmlCache()
  56. {
  57. /*在以下相应的控制器和操作名里执行,以便提高性能*/
  58. $actArr = ['add','edit','del','recovery','changeTableVal'];
  59. if ('POST' == self::$method) {
  60. foreach ($actArr as $key => $val) {
  61. if (preg_match('/^((.*)_)?('.$val.')$/i', self::$actionName) || preg_match('/^(ajax_)?'.$val.'(_(.*))?$/i', self::$actionName)) {
  62. $aids = [];
  63. if (!empty($_POST['aids'])) {
  64. $aids = $_POST['aids'];
  65. } else if (!empty($_POST['aid'])) {
  66. $aids = [$_POST['aid']];
  67. }
  68. $typeids = [];
  69. if (!empty($_POST['typeids'])) {
  70. $typeids = $_POST['typeids'];
  71. } else if (!empty($_POST['typeid'])) {
  72. $typeids = [$_POST['typeid']];
  73. }
  74. clearHtmlCache($aids, $typeids);
  75. // \think\Cache::clear();
  76. // delFile(HTML_ROOT.'index');
  77. break;
  78. }
  79. }
  80. }
  81. }
  82. /**
  83. * 商城主题欢迎页的数据统计写入
  84. * @return [type] [description]
  85. */
  86. private function eyou_statistics_data()
  87. {
  88. if ('POST' == self::$method) {
  89. if (in_array(self::$controllerName, ['Product','ShopProduct','Article']) && in_array(self::$actionName, ['add'])) { // 新增商品
  90. if (in_array(self::$controllerName, ['Article'])) {
  91. eyou_statistics_data(7);
  92. } else if (in_array(self::$controllerName, ['Product','ShopProduct'])) {
  93. eyou_statistics_data(6);
  94. }
  95. } else if (in_array(self::$controllerName, ['RecycleBin']) && in_array(self::$actionName, ['archives_recovery'])) { // 恢复商品
  96. //查一下删除的商品里有没有昨天和今天发布的 要在统计里减去
  97. $rec_aid = is_array($_POST) ? $_POST : [$_POST['del_id']];
  98. if (!empty($rec_aid)) {
  99. $ystd_count = $td_count = 0;
  100. $today = strtotime(date('Y-m-d'));
  101. $yesterday = $today - 86400;
  102. $where = [
  103. 'aid' => ['IN', $rec_aid],
  104. 'add_time' => ['egt', $yesterday],
  105. ];
  106. $list = Db::name('archives')->field('aid,add_time')->where($where)->select();
  107. foreach ($list as $key => $val) {
  108. if ($val['add_time'] < $today) { // 昨天统计
  109. $ystd_count++;
  110. } else if ($val['add_time'] >= $today) { // 今天统计
  111. $td_count++;
  112. }
  113. }
  114. if (in_array(self::$controllerName, ['Article'])) {
  115. $this->del_statistics(7,$td_count,$ystd_count,'inc');
  116. } else if (in_array(self::$controllerName, ['Product','ShopProduct'])) {
  117. $this->del_statistics(6,$td_count,$ystd_count,'inc');
  118. }
  119. }
  120. }
  121. }
  122. }
  123. /**
  124. * @param string $action inc 增加 dec 减少
  125. */
  126. private function del_statistics($type, $td_count = 0,$ystd_count = 0,$action = 'inc'){
  127. //写入统计 减去
  128. if ($td_count > 0){
  129. eyou_statistics_data($type,$td_count,'',$action);//今天的
  130. }
  131. if ($ystd_count > 0){
  132. $ystd = strtotime('-1 day');
  133. eyou_statistics_data($type,$ystd_count,$ystd,$action);//昨天的
  134. }
  135. }
  136. }