123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- <?php
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- use app\common\model\User;
- use think\Db;
- use Dm\Request\V20151123 as Dm;
- /**
- * 秒转换为天
- */
- function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
- {
- $day = floor($remain_time / (3600*24));
- $day = $day > 0 ? $day.'天' : '';
- $hour = floor(($remain_time % (3600*24)) / 3600);
- $hour = $hour > 0 ? $hour.'小时' : '';
- if($is_hour && $is_minutes) {
- $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
- $minutes = $minutes > 0 ? $minutes.'分钟' : '';
- return $day.$hour.$minutes;
- }
- if($hour) {
- return $day.$hour;
- }
- return $day;
- }
- //获取全图片地址 $image_data
- function image_path($image_data){
- if(empty($image_data)){
- return $image_data;
- }
- if (strpos($image_data,'|')!==false){
- $image_res = explode('|',$image_data);
- }elseif(strpos($image_data,',')!==false){
- $image_res = explode(',',$image_data);
- }else{
- $image_res = array($image_data);
- }
- return $image_res;
- }
- /**
- * @param $id_card
- * @return false|string
- */
- function get_age($id_card){
- # 1.从身份证中获取出生日期
- $birth_Date = strtotime(substr($id_card, 6, 8));//截取日期并转为时间戳
- # 2.格式化[出生日期]
- $Year = date('Y', $birth_Date);//yyyy
- $Month = date('m', $birth_Date);//mm
- $Day = date('d', $birth_Date);//dd
- # 3.格式化[当前日期]
- $current_Y = date('Y');//yyyy
- $current_M = date('m');//mm
- $current_D = date('d');//dd
- # 4.计算年龄()
- $age = $current_Y - $Year;//今年减去生日年
- if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
- $age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
- }
- # 返回
- return $age;
- }
- function create_invite_code($user_id){
- // 生成12位邀请码
- $code_str = '';
- $base_code = explode(',',"A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,U,V,W,X,Y,Z");
- $code_key = array_rand($base_code, 10 - strlen($user_id));
- array_map(function ($val)use (&$code_str,$base_code){
- $code_str .=$base_code[$val] ;
- },$code_key);
- return $code_str.$user_id;
- }
- // 获取模板区域
- function get_city_area()
- {
- $field=['id','pid','name'];
- $list=Db::name('china_area')->where('pid',0)->field($field)->select();
- foreach ($list as $k=>&$v){
- $v['children']= Db::name('china_area')->where('pid',$v['id'])->field($field)->select();
- }
- return $list;
- }
- function http_curl($url,$type='get',$res='json',$arr=''){
- $headers = array();
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, false);
- $output = curl_exec($curl);
- curl_close($curl);
- if($res=='json'){
- if($output === false){
- //请求失败,返回错误信息
- return curl_error($curl);
- }else{
- //请求成功,返回信息
- return json_decode($output,true);
- }
- }
- }
- function curl_get($url)
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- $output = curl_exec($ch);
- curl_close($ch);
- if($output === false){
- return curl_error($ch);
- }else{
- return json_decode($output,true);
- }
- }
- // 获取物流信息
- function get_delivery($send_no = 'YT7245284655017',$express_code=''){
- error_reporting(E_ALL || ~E_NOTICE);
- $AppCode ='5f96216347b547579e2417685ee8e647';//开通服务后 买家中心-查看AppCode
- $host = "https://wuliu.market.alicloudapi.com";//api访问链接
- $path = "/kdi";//API访问后缀
- $method = "GET";
- $body ='';
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $AppCode);
- $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
- $url = $host . $path . "?" . $querys;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, true);
- if (1 == strpos("$" . $host, "https://")) {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- $out_put = curl_exec($curl);
- $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
- list($header, $body) = explode("\r\n\r\n", $out_put, 2);
- if ($httpCode == 200) {
- return json_decode($body,true)['result'];
- } else {
- return [];
- }
- }
- // 实名认证
- function user_certification($id_card,$name){
- $host = "http://checkone.market.alicloudapi.com";
- $path = "/chinadatapay/1882";
- $method = "POST";
- $appcode = "30be8bdcc65842919980a8276ffc4995";
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $appcode);
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
- $bodys = "idcard=".$id_card."&name=".$name;
- $url = $host . $path;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, false);
- if (1 == strpos("$".$host, "https://"))
- {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
- $res = curl_exec($curl);
- if($res){
- $res = json_decode($res,true);
- if($res['data']['result'] == 1){
- return 1;
- }else{
- return 0;
- }
- }else{
- return 0;
- }
- }
- /**
- * 把返回的数据集转换成Tree
- * @param array $list 要转换的数据集
- * @param string $pk 自增字段(栏目id)
- * @param string $pid parent标记字段
- * @return array
- */
- function make_tree($list,$pk='id',$pid='pid',$child='children',$root=0){
- if(is_object($list)) $list = $list->toArray();
- $tree=array();
- $packData=array();
- foreach ($list as $data) {
- $packData[$data[$pk]] = $data;
- }
- foreach ($packData as $key =>$val){
- if($val[$pid]==$root){//代表跟节点
- $tree[]=& $packData[$key];
- }else{
- $packData[$val[$pid]][$child][]=& $packData[$key]; //找到其父类
- }
- }
- return $tree;
- }
- //判断字段存在并不为空
- function isset_full($arr, $key)
- {
- if (isset($arr[$key]) && !empty($arr[$key])) {
- return true;
- } else {
- return false;
- }
- }
- //判断字段存在并不为空 并且等于验证值
- function isset_full_check($arr, $key,$check_val)
- {
- if (isset($arr[$key]) && !empty($arr[$key]) && $arr[$key] == $check_val) {
- return true;
- } else {
- return false;
- }
- }
- function all_pay_type()
- {
- return [ '--','微信[H5]','支付宝[H5]','微信[APP]','支付宝[APP]','微信[公众号]','微信[PC]','支付宝[PC]' ];
- }
- /**
- * @param $start 验证开始时间
- * @param $end 验证结束时间
- * @param $check_st 已有活动开始时间
- * @param $check_end 已有活动结束时间
- * @return bool true 可以创建活动
- */
- function check_act_time($start,$end,$check_st,$check_end)
- {
- $check_val = false;
- if($start > $check_end || $end < $check_st) $check_val = true;
- return $check_val;
- }
- /**
- * 生成32位随机数
- */
- function get32Str($length='32'){
- $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
- $len = strlen($str)-1;
- $randstr = '';
- for ($i=0;$i<$length;$i++) {
- $num=mt_rand(0,$len);
- $randstr .= $str[$num];
- }
- return $randstr;
- }
- function hx_register($username){
- $data = array(
- 'grant_type' => 'client_credentials',
- 'client_id' => 'YXA6NS5H0GDGEe20Q9VWb7Fpew',
- 'client_secret' => 'YXA6zkYKRQMJbxi_6cN1ERHuFn9QUpI'
- );
- $token_res = requestPost('https://a1-vip5.easemob.com/1414221110068467/kefuchannelapp104968/token',json_encode($data));
- $token_res = json_decode($token_res,true);
- $param = array(
- 'username' => 'act'.$username.rand(0000,9999),
- 'password' => 'act'.$username.rand(00000,99999)
- );
- $hx_account = http_post_json('https://a1-vip5.easemob.com/1414221110068467/kefuchannelapp104968/users',json_encode($param),$token_res['access_token']);
- if(!isset($hx_account['entities'][0]['uuid'])){
- return false;
- }
- Db::name('store_member')->where('id',$username)->update(array('hx_username'=>$param['username'],'hx_password'=>$param['password'],'hx_uuid'=>$hx_account['entities'][0]['uuid']));
- return true;
- }
- function requestPost($url , $post_data = array(),$headers=[] ){
- // 1. 初始化一个cURL会话
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/json");
- $ch = curl_init();
- // 2. 设置请求选项, 包括具体的url
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- // 设置请求为post类型
- curl_setopt($ch, CURLOPT_POST, 1);
- // 添加post数据到请求中
- curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- // 3. 执行一个cURL会话并且获取相关回复
- $response = curl_exec($ch);
- // 4. 释放cURL句柄,关闭一个cURL会话
- curl_close($ch);
- return $response;
- }
- function http_post_json($url, $jsonStr,$token_res)
- {
- $headers = ['Authorization:Bearer '.$token_res,'Content-Type: application/json; charset=utf-8',
- 'Content-Length: ' . strlen($jsonStr)];
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
- $response = curl_exec($ch);
- $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
- curl_close($ch);
- return json_decode($response,true);
- }
- function pdfCurl($file_name,$source = 1)
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, 'https://pdf.gyxqcdz.com/v1/pdf/upload');
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_POST, 1);
- //curl_setopt($ch, CURLOPT_POSTFIELDS, 'file=@'.$file_name);// pdf demo
- if($source == 1) {
- curl_setopt($ch, CURLOPT_POSTFIELDS, ['file'=>new \CURLFile(realpath($file_name))]); // 本地服务器路径
- }else{
- curl_setopt($ch, CURLOPT_POSTFIELDS, ['file'=>new \CURLFile($file_name)]);// oss路径
- }
- $headers = array();
- // $headers[] = 'Content-Type: application/x-www-form-urlencoded';
- // $headers[] = 'Content-Type: multipart/form-data';
- // curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- $result = curl_exec($ch);
- if (curl_errno($ch)) {
- echo 'Error:' . curl_error($ch);
- }
- curl_close($ch);
- return json_decode($result,true);
- }
- function curl_post($url,$post_data)
- {
- // 1. 初始化一个cURL会话
- //根据API的要求,定义相对应的Content-Type
- $headers = [];
- array_push($headers, "Content-Type".":"."application/json");
- $ch = curl_init();
- // 2. 设置请求选项, 包括具体的url
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- // 设置请求为post类型
- curl_setopt($ch, CURLOPT_POST, 1);
- // 添加post数据到请求中
- curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- // 3. 执行一个cURL会话并且获取相关回复
- $response = curl_exec($ch);
- // 4. 释放cURL句柄,关闭一个cURL会话
- curl_close($ch);
- return json_decode($response,true);
- }
- function getVideoTime($ali_id)
- {
- $res = (new \app\api\controller\VideoDemand())->getVideoInfo($ali_id);
- if(empty($res['videoBase'])) return ['duration'=>0 ,'duration_str'=>''];
- return ['duration'=>intval($res['videoBase']['duration']) ,'duration_str'=>get_stay_time(intval($res['videoBase']['duration']))];
- }
- function dispose_recommend($list,$needle= 'is_recommend')
- {
- list($l1,$l2) = [[],[]];
- foreach ($list as $v) $v[$needle] == 1 ? $l1[] = $v : $l2[] =$v;
- shuffle($l1);
- shuffle($l2);
- return array_merge($l1,$l2);
- }
- // 生成二维码
- function create_qrcode($id,$user_id,$module = 'activity')
- {
- $qrCode= new \Endroid\QrCode\QrCode();
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/static/'.$module;
- $filename = $dir.'/'.$id.'_'.$user_id.'.png';
- @unlink($filename);
- $content = 'https://'.$_SERVER['HTTP_HOST']."/dist/#/activity-detail?id=".$id."&tg=".$id.'_'.$user_id;
- $qrCode->setText($content);
- $qrCode->setSize(200);
- $qrCode->writeFile($filename);
- $url = 'https://'.$_SERVER['SERVER_NAME']."/static/$module/".$id.'_'.$user_id.'.png';
- return $url;
- }
- function get_short_name($name)
- {
- if(strlen($name) <= 8) return $name;
- return mb_substr($name,1,5).'...';
- }
- // 邮箱发送
- function send_email($email,$content='',$alias = '活动提示')
- {
- require_once env('root_path').'/vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
- $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
- $client = new \DefaultAcsClient($iClientProfile);
- $request = new Dm\SingleSendMailRequest();
- $request->setAccountName("gyx@yzm.gyxqcdz.com");
- $request->setFromAlias("[$alias]");
- $request->setAddressType(1);
- $request->setTagName("activity");
- $request->setReplyToAddress("true");
- $request->setToAddress($email);
- $request->setSubject("$alias");
- $html_body = $content;
- $request->setHtmlBody($content);
- try {
- $send_res = $client->getAcsResponse($request);
- $sms_data = array(
- 'phone'=>$email,
- 'code'=>'AAAAA',
- 'result'=>'OK'
- );
- Db::name('store_member_sms')->insert($sms_data);
- } catch (ClientException $e) {
- return $e->getErrorMessage();
- // print_r($e->getErrorCode());
- // print_r($e->getErrorMessage());
- } catch (ServerException $e) {
- return $e->getErrorMessage();
- // print_r($e->getErrorCode());
- // print_r($e->getErrorMessage());
- }catch (Exception $e)
- {
- return $e->getMessage();
- }
- return 1;
- }
|