截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SignDailyLogic.php 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <?php
  2. namespace app\admin\logic\sign_daily;
  3. use app\common\basics\Logic;
  4. use app\common\model\sign_daily\SignDaily;
  5. use app\common\model\sign_daily\UserSign;
  6. use app\common\server\ConfigServer;
  7. use app\common\server\UrlServer;
  8. /**
  9. * 签到逻辑
  10. * Class SignDailyLogic
  11. * @package app\admin\logic\sign_daily
  12. */
  13. class SignDailyLogic extends Logic
  14. {
  15. /**
  16. * @notes 连续签到列表
  17. * @return array
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\DbException
  20. * @throws \think\db\exception\ModelNotFoundException
  21. * @author 段誉
  22. * @date 2022/2/17 14:30
  23. */
  24. public static function lists()
  25. {
  26. $where[] = ['type', '=', 2];
  27. $where[] = ['del', '=', 0];
  28. $count = SignDaily::where($where)->count();
  29. $lists = SignDaily::where($where)->select();
  30. foreach ($lists as $key => $sign) {
  31. $tips = '';
  32. if (1 == $sign['integral_status'] && $sign['integral'] > 0) {
  33. $tips .= '赠送' . $sign['integral'] . '积分;';
  34. }
  35. if (1 == $sign['growth_status'] && $sign['growth'] > 0) {
  36. $tips .= '赠送' . $sign['growth'] . '成长值;';
  37. }
  38. $lists[$key]['award_tips'] = $tips;
  39. }
  40. return ['count' => $count, 'lists' => $lists];
  41. }
  42. /**
  43. * @notes 签到记录
  44. * @param $get
  45. * @return array
  46. * @author 段誉
  47. * @date 2022/2/17 14:31
  48. */
  49. public static function record($get)
  50. {
  51. $where = [];
  52. $where[] = ['us.del', '=', 0];
  53. $where[] = ['u.del', '=', 0];
  54. if (isset($get['keyword']) && $get['keyword']) {
  55. $where[] = [$get['type'], 'like', '%' . $get['keyword'] . '%'];
  56. }
  57. $field = 'us.user_id,sn,nickname,avatar,mobile,sex,u.create_time ,days,integral,growth,
  58. continuous_integral, continuous_growth,sign_time,mobile,us.sign_time';
  59. $count = UserSign::alias('us')
  60. ->join('user u', 'u.id = us.user_id')
  61. ->where($where)
  62. ->count();
  63. $lists = UserSign::alias('us')
  64. ->join('user u', 'u.id = us.user_id')
  65. ->where($where)
  66. ->field($field)
  67. ->order('us.id desc')
  68. ->page($get['page'], $get['limit'])
  69. ->select();
  70. foreach ($lists as &$item) {
  71. $item['sign_time'] = date('Y-m-d H:i:s', $item['sign_time']);
  72. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  73. if ($item['sex'] == 1) {
  74. $item['sex'] = '男';
  75. } elseif ($item['sex'] == 2) {
  76. $item['sex'] = '女';
  77. } else {
  78. $item['sex'] = '未知';
  79. }
  80. }
  81. return ['count' => $count, 'lists' => $lists];
  82. }
  83. /**
  84. * @notes 获取每日签到规则
  85. * @return array
  86. * @author 段誉
  87. * @date 2022/2/17 14:31
  88. */
  89. public static function getSignRule()
  90. {
  91. $data = SignDaily::where(['type' => 1])->findOrEmpty();
  92. $config = [
  93. 'instructions' => ConfigServer::get('sign_rule', 'instructions'),
  94. 'dailySign' => $data
  95. ];
  96. return $config;
  97. }
  98. /**
  99. * @notes 设置每日签到规则
  100. * @param $post
  101. * @return bool
  102. * @author 段誉
  103. * @date 2022/2/17 14:31
  104. */
  105. public static function setSignRule($post)
  106. {
  107. try {
  108. $rule = SignDaily::where(['del' => 0, 'type' => 1])->findOrEmpty();
  109. $data = [
  110. 'integral' => empty($post['integral']) ? 0 : $post['integral'],
  111. 'growth' => empty($post['growth']) ? 0 : $post['growth'],
  112. 'integral_status' => $post['integral_status'],
  113. 'growth_status' => $post['growth_status'],
  114. ];
  115. if ($rule->isEmpty()) {
  116. $data['type'] = 1;
  117. $data['days'] = 0;
  118. SignDaily::create($data);
  119. } else {
  120. SignDaily::update($data, ['id' => $rule['id']]);
  121. }
  122. ConfigServer::set('sign_rule', 'instructions', $post['instructions']);
  123. return true;
  124. } catch (\Exception $e) {
  125. self::$error = $e->getMessage();
  126. return false;
  127. }
  128. }
  129. /**
  130. * @notes 添加连续签到奖励
  131. * @param $post
  132. * @return SignDaily|\think\Model
  133. * @author 段誉
  134. * @date 2022/2/17 14:31
  135. */
  136. public static function add($post)
  137. {
  138. return SignDaily::create(
  139. [
  140. 'type' => '2',
  141. 'days' => $post['days'],
  142. 'integral' => $post['integral'],
  143. 'integral_status' => $post['integral_status'],
  144. 'growth' => $post['growth'],
  145. 'growth_status' => $post['growth_status'],
  146. ]
  147. );
  148. }
  149. /**
  150. * @notes 编辑连续签到奖励
  151. * @param $post
  152. * @return SignDaily
  153. * @author 段誉
  154. * @date 2022/2/17 14:31
  155. */
  156. public static function edit($post)
  157. {
  158. return SignDaily::update([
  159. 'id' => $post['id'],
  160. 'days' => $post['days'],
  161. 'integral' => $post['integral'],
  162. 'integral_status' => $post['integral_status'],
  163. 'growth' => $post['growth'],
  164. 'growth_status' => $post['growth_status'],
  165. ]);
  166. }
  167. /**
  168. * @notes 删除连续签到奖励
  169. * @param $id
  170. * @return SignDaily
  171. * @author 段誉
  172. * @date 2022/2/17 14:32
  173. */
  174. public static function del($id)
  175. {
  176. return SignDaily::update(['del' => 1, 'id' => $id]);
  177. }
  178. /**
  179. * @notes 获取连续签到奖励详情
  180. * @param $id
  181. * @return array|\think\Model
  182. * @author 段誉
  183. * @date 2022/2/17 14:32
  184. */
  185. public static function getSignDaily($id)
  186. {
  187. return SignDaily::findOrEmpty($id);
  188. }
  189. }