Activity.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. namespace app\common\model;
  3. use app\common\service\Elastic;
  4. use app\common\service\UserSynth;
  5. use think\Model;
  6. // 活动
  7. class Activity extends Model
  8. {
  9. // 主办方信息
  10. public function sponsor()
  11. {
  12. return $this->belongsTo('ActivitySponsor','sponsor_id')->where('status',1)->where('is_deleted',0);
  13. }
  14. // 价格设置
  15. public function priceList()
  16. {
  17. return $this->hasMany('ActivityPrice','act_id')->where('is_deleted',0);
  18. }
  19. // 报名模板
  20. public function templateInfo()
  21. {
  22. return $this->hasOne('ActivityTemplate','template_id')->where('status',1)->where('is_deleted',0);
  23. }
  24. public static function getAuth($user_id,$app_name,$app_logo)
  25. {
  26. $ret_val = [];
  27. if(!$user_id) return ['app_name'=>$app_name,'app_logo'=>$app_logo];
  28. $user_info = User::where('id',$user_id)->field('name,headimg')->find();
  29. $ret_val['app_name'] = $user_info ? $user_info->name : '';
  30. $ret_val['app_logo'] = $user_info ? $user_info->headimg : '';
  31. return $ret_val;
  32. }
  33. // es数据添加或更新
  34. public static function esAdd($id,$info = [])
  35. {
  36. if(empty($info)) $info = self::where('id',$id)->find()->toArray();
  37. $index = config('text.es_index');
  38. $properties = Elastic::getProperties($index);
  39. $body_field = array_keys($properties);
  40. $data = [];
  41. foreach ($body_field as $v) {
  42. if($v == 'module'){
  43. $data[$v] = 'activity';
  44. }else if( $v == 'level'){
  45. $data[$v] = 0;
  46. }else{
  47. $data[$v] = isset($info[$v]) ? $info[$v]:'';
  48. }
  49. }
  50. $data['create_at'] = isset($info['create_at']) ? strtotime($info['create_at']) : time();
  51. $data['release_time'] = isset($info['release_time']) ? strtotime($info['release_time']) : time();
  52. return Elastic::add($index,'activity_'.$info['id'],$data);
  53. }
  54. //活动取消
  55. public static function activityCancel($act_id)
  56. {
  57. $act_title = static::where('id',$act_id)->value('title');
  58. $order_list = ActivityApply::field('id')->where('act_id',$act_id)->where('pay_state',1)->where('refund_state','<>','5')->select()->toArray();
  59. foreach ($order_list as $order_info) {
  60. $info_url = 'https://'.$_SERVER['HTTP_HOST'].'/dist/#/activity_order_info?id='.$order_info['id'];
  61. $message = '很抱歉,由于不可抗因素,您报名的《'.$act_title."》活动主办方已取消,您支付的有效金额已原来返回,订单对应所有门票已失效,给您带来的不
  62. 便,敬请谅解!期待与您再次相遇!";//点击<a href=\"$info_url\">查看详情</a>";
  63. $res = \app\common\service\Activity::orderRefundApply($order_info['id'],2,1);
  64. // 退款
  65. if($res['code'] == 200 && $order_info['pay_type'] != 9) {
  66. ActivityApply::where('id',$order_info['id'])->update(['refund_state'=>2]);
  67. \app\common\service\Activity::orderRefundMoney($order_info['id'],$message);
  68. }else if($order_info['pay_type'] == 9) {
  69. UserMessage::sendUserMessage($order_info['user_id'],'activity',4,2,0,$order_info['id'],$message,$order_info['id']);
  70. }
  71. ActivityApplyItem::where('apply_id',$order_info['id'])->update(['status'=>3]);
  72. }
  73. }
  74. // 活动变更
  75. public static function activityChange($id,$title,$extend = [])
  76. {
  77. if(isset($extend['end_time']) && strtotime($extend['end_time']) < time()) return false;
  78. $all_list = ActivityApplyItem::where(['act_id'=>$id,'sh_status'=>1,'is_hx'=>0])->group('phone')->select();
  79. foreach ($all_list as $v) {
  80. try {
  81. // 短信通知
  82. if($v['phone_pre'] == '86' && $v['phone']) UserSynth::phoneMessageSend($v['phone'],2,['ActivityName'=>$title, 'time'=>$extend['start_time'], 'adress'=>$extend['address']]);
  83. // 邮件通知
  84. if( $v['email']) UserSynth::emailSend($v['email'],$title);
  85. }catch (\Exception $e) {
  86. }
  87. }
  88. }
  89. }