AdminUserActionController.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\user\controller;
  12. use app\user\logic\UserActionLogic;
  13. use cmf\controller\AdminBaseController;
  14. use think\Db;
  15. /**
  16. * Class AdminUserActionController
  17. * @package app\user\controller
  18. */
  19. class AdminUserActionController extends AdminBaseController
  20. {
  21. /**
  22. * 用户操作管理
  23. * @adminMenu(
  24. * 'name' => '用户操作管理',
  25. * 'parent' => 'admin/Setting/default',
  26. * 'display'=> true,
  27. * 'hasView'=> true,
  28. * 'order' => 10000,
  29. * 'icon' => '',
  30. * 'remark' => '用户操作管理',
  31. * 'param' => ''
  32. * )
  33. */
  34. public function index()
  35. {
  36. $where = [];
  37. $request = input('request.');
  38. if (!empty($request['uid'])) {
  39. $where['id'] = intval($request['uid']);
  40. }
  41. $keywordComplex = [];
  42. if (!empty($request['keyword'])) {
  43. $keyword = $request['keyword'];
  44. $keywordComplex['user_login'] = ['like', "%$keyword%"];
  45. $keywordComplex['user_nicename'] = ['like', "%$keyword%"];
  46. $keywordComplex['user_email'] = ['like', "%$keyword%"];
  47. }
  48. $actions = Db::name('user_action')->paginate(20);
  49. // 获取分页显示
  50. $page = $actions->render();
  51. $this->assign('actions', $actions);
  52. $this->assign('page', $page);
  53. // 渲染模板输出
  54. return $this->fetch();
  55. }
  56. /**
  57. * 编辑用户操作
  58. * @adminMenu(
  59. * 'name' => '编辑用户操作',
  60. * 'parent' => 'index',
  61. * 'display'=> false,
  62. * 'hasView'=> true,
  63. * 'order' => 10000,
  64. * 'icon' => '',
  65. * 'remark' => '编辑用户操作',
  66. * 'param' => ''
  67. * )
  68. */
  69. public function edit()
  70. {
  71. $id = $this->request->param('id', 0, 'intval');
  72. $action = Db::name('user_action')->where('id', $id)->find();
  73. $this->assign($action);
  74. return $this->fetch();
  75. }
  76. /**
  77. * 编辑用户操作提交
  78. * @adminMenu(
  79. * 'name' => '编辑用户操作提交',
  80. * 'parent' => 'index',
  81. * 'display'=> false,
  82. * 'hasView'=> false,
  83. * 'order' => 10000,
  84. * 'icon' => '',
  85. * 'remark' => '编辑用户操作提交',
  86. * 'param' => ''
  87. * )
  88. */
  89. public function editPost()
  90. {
  91. $id = $this->request->param('id', 0, 'intval');
  92. $data = $this->request->param();
  93. Db::name('user_action')->where('id', $id)
  94. ->strict(false)
  95. ->field('score,coin,reward_number,cycle_type,cycle_time')
  96. ->update($data);
  97. $this->success('保存成功!');
  98. }
  99. /**
  100. * 同步用户操作
  101. * @adminMenu(
  102. * 'name' => '同步用户操作',
  103. * 'parent' => 'index',
  104. * 'display'=> false,
  105. * 'hasView'=> true,
  106. * 'order' => 10000,
  107. * 'icon' => '',
  108. * 'remark' => '同步用户操作',
  109. * 'param' => ''
  110. * )
  111. */
  112. public function sync()
  113. {
  114. $apps = cmf_scan_dir(APP_PATH . '*', GLOB_ONLYDIR);
  115. array_push($apps, 'admin', 'user');
  116. foreach ($apps as $app) {
  117. UserActionLogic::importUserActions($app);
  118. }
  119. return $this->fetch();
  120. }
  121. }