|
@@ -154,14 +154,32 @@ class AdvertiseController extends BaseController
|
|
|
|
|
|
|
|
|
public function pddAd(Request $request){
|
|
|
+ $link_key = $request->get('link','2019041501');
|
|
|
if($this->uid){
|
|
|
try{
|
|
|
- Redis::sadd('pddad:uv:'.date('Y-m-d'),$this->uid);
|
|
|
+ $key = sprintf('pddad:uv:%s:%s',$link_key,date('Y-m-d'));
|
|
|
+ Redis::sadd($key,$this->uid);
|
|
|
}catch (\Exception $e){}
|
|
|
}
|
|
|
$links = [
|
|
|
'2019041501'=>'https://mobile.yangkeduo.com/duo_brand_sales.html?pid=8571127_60403841&cpsSign=CM8571127_60403841_29e8aa97a487aa94a63fd31f45da38cf&duoduo_type=2',
|
|
|
- '2019041502'=>'https://mobile.yangkeduo.com/duo_nine_nine.html?pid=8571127_60403841&cpsSign=CM8571127_60403841_d766485b4f32d85c227b4cefd604a02d&duoduo_type=2'
|
|
|
+ '2019041502'=>'https://mobile.yangkeduo.com/duo_nine_nine.html?pid=8571127_60403841&cpsSign=CM8571127_60403841_d766485b4f32d85c227b4cefd604a02d&duoduo_type=2',
|
|
|
+ '2019041601'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=7539798822&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_03b2f7fa0ef1e609c2249cc365b42f3e&duoduo_type=2',
|
|
|
+ '2019041602'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=190857743&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_f1ef254d6b95420817e9d398b9b0ab63&duoduo_type=2',
|
|
|
+ '2019041603'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=6748389609&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_3dfafd4426b6ac11cff1bb7e7f274871&duoduo_type=2',
|
|
|
+ '2019041604'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=2200177&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_bb29ca22aaa8ed3d9927f312ff9f4eb0&duoduo_type=2',
|
|
|
+ '2019041605'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=6878198875&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_8e4542ff01347e7d0b4e63e5d0cada0d&duoduo_type=2',
|
|
|
+ '2019041606'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=25858329&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_430a54cf797bfd73fa5baf31a240d600&duoduo_type=2',
|
|
|
+ '2019041607'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=3785330482&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_904632cdd98a39a26f618dfbe0c4e482&duoduo_type=2',
|
|
|
+ '2019041608'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=4220538441&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_9ff313f511eaa7df46b9358524421825&duoduo_type=2',
|
|
|
+ '2019041609'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=4330142633&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_3cd524bbc1d78b76e56c5c0e13020ee9&duoduo_type=2',
|
|
|
+ '2019041610'=>'https://mobile.yangkeduo.com/duo_coupon_landing.html?goods_id=5826309739&pid=8585481_60984090&cpsSign=190416_CC8585481_60984090_cd18616d2a6b5ae15d5cd24b24717785&duoduo_type=2',
|
|
|
+ '2019041611'=>'https://mobile.yangkeduo.com/duo_theme_activity.html?themeId=5595&pid=8585481_60984090&cpsSign=190416_CT8585481_60984090_c5aef71fd6a8b510ccd8a400dc6500a1&duoduo_type=2',
|
|
|
+ '2019041612'=>'https://mobile.yangkeduo.com/duo_theme_activity.html?themeId=5328&pid=8585481_60984090&cpsSign=190416_CT8585481_60984090_7bb6baecf55ccece8887e36499400351&duoduo_type=2',
|
|
|
+ '2019041613'=>'https://mobile.yangkeduo.com/duo_theme_activity.html?themeId=5198&pid=8585481_60984090&cpsSign=190416_CT8585481_60984090_d26f463995bf7df3d5db6d71be5e5924&duoduo_type=2',
|
|
|
+ '2019041614'=>'https://mobile.yangkeduo.com/duo_theme_activity.html?themeId=4274&pid=8585481_60984090&cpsSign=190416_CT8585481_60984090_cd454f3cc9f5eb6e9a26e00bf01a8d03&duoduo_type=2',
|
|
|
+ '2019041615'=>'https://mobile.yangkeduo.com/duo_theme_activity.html?themeId=5505&pid=8585481_60984090&cpsSign=190416_CT8585481_60984090_9cc457adb40cf436e8477f06535bb706&duoduo_type=2'
|
|
|
+
|
|
|
];
|
|
|
$link_key = $request->get('link','2019041501');
|
|
|
return redirect()->to($links[$link_key]);
|