|
@@ -17,137 +17,62 @@ use Hashids;
|
|
|
|
|
|
class CrmGuideFansController extends BaseController
|
|
|
{
|
|
|
-
|
|
|
+ private $crm_one_day_exposure_limit;
|
|
|
+ private $crm_one_time_exposure_limit;
|
|
|
+ private $now_personal_account_info;
|
|
|
+ private $crm_now_exposure_uv;
|
|
|
/**
|
|
|
* 主动导粉
|
|
|
* @param Request $request
|
|
|
* @param $channel_id
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View}
|
|
|
*/
|
|
|
- public function activeGuidePersonalAccount(Request $request,$channel_id){
|
|
|
- $uid = $request->get('uid',0);
|
|
|
- //$user_cookie = Cookie::get(env('COOKIE_AUTH_WEB_WECHAT'));
|
|
|
- //$uid = $user_cookie ? decrypt($user_cookie) : null;
|
|
|
+ public function activeGuidePersonalAccountV2(Request $request){
|
|
|
+ $uid = $this->uid;
|
|
|
$cookie_crm_img = Cookie::get('crm_person_img');
|
|
|
$cookie_crm_name = Cookie::get('crm_person_name','');
|
|
|
- $request_img = $request->get('img');
|
|
|
$fee = $request->get('fee',200);
|
|
|
- if($request_img){
|
|
|
- $name = $request_img = $request->get('name');
|
|
|
- return view('jump.guidePersonalAccountOurs',['img'=>$cookie_crm_img,'name'=>$name,'fee'=>$fee]);
|
|
|
+ $group = $request->get('group','ACTIVE');
|
|
|
+ $page = 'jump.guidePersonalAccountOurs';
|
|
|
+ if(in_array($group,['ACTIVE_YEAR','ACTIVE_MONTH'])){
|
|
|
+ $page = 'crm.vipguidePersonalAccount';
|
|
|
}
|
|
|
- $get_info = UserBindHkWelfareService::isHasGet($uid);
|
|
|
-
|
|
|
- if($get_info) return back();
|
|
|
if($cookie_crm_img){
|
|
|
- return view('jump.guidePersonalAccountOurs',['img'=>$cookie_crm_img,'name'=>$cookie_crm_name,'fee'=>$fee]);
|
|
|
+ return view($page,['img'=>$cookie_crm_img,'name'=>$cookie_crm_name,'fee'=>$fee]);
|
|
|
}
|
|
|
|
|
|
- $distribution_channel_id = decodeDistributionChannelId($channel_id);
|
|
|
- //$distribution_channel_id = $channel_id;
|
|
|
- //if(in_array($distribution_channel_id,Redis::SISMEMBER('')));
|
|
|
- //$out = false;
|
|
|
- $group = 'ACTIVE';
|
|
|
- if(Redis::SISMEMBER('crm:out_channel_sites',$distribution_channel_id)){
|
|
|
- //$out = true;
|
|
|
- $group = 'OUT_ACTIVE';
|
|
|
- $env_config = redisEnvMulti('OUT_ACTIVE_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE',
|
|
|
- 'OUT_ACTIVE_GUIDE_PERSONAL_ACCOUNT_MAX_UV','OUT_ACTIVE_GUIDE_PERSONAL_ACCOUNT_ID',
|
|
|
- 'OUT_ACTIVE_GUIDE_PERSONAL_ACCOUNT_MAX_EVERY_UV');
|
|
|
- }else{
|
|
|
- $env_config = redisEnvMulti('ACTIVE_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE',
|
|
|
- 'ACTIVE_GUIDE_PERSONAL_ACCOUNT_MAX_UV','ACTIVE_GUIDE_PERSONAL_ACCOUNT_ID',
|
|
|
- 'ACTIVE_GUIDE_PERSONAL_ACCOUNT_MAX_EVERY_UV');
|
|
|
- }
|
|
|
- if(empty($env_config[0])){
|
|
|
+ list($img,$max,$now_id,$one_loop_max) = redisEnvMulti(strtoupper($group).'_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE',
|
|
|
+ strtoupper($group).'_GUIDE_PERSONAL_ACCOUNT_MAX_UV',strtoupper($group).'_GUIDE_PERSONAL_ACCOUNT_ID',
|
|
|
+ strtoupper($group).'_GUIDE_PERSONAL_ACCOUNT_MAX_EVERY_UV');
|
|
|
+ if(empty($img) || empty($now_id)){
|
|
|
return back();
|
|
|
}
|
|
|
- //$img = empty($env_config[0])?'https://cdn-novel.iycdm.com/h5/personal_account/chenchen.jpg':$env_config[0];
|
|
|
- $img =$env_config[0];
|
|
|
- $max = empty($env_config[1])?100:$env_config[1];
|
|
|
- $max = (int)$max;
|
|
|
- $one_loop_max = empty($env_config[3])?10:$env_config[3];
|
|
|
- $now_id = (int)$env_config[2];
|
|
|
-
|
|
|
- if($group == 'OUT_ACTIVE'){
|
|
|
- $uv_key = 'out_active_guide_personal_uv';
|
|
|
- }else{
|
|
|
- $uv_key = 'active_guide_personal_uv';
|
|
|
- }
|
|
|
- $uv = Redis::scard($uv_key);
|
|
|
- $personal_info = DB::table('personal_account_list')->where('id',$now_id)->select('count')->first();
|
|
|
+ $personal_info = DB::table('personal_account_list')->where('id',$now_id)->select('id','name','count','status','url','group')->first();
|
|
|
if(!$personal_info){
|
|
|
return back();
|
|
|
}
|
|
|
- $total_max = (int)($personal_info->count+$uv);
|
|
|
- //Log::info('$total_max is: '.);
|
|
|
- if($uv >= $one_loop_max || $total_max>=$max){
|
|
|
- if($total_max>=$max){
|
|
|
- DB::table('personal_account_list')->where('id',$now_id)->update([
|
|
|
- 'status'=>2,
|
|
|
- 'count'=>$total_max,
|
|
|
- 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- }else{
|
|
|
- DB::table('personal_account_list')->where('id',$now_id)->increment('count',$uv,[
|
|
|
- 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- }
|
|
|
-
|
|
|
- $account = DB::table('personal_account_list')
|
|
|
- ->where('is_enable',1)
|
|
|
- ->whereIn('status',[1,0])
|
|
|
- ->select('id','url')
|
|
|
- ->where('group',$group)
|
|
|
- ->where('count','<',$max)
|
|
|
- ->orderBy('count','asc')
|
|
|
- ->orderBy('id')
|
|
|
- ->first();
|
|
|
- Redis::del($uv_key);
|
|
|
- if($account){
|
|
|
- DB::table('personal_account_list')->where('id',$account->id)->update([
|
|
|
- 'status'=>1,
|
|
|
- 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- $img = $account->url;
|
|
|
- $now_id = $account->id;
|
|
|
- Redis::Hmset('env',$group.'_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE',$account->url,$group.'_GUIDE_PERSONAL_ACCOUNT_ID',$account->id);
|
|
|
- }else{
|
|
|
- Redis::Hmset('env',$group.'_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE','',$group.'_GUIDE_PERSONAL_ACCOUNT_ID','');
|
|
|
- return back();
|
|
|
- }
|
|
|
- }
|
|
|
- Redis::sadd($uv_key,$uid);
|
|
|
-
|
|
|
- if($uid){
|
|
|
- if($group == 'OUT_ACTIVE'){
|
|
|
- DB::table('ad_pdd')->insert([
|
|
|
- 'uid'=>$uid,
|
|
|
- 'img'=>'OUT_GUIDE_PERSONAL_ACCOUNT_'.$now_id,
|
|
|
- 'date'=>date('Y-m-d'),
|
|
|
- 'created_at'=>date('Y-m-d H:i:s'),
|
|
|
- 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- $user = UserService::getById($uid);
|
|
|
- Redis::hset('crm:out_guide_exposure_user',$user->openid,$uid);
|
|
|
- }else{
|
|
|
- DB::table('ad_pdd')->insert([
|
|
|
- 'uid'=>$uid,
|
|
|
- 'img'=>'GUIDE_PERSONAL_ACCOUNT_'.$now_id,
|
|
|
- 'date'=>date('Y-m-d'),
|
|
|
- 'created_at'=>date('Y-m-d H:i:s'),
|
|
|
- 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- }
|
|
|
+ $this->now_personal_account_info = $personal_info;
|
|
|
+ //单日曝光上线
|
|
|
+ $max = (int)(empty($max)?100:$max);
|
|
|
+ $this->crm_one_day_exposure_limit = $max;
|
|
|
+ //单次曝光上线
|
|
|
+ $one_loop_max = empty($one_loop_max)?10:$one_loop_max;
|
|
|
+ $this->crm_one_time_exposure_limit = $one_loop_max;
|
|
|
+ $uv_key = strtolower($group).'_guide_personal_uv';
|
|
|
+ $uv = Redis::scard($uv_key);
|
|
|
+ $this->crm_now_exposure_uv = $uv;
|
|
|
|
|
|
+ $this->crmGuideProcess();
|
|
|
+ if(!$this->now_personal_account_info){
|
|
|
+ return back();
|
|
|
}
|
|
|
- $name = '';
|
|
|
- $name_info = DB::table('personal_account_list')->where('id',$now_id)->select('name')->first();
|
|
|
- if($name_info){
|
|
|
- $name = $name_info->name;
|
|
|
+ if($group == 'OUT_ACTIVE'){
|
|
|
+ $user = UserService::getById($uid);
|
|
|
+ Redis::hset('crm:out_guide_exposure_user',$user->openid,$uid);
|
|
|
}
|
|
|
|
|
|
- $page = 'jump.guidePersonalAccountOurs';
|
|
|
+ $name = $this->now_personal_account_info->name;
|
|
|
+ $img = $this->now_personal_account_info->url;
|
|
|
$time = strtotime(date('Y-m-d',time()+86400))-time();
|
|
|
Cookie::queue('crm_person_img', $img,$time);
|
|
|
Cookie::queue('crm_person_name', $name,$time);
|
|
@@ -159,85 +84,101 @@ class CrmGuideFansController extends BaseController
|
|
|
* @param Request $request
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\Http\RedirectResponse|\Illuminate\View\View
|
|
|
*/
|
|
|
- public function forceGuidePersonalAccount(Request $request)
|
|
|
+ public function forceGuidePersonalAccountV2(Request $request)
|
|
|
{
|
|
|
$bid = $request->get('bid');
|
|
|
$cid = $request->get('cid');
|
|
|
$prev_cid = $request->get('prev_cid');
|
|
|
$book_name = $request->get('book_name');
|
|
|
$bid_no = Hashids::decode($bid)[0];
|
|
|
- if (Redis::SISMEMBER('crm:out_channel_sites', $this->distribution_channel_id)) {
|
|
|
+ $group = $request->get('group','FORCE');
|
|
|
+ /*if (Redis::SISMEMBER('crm:out_channel_sites', $this->distribution_channel_id)) {
|
|
|
$group = 'OUT_FORCE';
|
|
|
} else {
|
|
|
$group = 'FORCE';
|
|
|
- }
|
|
|
- $env_config = redisEnvMulti($group . '_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE', $group . '_GUIDE_PERSONAL_ACCOUNT_MAX_UV',
|
|
|
+ }*/
|
|
|
+ list($img,$max,$now_id,$one_loop_max) = redisEnvMulti($group . '_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE', $group . '_GUIDE_PERSONAL_ACCOUNT_MAX_UV',
|
|
|
$group . '_GUIDE_PERSONAL_ACCOUNT_ID', $group . '_GUIDE_PERSONAL_ACCOUNT_MAX_EVERY_UV');
|
|
|
- if (empty($env_config[0])) return back();
|
|
|
- $img = $env_config[0];
|
|
|
- $max = empty($env_config[1]) ? 100 : $env_config[1];
|
|
|
- $one_loop_max = empty($env_config[3]) ? 10 : $env_config[3];
|
|
|
- $now_id = (int)$env_config[2];
|
|
|
- $uv = Redis::scard(strtolower($group) . '_guide_personal_uv');
|
|
|
- $personal_info = DB::table('personal_account_list')->where('id', $now_id)->select('count')->first();
|
|
|
- $total_max = $personal_info->count + $uv;
|
|
|
- //Log::info('$total_max is: '.);
|
|
|
- if ($uv >= $one_loop_max || $total_max >= $max) {
|
|
|
- if ($total_max >= $max) {
|
|
|
- DB::table('personal_account_list')->where('id', $now_id)->update([
|
|
|
- 'status' => 2,
|
|
|
- 'count' => $total_max,
|
|
|
- 'updated_at' => date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- } else {
|
|
|
- DB::table('personal_account_list')->where('id', $now_id)->increment('count', $uv, [
|
|
|
- 'updated_at' => date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- }
|
|
|
-
|
|
|
- $account = DB::table('personal_account_list')
|
|
|
- ->where('is_enable', 1)
|
|
|
- ->whereIn('status', [1, 0])
|
|
|
- ->select('id', 'url')
|
|
|
- ->where('count', '<', $max)
|
|
|
- ->where('group', $group)
|
|
|
- ->orderBy('count', 'asc')
|
|
|
- ->orderBy('id')
|
|
|
- ->first();
|
|
|
- Redis::del(strtolower($group) . '_guide_personal_uv');
|
|
|
- if ($account) {
|
|
|
- DB::table('personal_account_list')->where('id', $account->id)->update([
|
|
|
- 'status' => 1,
|
|
|
- 'updated_at' => date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
- $img = $account->url;
|
|
|
- $now_id = $account->id;
|
|
|
- Redis::Hmset('env', $group . '_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE', $account->url, $group . '_GUIDE_PERSONAL_ACCOUNT_ID', $account->id);
|
|
|
- } else {
|
|
|
- Redis::Hmset('env', $group . '_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE', '', $group . '_GUIDE_PERSONAL_ACCOUNT_ID', '');
|
|
|
- }
|
|
|
+ $personal_info = DB::table('personal_account_list')->where('id',$now_id)->select('id','name','count','status','url','group')->first();
|
|
|
+ if(!$personal_info){
|
|
|
+ return back();
|
|
|
}
|
|
|
- Redis::sadd(strtolower($group) . '_guide_personal_uv', $this->uid);
|
|
|
+ $this->now_personal_account_info = $personal_info;
|
|
|
+ //单日曝光上线
|
|
|
+ $max = (int)(empty($max)?100:$max);
|
|
|
+ $this->crm_one_day_exposure_limit = $max;
|
|
|
+ //单次曝光上线
|
|
|
+ $one_loop_max = empty($one_loop_max)?10:$one_loop_max;
|
|
|
+ $this->crm_one_time_exposure_limit = $one_loop_max;
|
|
|
+ $uv_key = strtolower($group).'_guide_personal_uv';
|
|
|
+ $uv = Redis::scard($uv_key);
|
|
|
+ $this->crm_now_exposure_uv = $uv;
|
|
|
+ $this->crmGuideProcess();
|
|
|
+
|
|
|
if ($group == 'OUT_FORCE') {
|
|
|
$data = UserService::getById($this->uid);
|
|
|
Redis::hset('crm:out_guide_exposure_user', $data->openid, $this->uid);
|
|
|
}
|
|
|
- $personal_info = DB::table('personal_account_list')->where('id', $now_id)->select('name')->first();
|
|
|
- DB::table('ad_pdd')->insert([
|
|
|
- 'uid' => $this->uid,
|
|
|
- 'img' => $group . '_GUIDE_PERSONAL_ACCOUNT_' . $now_id,
|
|
|
- 'date' => date('Y-m-d'),
|
|
|
- 'created_at' => date('Y-m-d H:i:s'),
|
|
|
- 'updated_at' => date('Y-m-d H:i:s')
|
|
|
- ]);
|
|
|
|
|
|
+ $img = $this->now_personal_account_info->url;
|
|
|
ForceGuidePersonAccountService::create($this->uid, $bid_no, $cid);
|
|
|
|
|
|
$link['next'] = sprintf('/reader?bid=%s&cid=%s', $bid, $cid);
|
|
|
$link['prev'] = sprintf('/reader?bid=%s&cid=%s', $bid, $prev_cid);
|
|
|
$link['catalog'] = sprintf('/catalog?id=%s', $bid);
|
|
|
|
|
|
- return view('jump.forceGuidePersonalAccountV2', ['img' => $img, 'link' => $link, 'title' => $book_name, 'name' => $personal_info->name]);
|
|
|
+ return view('jump.forceGuidePersonalAccountV2', ['img' => $img, 'link' => $link, 'title' => $book_name, 'name' => $this->now_personal_account_info->name]);
|
|
|
+ }
|
|
|
+
|
|
|
+ private function crmGuideProcess(){
|
|
|
+ $group = strtoupper($this->now_personal_account_info->group);
|
|
|
+ $total_max = $this->crm_now_exposure_uv+$this->now_personal_account_info->count;
|
|
|
+ if($this->crm_now_exposure_uv >= $this->crm_one_time_exposure_limit || $total_max >= $this->crm_one_day_exposure_limit){
|
|
|
+ if($total_max>= $this->crm_one_day_exposure_limit){
|
|
|
+ DB::table('personal_account_list')->where('id',$this->now_personal_account_info->id)->update([
|
|
|
+ 'status'=>2,
|
|
|
+ 'count'=>$total_max,
|
|
|
+ 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
+ ]);
|
|
|
+ }else{
|
|
|
+ DB::table('personal_account_list')->where('id',$this->now_personal_account_info->id)->increment('count',$this->crm_now_exposure_uv,[
|
|
|
+ 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+
|
|
|
+ $account = DB::table('personal_account_list')
|
|
|
+ ->where('is_enable',1)
|
|
|
+ ->whereIn('status',[1,0])
|
|
|
+ ->select('id','name','count','status','url','group')
|
|
|
+ ->where('group',$this->now_personal_account_info->group)
|
|
|
+ ->where('count','<',$this->crm_one_day_exposure_limit)
|
|
|
+ ->orderBy('count','asc')
|
|
|
+ ->orderBy('id')
|
|
|
+ ->first();
|
|
|
+
|
|
|
+ Redis::del(strtolower($group) . '_guide_personal_uv');
|
|
|
+ if($account){
|
|
|
+ DB::table('personal_account_list')->where('id',$account->id)->update([
|
|
|
+ 'status'=>1,
|
|
|
+ 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
+ ]);
|
|
|
+ $this->now_personal_account_info = $account;
|
|
|
+ Redis::Hmset('env',$group.'_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE',$account->url,$group.'_GUIDE_PERSONAL_ACCOUNT_ID',$account->id);
|
|
|
+ }else{
|
|
|
+ Redis::Hmset('env',$group.'_GUIDE_PERSONAL_ACCOUNT_OURS_QRCODE','',$group.'_GUIDE_PERSONAL_ACCOUNT_ID','');
|
|
|
+ $this->now_personal_account_info= null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if($this->now_personal_account_info){
|
|
|
+ Redis::sadd(strtolower($group) . '_guide_personal_uv',$this->uid);
|
|
|
+ DB::table('ad_pdd')->insert([
|
|
|
+ 'uid'=>$this->uid,
|
|
|
+ 'img'=>strtoupper($group).'_PERSONAL_ACCOUNT_'.$this->now_personal_account_info->id,
|
|
|
+ 'date'=>date('Y-m-d'),
|
|
|
+ 'created_at'=>date('Y-m-d H:i:s'),
|
|
|
+ 'updated_at'=>date('Y-m-d H:i:s')
|
|
|
+ ]);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|