Greet.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /**
  6. * 打招呼
  7. */
  8. class Greet extends Api
  9. {
  10. protected $noNeedLogin = [];
  11. protected $noNeedRight = ['*'];
  12. //打招呼/搭讪
  13. public function greet() {
  14. $other_uids = input('user_ids', '', 'trim');
  15. if(!$other_uids) {
  16. $this->error(__('Invalid parameters'));
  17. }
  18. $other_uids = explode(',',$other_uids);
  19. if(empty($other_uids)){
  20. $this->error(__('Invalid parameters'));
  21. }
  22. //打招呼内容
  23. $greet = null;
  24. if($this->auth->gender == 0){
  25. $where['user_id'] = $this->auth->id;
  26. $greet = Db::name('user_greet_content')->where($where)->orderRaw('rand()')->find();
  27. if(empty($greet)){
  28. $this->error('先设置打招呼内容吧');
  29. }
  30. if(!empty($greet) && $greet['type'] != 0){
  31. $greet['content'] = one_domain_image($greet['content']);
  32. }
  33. }else{
  34. $greet = Db::name('user_greet_boy')->orderRaw('rand()')->find();
  35. }
  36. //
  37. $map = [];
  38. foreach($other_uids as $key => $other_uid){
  39. $map[] = [
  40. 'user_id' => $this->auth->id,
  41. 'user_to_id' => $other_uid,
  42. 'createtime' => time(),
  43. ];
  44. }
  45. Db::startTrans();
  46. $id = Db::name('user_greet')->insertAll($map);
  47. if (!$id) {
  48. Db::rollback();
  49. $this->error('您的网络开小差了~');
  50. }
  51. //tag任务赠送金币
  52. //搭讪奖励
  53. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,24);
  54. if($task_rs === false){
  55. Db::rollback();
  56. $this->error('完成任务赠送奖励失败');
  57. }
  58. Db::commit();
  59. $rs = [
  60. 'gender' => $this->auth->gender,
  61. 'greet' => $greet,
  62. ];
  63. $this->success('操作成功', $rs);
  64. }
  65. //查询每天弹出搭讪框次数
  66. public function freegreetnum() {
  67. $user = $this->auth->getUser();
  68. if (isset($user['is_kefu']) && $user['is_kefu'] == 1){
  69. $data['free_greet_num'] = 0;
  70. $data['vip_free_greet_num'] = 0;
  71. $data['boy_free_greet_num'] = 0;
  72. $data['boy_vip_free_greet_num'] = 0;
  73. }else{
  74. //非会员每天弹出搭讪框次数
  75. $data['free_greet_num'] = config('site.free_greet_num') > 0 ? config('site.free_greet_num') : 5;
  76. //vip每天弹出搭讪框次数
  77. $data['vip_free_greet_num'] = config('site.vip_free_greet_num') > 0 ? config('site.vip_free_greet_num') : 5;
  78. // 男性 非会员每天弹出搭讪框次数
  79. $data['boy_free_greet_num'] = config('site.boy_free_greet_num') > 0 ? config('site.boy_free_greet_num') : 1;
  80. // 男性 vip每天弹出搭讪框次数
  81. $data['boy_vip_free_greet_num'] = config('site.boy_vip_free_greet_num') > 0 ? config('site.boy_vip_free_greet_num') : 1;
  82. }
  83. $this->success('success', $data);
  84. }
  85. /**
  86. * 男性打招呼内容
  87. * @return void
  88. * @throws \think\db\exception\DataNotFoundException
  89. * @throws \think\db\exception\ModelNotFoundException
  90. * @throws \think\exception\DbException
  91. */
  92. public function greetBoy()
  93. {
  94. $data = Db::name('user_greet_boy')->select();
  95. $this->success('success', $data);
  96. }
  97. }