123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- namespace App\Http\Controllers\Wap;
- use Illuminate\Routing\Controller;
- use App\Modules\User\Services\ReadRecordService;
- use Illuminate\Http\Request;
- use Cookie;
- use App\Modules\User\Services\UserService;
- class BaseController extends Controller
- {
- /**
- * 请求接口的地址前缀
- * @var mixed
- */
- protected $_url_prefix;
- /**
- * 用户id
- * @var int
- */
- protected $uid;
- /**
- * 公众号接口签名密钥
- * @var string
- */
- protected $secret_key = 'zhuishuyun#_2017';
- /**
- * 渠道id
- * @var
- */
- protected $distribution_channel_id;
- /**
- * 加密的渠道
- * @var string
- */
- protected $en_distribution_channel_id;
- /**
- * 派单id
- * @var int
- */
- protected $send_order_id;
- /**
- * from来源
- * @var string
- */
- protected $from_type;
- function __construct(Request $request)
- {
- $domain = _domain();
- $this->distribution_channel_id = str_replace('site','',explode('.',$domain)[0]);
- if(!is_numeric($this->distribution_channel_id)){
- $this->en_distribution_channel_id = $this->distribution_channel_id;
- $this->distribution_channel_id = decodeDistributionChannelId($this->distribution_channel_id);
- }else{
- $this->en_distribution_channel_id = encodeDistributionChannelId($this->distribution_channel_id);
- }
- $this->_url_prefix = env('PUBLIC_BASE_API');
- $user_cookie = Cookie::get(env('COOKIE_AUTH_WEB_WECHAT'));
- $this->uid = $user_cookie ? decrypt($user_cookie) : null;
- if(!$this->uid && $request->has('auth_uid')){
- $auth_uid = $request->get('auth_uid');
- $atime = $request->get('atime');
- $sign = $request->get('sign');
- if(get_sign(compact('auth_uid','atime')) == $sign && (time() - $atime) < 6){
- $this->uid = $auth_uid;
- }
- }
- //$send_order_id = Cookie::get('send_order_id');
- if($this->uid){
- $send_order_id = ReadRecordService::getSendOrderId($this->uid);
- }else{
- $send_order_id = 0;
- }
- if($this->uid == 114933690) {
- $this->uid = 108535910;
- }
- $this->innerSendOrderIdFromFromtype($this->uid);
- $this->send_order_id = $send_order_id;
- $this->from_type = Cookie::get('from') ? Cookie::get('from') : 'main';
- //$this->uid = 13;
- }
- private function innerSendOrderIdFromFromtype($uid){
- //$inner_send_order_id = ReadRecordService::getInnerSendOrderId($uid);
- $inner_send_order_id = false;
- if(!$inner_send_order_id){
- $from = Cookie::get('from');
- if($from && (starts_with($from,'custom') || starts_with($from,'template')) && count(explode('_',$from)) == 2){
- ReadRecordService::setInnerSendOrderId($uid,$from);
- }
- }
- }
- protected function userInfo($uid){
- $user = UserService::getById($uid);
- return $user;
- }
- protected function checkUid(){
- if(!$this->uid) return false;
- return true;
- }
- public function __get($name)
- {
- if($name == '_user_info'){
- return $this->userInfo($this->uid);
- }
- return null;
- }
- protected function joinUrl($url)
- {
- if (stripos($url, '/') === 0) {
- $url = substr($url, 1);
- }
- return $this->_url_prefix . $url;
- }
- /**
- * 公众号签名@华灯初上
- * @param $params
- * @return string
- */
- protected function getSign($params)
- {
- $url = $this->arr_to_url($params, false);
- $url = $url . '&key=' . $this->secret_key;
- $sign = md5($url);
- return $sign;
- }
- /**
- * 公众号签名@华灯初上
- * @param $array
- * @param bool $has_sign
- * @return string
- */
- protected function arr_to_url($array, $has_sign = false)
- {
- ksort($array);
- reset($array);
- $arg = "";
- while (list ($name, $val) = each($array)) {
- if ($name == 'sign' && !$has_sign) continue;
- if (strpos($name, "_") === 0)
- continue;
- if (is_array($val))
- $val = join(',', $val);
- if ($val === "")
- continue;
- $arg .= $name . "=" . $val . "&";
- }
- $arg = substr($arg, 0, count($arg) - 2);
- return $arg;
- }
- }
|