免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 10994 | 回复: 0
打印 上一主题 下一主题

微信卡券接口 - 系统流程实现 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-04-09 16:51 |只看该作者 |倒序浏览
本帖最后由 youkuiyuan 于 2015-04-10 16:33 编辑

  1. <?php
  2.     /********************************************************
  3.      *                @author Kyler You <QQ:2444756311>
  4.      *                @link http://mp.weixin.qq.com/wiki/home/index.html
  5.      *                @version 2.0.1
  6.      *                @uses $wxApi = new WxApi();
  7.      *                @package 微信API接口 陆续会继续进行更新
  8.      ********************************************************/

  9.     class WxApi {
  10.         const appId         = "";
  11.         const appSecret     = "";
  12.         const mchid         = ""; //商户号
  13.         const privatekey    = ""; //私钥
  14.         public $parameters  = array();

  15.         public function __construct(){

  16.         }

  17.         /****************************************************
  18.          *        微信提交API方法,返回微信指定JSON
  19.          ****************************************************/

  20.         public function wxHttpsRequest($url,$data = null){
  21.                 $curl = curl_init();
  22.                 curl_setopt($curl, CURLOPT_URL, $url);
  23.                 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  24.                 curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
  25.                 if (!empty($data)){
  26.                         curl_setopt($curl, CURLOPT_POST, 1);
  27.                         curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  28.                 }
  29.                 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  30.                 $output = curl_exec($curl);
  31.                 curl_close($curl);
  32.                 return $output;
  33.         }

  34.         /****************************************************
  35.          *  微信带证书提交数据 - 微信红包使用
  36.          ****************************************************/

  37.         public function wxHttpsRequestPem($url, $vars, $second=30,$aHeader=array()){
  38.                 $ch = curl_init();
  39.                 //超时时间
  40.                 curl_setopt($ch,CURLOPT_TIMEOUT,$second);
  41.                 curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1);
  42.                 //这里设置代理,如果有的话
  43.                 //curl_setopt($ch,CURLOPT_PROXY, '10.206.30.98');
  44.                 //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);
  45.                 curl_setopt($ch,CURLOPT_URL,$url);
  46.                 curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
  47.                 curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);

  48.                 //以下两种方式需选择一种

  49.                 //第一种方法,cert 与 key 分别属于两个.pem文件
  50.                 //默认格式为PEM,可以注释
  51.                 curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  52.                 curl_setopt($ch,CURLOPT_SSLCERT,getcwd().'/apiclient_cert.pem');
  53.                 //默认格式为PEM,可以注释
  54.                 curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  55.                 curl_setopt($ch,CURLOPT_SSLKEY,getcwd().'/apiclient_key.pem');

  56.                 curl_setopt($ch,CURLOPT_CAINFO,'PEM');
  57.                 curl_setopt($ch,CURLOPT_CAINFO,getcwd().'/rootca.pem');

  58.                 //第二种方式,两个文件合成一个.pem文件
  59.                 //curl_setopt($ch,CURLOPT_SSLCERT,getcwd().'/all.pem');

  60.                 if( count($aHeader) >= 1 ){
  61.                         curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader);
  62.                 }

  63.                 curl_setopt($ch,CURLOPT_POST, 1);
  64.                 curl_setopt($ch,CURLOPT_POSTFIELDS,$vars);
  65.                 $data = curl_exec($ch);
  66.                 if($data){
  67.                         curl_close($ch);
  68.                         return $data;
  69.                 }
  70.                 else {
  71.                         $error = curl_errno($ch);
  72.                         echo "call faild, errorCode:$error\n";
  73.                         curl_close($ch);
  74.                         return false;
  75.                 }
  76.         }

  77.         /****************************************************
  78.          *        微信获取AccessToken 返回指定微信公众号的at信息
  79.          ****************************************************/

  80.         public function wxAccessToken($appId = NULL , $appSecret = NULL){
  81.                 $appId                         = is_null($appId) ? self::appId : $appId;
  82.                 $appSecret                 = is_null($appSecret) ? self::appSecret : $appSecret;
  83.                                
  84.                                 //echo $appId,$appSecret;
  85.                                 $url                         = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appId."&secret=".$appSecret;
  86.                                 $result                 = $this->wxHttpsRequest($url);
  87.                                 //print_r($result);
  88.                                 $jsoninfo                 = json_decode($result, true);
  89.                                 $access_token         = $jsoninfo["access_token"];
  90.                 return $access_token;
  91.         }

  92.         /****************************************************
  93.          *        微信获取AccessToken 返回指定微信公众号的at信息
  94.          ****************************************************/

  95.         public function wxJsApiTicket($appId = NULL , $appSecret = NULL){
  96.                 $appId                         = is_null($appId) ? self::appId : $appId;
  97.                 $appSecret                 = is_null($appSecret) ? self::appSecret : $appSecret;       
  98.                 $url                     = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?type=jsapi&access_token=".$this->wxAccessToken();
  99.                                 $result                 = $this->wxHttpsRequest($url);
  100.                                 $jsoninfo                 = json_decode($result, true);
  101.                                 $ticket         = $jsoninfo['ticket'];
  102.                 return $ticket;
  103.         }
  104.         
  105.         /****************************************************
  106.          *        微信通过OPENID获取用户信息,返回数组
  107.          ****************************************************/

  108.         public function wxGetUser($openId){
  109.             $wxAccessToken         = $this->wxAccessToken();
  110.             $url                         = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=".$wxAccessToken."&openid=".$openId."&lang=zh_CN";
  111.             $result                 = $this->wxHttpsRequest($url);
  112.             $jsoninfo                 = json_decode($result, true);
  113.             return $jsoninfo;
  114.         }        

  115.         /****************************************************
  116.          *        微信生成二维码ticket
  117.          ****************************************************/

  118.         public function wxQrCodeTicket($jsonData){
  119.             $wxAccessToken         = $this->wxAccessToken();
  120.             $url                = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=".$wxAccessToken;
  121.             $result                 = $this->wxHttpsRequest($url,$jsonData);
  122.             return $result;
  123.         }
  124.         
  125.         /****************************************************
  126.          *        微信通过ticket生成二维码
  127.          ****************************************************/
  128.         public function wxQrCode($ticket){
  129.             $url    = "https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=" . urlencode($ticket);
  130.             return $url;
  131.         }

  132.         /****************************************************
  133.          *      发送自定义的模板消息
  134.          ****************************************************/

  135.         public function wxSetSend($touser, $template_id, $url, $data, $topcolor = '#7B68EE'){
  136.                 $template = array(
  137.                         'touser' => $touser,
  138.                         'template_id' => $template_id,
  139.                         'url' => $url,
  140.                         'topcolor' => $topcolor,
  141.                         'data' => $data
  142.                 );
  143.                 $jsonData = json_encode($template);
  144.                 $result = $this->wxSendTemplate($jsonData);
  145.                 return $result;
  146.         }

  147.         /****************************************************
  148.          *        微信设置OAUTH跳转URL,返回字符串信息 - SCOPE = snsapi_base //验证时不返回确认页面,只能获取OPENID
  149.          ****************************************************/

  150.         public function wxOauthBase($redirectUrl,$state = "",$appId = NULL){
  151.                 $appId                         = is_null($appId) ? self::appId : $appId;
  152.                 $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$appId."&redirect_uri=".$redirectUrl."&response_type=code&scope=snsapi_base&state=".$state."#wechat_redirect";
  153.                 return $url;
  154.         }

  155.         /****************************************************
  156.          *        微信设置OAUTH跳转URL,返回字符串信息 - SCOPE = snsapi_userinfo //获取用户完整信息
  157.          ****************************************************/

  158.         public function wxOauthUserinfo($redirectUrl,$state = "",$appId = NULL){
  159.                 $appId                         = is_null($appId) ? self::appId : $appId;
  160.                 $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$appId."&redirect_uri=".$redirectUrl."&response_type=code&scope=snsapi_userinfo&state=".$state."#wechat_redirect";
  161.                 return $url;
  162.         }

  163.         /****************************************************
  164.          *        微信OAUTH跳转指定URL
  165.          ****************************************************/

  166.         public function wxHeader($url){
  167.                 header("location:".$url);
  168.         }

  169.         /****************************************************
  170.          *        微信通过OAUTH返回页面中获取AT信息
  171.          ****************************************************/

  172.         public function wxOauthAccessToken($code,$appId = NULL , $appSecret = NULL){
  173.                 $appId                         = is_null($appId) ? self::appId : $appId;
  174.                 $appSecret                 = is_null($appSecret) ? self::appSecret : $appSecret;
  175.                 $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appId."&secret=".$appSecret."&code=".$code."&grant_type=authorization_code";
  176.                 $result                 = $this->wxHttpsRequest($url);
  177.                 //print_r($result);
  178.                 $jsoninfo                 = json_decode($result, true);
  179.                 //$access_token         = $jsoninfo["access_token"];
  180.                 return $jsoninfo;                       
  181.         }

  182.         /****************************************************
  183.          *        微信通过OAUTH的Access_Token的信息获取当前用户信息 // 只执行在snsapi_userinfo模式运行
  184.          ****************************************************/

  185.         public function wxOauthUser($OauthAT,$openId){
  186.                 $url                         = "https://api.weixin.qq.com/sns/userinfo?access_token=".$OauthAT."&openid=".$openId."&lang=zh_CN";
  187.                 $result                 = $this->wxHttpsRequest($url);
  188.                 $jsoninfo                 = json_decode($result, true);
  189.                 return $jsoninfo;                       
  190.         }
  191.         
  192.         /*****************************************************
  193.          *      生成随机字符串 - 最长为32位字符串
  194.          *****************************************************/
  195.         public function wxNonceStr($length = 16, $type = FALSE) {
  196.             $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  197.             $str = "";
  198.             for ($i = 0; $i < $length; $i++) {
  199.               $str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
  200.             }
  201.             if($type == TRUE){
  202.                 return strtoupper(md5(time() . $str));
  203.             }
  204.             else {
  205.                 return $str;
  206.             }
  207.         }
  208.         
  209.         /*******************************************************
  210.          *      微信商户订单号 - 最长28位字符串
  211.          *******************************************************/
  212.         
  213.         public function wxMchBillno($mchid = NULL) {
  214.             if(is_null($mchid)){
  215.                 if(self::mchid == "" || is_null(self::mchid)){
  216.                     $mchid = time();
  217.                 }
  218.                 else{
  219.                     $mchid = self::mchid;
  220.                 }
  221.             }
  222.             else{
  223.                 $mchid = substr(addslashes($mchid),0,10);
  224.             }
  225.             return date("Ymd",time()).time().$mchid;
  226.         }
  227.         
  228.         /*******************************************************
  229.          *      微信格式化数组变成参数格式 - 支持url加密
  230.          *******************************************************/      
  231.         
  232.         public function wxSetParam($parameters){
  233.             if(is_array($parameters) && !empty($parameters)){
  234.                 $this->parameters = $parameters;
  235.                 return $this->parameters;
  236.             }
  237.             else{
  238.                 return array();
  239.             }
  240.         }
  241.         
  242.         /*******************************************************
  243.          *      微信格式化数组变成参数格式 - 支持url加密
  244.          *******************************************************/
  245.         
  246.         public function wxFormatArray($parameters = NULL, $urlencode = FALSE){
  247.             if(is_null($parameters)){
  248.                 $parameters = $this->parameters;
  249.             }
  250.             $restr = "";//初始化空
  251.             ksort($parameters);//排序参数
  252.             foreach ($parameters as $k => $v){//循环定制参数
  253.                 if (null != $v && "null" != $v && "sign" != $k) {
  254.                     if($urlencode){//如果参数需要增加URL加密就增加,不需要则不需要
  255.                         $v = urlencode($v);
  256.                     }
  257.                     $restr .= $k . "=" . $v . "&";//返回完整字符串
  258.                 }
  259.             }
  260.             if (strlen($restr) > 0) {//如果存在数据则将最后“&”删除
  261.                 $restr = substr($restr, 0, strlen($restr)-1);
  262.             }
  263.             return $restr;//返回字符串
  264.         }
  265.         
  266.         /*******************************************************
  267.          *      微信MD5签名生成器 - 需要将参数数组转化成为字符串[wxFormatArray方法]
  268.          *******************************************************/
  269.         public function wxMd5Sign($content, $privatekey){
  270.             try {
  271.                 if (is_null($privatekey)) {
  272.                     throw new Exception("财付通签名key不能为空!");
  273.                 }
  274.                 if (is_null($content)) {
  275.                     throw new Exception("财付通签名内容不能为空");
  276.                 }
  277.                 $signStr = $content . "&key=" . $privatekey;
  278.                 return strtoupper(md5($signStr));
  279.             }
  280.             catch (Exception $e)
  281.             {
  282.                 die($e->getMessage());
  283.             }
  284.         }
  285.         
  286.         /*******************************************************
  287.          *      微信Sha1签名生成器 - 需要将参数数组转化成为字符串[wxFormatArray方法]
  288.          *******************************************************/
  289.         public function wxSha1Sign($content){
  290.             try {
  291.                 if (is_null($content)) {
  292.                     throw new Exception("签名内容不能为空");
  293.                 }
  294.                 //$signStr = $content;
  295.                 return sha1($content);
  296.             }
  297.             catch (Exception $e)
  298.             {
  299.                 die($e->getMessage());
  300.             }
  301.         }
  302.         
  303.         /*******************************************************
  304.          *      微信jsApi整合方法 - 通过调用此方法获得jsapi数据
  305.          *******************************************************/        
  306.         public function wxJsapiPackage(){
  307.             $jsapi_ticket = $this->wxJsApiTicket();
  308.             
  309.             // 注意 URL 一定要动态获取,不能 hardcode.
  310.             $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
  311.             $url = $protocol.$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"];
  312.             
  313.             $timestamp = time();
  314.             $nonceStr = $this->wxNonceStr();
  315.             
  316.             $signPackage = array(
  317.               "jsapi_ticket" => $jsapi_ticket,
  318.               "nonceStr"  => $nonceStr,
  319.               "timestamp" => $timestamp,
  320.               "url"       => $url
  321.             );
  322.                        
  323.             // 这里参数的顺序要按照 key 值 ASCII 码升序排序
  324.                         $rawString = "jsapi_ticket=$jsapi_ticket&noncestr=$nonceStr&timestamp=$timestamp&url=$url";
  325.                        
  326.             //$rawString = $this->wxFormatArray($signPackage);
  327.             $signature = $this->wxSha1Sign($rawString);
  328.             
  329.             $signPackage['signature'] = $signature;
  330.             $signPackage['rawString'] = $rawString;
  331.             $signPackage['appId'] = self::appId;
  332.                        
  333.             return $signPackage;
  334.         }
  335.         
  336.         
  337.         /*******************************************************
  338.          *      将数组解析XML - 微信红包接口
  339.          *******************************************************/
  340.         public function wxArrayToXml($parameters = NULL){
  341.             if(is_null($parameters)){
  342.                 $parameters = $this->parameters;
  343.             }
  344.             
  345.             if(!is_array($parameters) || empty($parameters)){
  346.                 die("参数不为数组无法解析");
  347.             }
  348.             
  349.             $xml = "<xml>";
  350.             foreach ($arr as $key=>$val)
  351.             {
  352.                 if (is_numeric($val))
  353.                 {
  354.                     $xml.="<".$key.">".$val."</".$key.">";
  355.                 }
  356.                 else
  357.                     $xml.="<".$key."><![CDATA[".$val."]]></".$key.">";  
  358.             }
  359.             $xml.="</xml>";
  360.             return $xml;
  361.         }
  362.         
  363.         /*******************************************************
  364.          *      微信卡券:上传LOGO - 需要改写动态功能
  365.          *******************************************************/
  366.         public function wxCardUpdateImg() {
  367.             $wxAccessToken         = $this->wxAccessToken();
  368.             //$data['access_token'] =  $wxAccessToken;
  369.             $data['buffer']     =  '@D:\\workspace\\htdocs\\yky_test\\logo.jpg';
  370.             $url                         = "https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=".$wxAccessToken;
  371.             $result                 = $this->wxHttpsRequest($url,$data);
  372.             $jsoninfo                 = json_decode($result, true);
  373.             return $jsoninfo;
  374.             //array(1) { ["url"]=> string(121) "http://mmbiz.qpic.cn/mmbiz/ibuYxPHqeXePNTW4ATKyias1Cf3zTKiars9PFPzF1k5icvXD7xW0kXUAxHDzkEPd9micCMCN0dcTJfW6Tnm93MiaAfRQ/0" }
  375.         }
  376.         
  377.         /*******************************************************
  378.          *      微信卡券:获取颜色
  379.          *******************************************************/
  380.         public function wxCardColor(){
  381.             $wxAccessToken         = $this->wxAccessToken();
  382.             $url                = "https://api.weixin.qq.com/card/getcolors?access_token=".$wxAccessToken;
  383.             $result                 = $this->wxHttpsRequest($url);
  384.             $jsoninfo                 = json_decode($result, true);
  385.             return $jsoninfo;
  386.         }
  387.         
  388.         /*******************************************************
  389.          *      微信卡券:创建卡券
  390.          *******************************************************/
  391.         public function wxCardCreated($jsonData) {
  392.             $wxAccessToken  = $this->wxAccessToken();
  393.             $url            = "https://api.weixin.qq.com/card/create?access_token=" . $wxAccessToken;
  394.             $result         = $this->wxHttpsRequest($url,$jsonData);
  395.             $jsoninfo       = json_decode($result, true);
  396.             return $jsoninfo;
  397.         }
  398.        
  399.         /*******************************************************
  400.          *      微信卡券:查询卡券详情
  401.          *******************************************************/
  402.         public function wxCardGetInfo($jsonData) {
  403.             $wxAccessToken  = $this->wxAccessToken();
  404.             $url            = "https://api.weixin.qq.com/card/get?access_token=" . $wxAccessToken;
  405.             $result         = $this->wxHttpsRequest($url,$jsonData);
  406.             $jsoninfo       = json_decode($result, true);
  407.             return $jsoninfo;
  408.         }

  409.         /*******************************************************
  410.          *      微信卡券:设置白名单
  411.          *******************************************************/
  412.         public function wxCardWhiteList($jsonData){
  413.             $wxAccessToken  = $this->wxAccessToken();
  414.             $url            = "https://api.weixin.qq.com/card/testwhitelist/set?access_token=" . $wxAccessToken;
  415.             $result         = $this->wxHttpsRequest($url,$jsonData);
  416.             $jsoninfo       = json_decode($result, true);
  417.             return $jsoninfo;
  418.         }
  419.         
  420.         /*******************************************************
  421.          *      微信卡券:JSAPI 卡券Package - 基础参数没有附带任何值 - 再生产环境中需要根据实际情况进行修改
  422.          *******************************************************/               
  423.         public function wxCardPackage($cardId , $openid = ''){
  424.             $timestamp = time();
  425.             $api_ticket = $this->wxJsApiTicket();
  426.             $cardId = $cardId;
  427.             $arrays = array($api_ticket,$timestamp,$cardId);
  428.             sort($arrays);
  429.             $string = sha1(implode("",$arrays));

  430.             $resultArray['card_id'] = $cardId;
  431.             $resultArray['card_ext'] = array();
  432.             $resultArray['card_ext']['openid'] = $openid;
  433.             $resultArray['card_ext']['timestamp'] = $timestamp;
  434.             $resultArray['card_ext']['signature'] = $string;

  435.             return $resultArray;
  436.         }

  437.         /*******************************************************
  438.          *      微信卡券:消耗卡券
  439.          *******************************************************/
  440.         public function wxCardConsume($jsonData){
  441.             $wxAccessToken  = $this->wxAccessToken();
  442.             $url            = "https://api.weixin.qq.com/card/code/consume?access_token=" . $wxAccessToken;
  443.             $result         = $this->wxHttpsRequest($url,$jsonData);
  444.             $jsoninfo       = json_decode($result, true);
  445.             return $jsoninfo;            
  446.         }

  447.         /*******************************************************
  448.          *      微信卡券:删除卡券
  449.          *******************************************************/
  450.         public function wxCardDelete($jsonData){
  451.             $wxAccessToken  = $this->wxAccessToken();
  452.             $url            = "https://api.weixin.qq.com/card/delete?access_token=" . $wxAccessToken;
  453.             $result         = $this->wxHttpsRequest($url,$jsonData);
  454.             $jsoninfo       = json_decode($result, true);
  455.             return $jsoninfo;            
  456.         }        
  457.         
  458.         /*******************************************************
  459.          *      微信卡券:JSAPI 卡券全部卡券 Package
  460.          *******************************************************/
  461.         public function wxCardAllPackage($cardIdArray = array(),$openid = ''){
  462.             $reArrays = array();
  463.             if(!empty($cardIdArray) && (is_array($cardIdArray) || is_object($cardIdArray))){
  464.                 //print_r($cardIdArray);
  465.                 foreach($cardIdArray as  $value){
  466.                     //print_r($this->wxCardPackage($value,$openid));
  467.                     $reArrays[] = $this->wxCardPackage($value,$openid);
  468.                 }
  469.                 //print_r($reArrays);
  470.             }
  471.             else{
  472.                 $reArrays[] = $this->wxCardPackage($cardIdArray,$openid);
  473.             }
  474.             return json_encode($reArrays);
  475.         }
  476.                
  477.     }
复制代码
微信需要 微信公众号的回调出来(解析XML)微信API JSAPI相结合
使用数据库(如果需要),线上线下的处理卡券流程模块相配合
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP