Ejemplo n.º 1
0
        /**
         * 提交被扫支付API
         * 收银员使用扫码设备读取微信用户刷卡授权码以后,二维码或条码信息传送至商户收银台,
         * 由商户收银台或者商户后台调用该接口发起支付。
         * @param WeixinDataHelper inputObj 提交给被扫支付API的参数
         * @param int timeOut 超时时间
         * @throws WeixinPayException
         * @return 成功时返回调用结果,其他抛异常
         */
        public WeixinDataHelper Micropay(WeixinDataHelper inputObj, int timeOut = 10)
        {
            string url = "https://api.mch.weixin.qq.com/pay/micropay";

            //检测必填参数
            if (!inputObj.IsSet("body"))
            {
                throw new WeixinPayException("提交被扫支付API接口中,缺少必填参数body!");
            }
            else if (!inputObj.IsSet("out_trade_no"))
            {
                throw new WeixinPayException("提交被扫支付API接口中,缺少必填参数out_trade_no!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new WeixinPayException("提交被扫支付API接口中,缺少必填参数total_fee!");
            }
            else if (!inputObj.IsSet("auth_code"))
            {
                throw new WeixinPayException("提交被扫支付API接口中,缺少必填参数auth_code!");
            }

            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut));
        }
Ejemplo n.º 2
0
        /**
         *
         * 测速上报接口实现
         * @param WeixinDataHelper inputObj 提交给测速上报接口的参数
         * @param int timeOut 测速上报接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回测速上报接口返回的结果,其他抛异常
         */
        private WeixinDataHelper Report(WeixinDataHelper inputObj, int timeOut = 1)
        {
            string url = "https://api.mch.weixin.qq.com/payitil/report";

            //检测必填参数
            if (!inputObj.IsSet("interface_url"))
            {
                throw new WeixinPayException("接口URL,缺少必填参数interface_url!");
            }
            if (!inputObj.IsSet("return_code"))
            {
                throw new WeixinPayException("返回状态码,缺少必填参数return_code!");
            }
            if (!inputObj.IsSet("result_code"))
            {
                throw new WeixinPayException("业务结果,缺少必填参数result_code!");
            }
            if (!inputObj.IsSet("user_ip"))
            {
                throw new WeixinPayException("访问接口IP,缺少必填参数user_ip!");
            }
            if (!inputObj.IsSet("execute_time_"))
            {
                throw new WeixinPayException("接口耗时,缺少必填参数execute_time_!");
            }
            inputObj.SetValue("time", DateTime.Now.ToString("yyyyMMddHHmmss"));//商户上报时间
            string xml      = ToXml(inputObj);
            string response = HttpService.Post(xml, url, false, timeOut, this.CertPath, this.CertPassword);

            WeixinDataHelper result = new WeixinDataHelper(this.WeixinKey);

            result.FromXml(response);
            return(result);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// 请求
        /// </summary>
        /// <returns></returns>
        private WeixinDataHelper Post(string xml, string url, int timeOut, bool isUseCert = false)
        {
            var start = DateTime.Now;                                                                           //请求开始时间

            string response = HttpService.Post(xml, url, isUseCert, timeOut, this.CertPath, this.CertPassword); //调用HTTP通信接口以提交数据到API

            var    end      = DateTime.Now;
            double timeCost = (end - start).TotalMilliseconds;//获得接口耗时

            //将xml格式的结果转换为对象以返回
            WeixinDataHelper result = new WeixinDataHelper(this.WeixinKey);

            if (response.StartsWith("<xml>"))
            {
                //若接口调用失败会返回xml格式的结果
                result.FromXml(response);
            }
            else
            {
                //接口调用成功则返回非xml格式的数据
                result.SetValue("result", response);
            }

            ReportCostTime(url, (int)timeCost, result);//测速上报
            //RequestUrl,ElapsedTime,HttpMethod,RequestContent
            result.SetValue("requestUrl", url);
            result.SetValue("elapsedTime", timeCost);
            result.SetValue("httpMethod", "Post");
            result.SetValue("requestContent", xml);
            return(result);
        }
Ejemplo n.º 4
0
        /**
         * 下载对账单
         * @param WeixinDataHelper inputObj 提交给下载对账单API的参数
         * @param int timeOut 接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回,其他抛异常
         */
        public WeixinDataHelper DownloadBill(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/downloadbill";

            //检测必填参数
            if (!inputObj.IsSet("bill_date"))
            {
                throw new WeixinPayException("对账单接口中,缺少必填参数bill_date!");
            }

            string xml = ToXml(inputObj);

            //Log.Debug("WeixinPayApi", "DownloadBill request : " + xml);
            string response = HttpService.Post(xml, url, false, timeOut, this.CertPath, this.CertPassword);//调用HTTP通信接口以提交数据到API
            //Log.Debug("WeixinPayApi", "DownloadBill result : " + response);

            WeixinDataHelper result = new WeixinDataHelper(inputObj.WeixinKey);

            //若接口调用失败会返回xml格式的结果
            if (response.Substring(0, 5) == "<xml>")
            {
                result.FromXml(response);
            }
            //接口调用成功则返回非xml格式的数据
            else
            {
                result.SetValue("result", response);
            }

            return(result);
        }
Ejemplo n.º 5
0
        /**
         *
         * 申请退款
         * @param WeixinDataHelper inputObj 提交给申请退款API的参数
         * @param int timeOut 超时时间
         * @throws WeixinPayException
         * @return 成功时返回接口调用结果,其他抛异常
         */
        public WeixinDataHelper Refund(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/secapi/pay/refund";

            //检测必填参数
            if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
            {
                throw new WeixinPayException("退款申请接口中,out_trade_no、transaction_id至少填一个!");
            }
            else if (!inputObj.IsSet("out_refund_no"))
            {
                throw new WeixinPayException("退款申请接口中,缺少必填参数out_refund_no!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new WeixinPayException("退款申请接口中,缺少必填参数total_fee!");
            }
            else if (!inputObj.IsSet("refund_fee"))
            {
                throw new WeixinPayException("退款申请接口中,缺少必填参数refund_fee!");
            }
            else if (!inputObj.IsSet("op_user_id"))
            {
                throw new WeixinPayException("退款申请接口中,缺少必填参数op_user_id!");
            }

            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut, true));
        }
Ejemplo n.º 6
0
 private string ToXml(WeixinDataHelper inputObj)
 {
     if (!string.IsNullOrEmpty(SubMchId))
     {
         inputObj.SetValue("sub_mch_id", this.SubMchId);
     }
     inputObj.SetValue("appid", this.AppId);                                     //公众账号ID
     inputObj.SetValue("mch_id", this.MCHID);                                    //商户号
     inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", "")); //随机字符串
     inputObj.SetValue("sign", inputObj.MakeSign());                             //签名
     return(inputObj.ToXml());
 }
Ejemplo n.º 7
0
        /**
         * 关闭订单
         * @param WeixinDataHelper inputObj 提交给关闭订单API的参数
         * @param int timeOut 接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回,其他抛异常
         */
        public WeixinDataHelper CloseOrder(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/closeorder";

            //检测必填参数
            if (!inputObj.IsSet("out_trade_no"))
            {
                throw new WeixinPayException("关闭订单接口中,out_trade_no必填!");
            }

            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut));
        }
Ejemplo n.º 8
0
        /**
         *
         * 转换短链接
         * 该接口主要用于扫码原生支付模式一中的二维码链接转成短链接(weixin://wxpay/s/XXXXXX),
         * 减小二维码数据量,提升扫描速度和精确度。
         * @param WeixinDataHelper inputObj 提交给转换短连接API的参数
         * @param int timeOut 接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回,其他抛异常
         */
        public WeixinDataHelper ShortUrl(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/tools/shorturl";

            //检测必填参数
            if (!inputObj.IsSet("long_url"))
            {
                throw new WeixinPayException("需要转换的URL,签名用原串,传输需URL encode!");
            }

            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut));
        }
Ejemplo n.º 9
0
        /**
         *
         * 撤销订单API接口
         * @param WeixinDataHelper inputObj 提交给撤销订单API接口的参数,out_trade_no和transaction_id必填一个
         * @param int timeOut 接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回API调用结果,其他抛异常
         */
        public WeixinDataHelper Reverse(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/secapi/pay/reverse";

            //检测必填参数
            if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
            {
                throw new WeixinPayException("撤销订单API接口中,参数out_trade_no和transaction_id必须填写一个!");
            }

            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut, true));
        }
Ejemplo n.º 10
0
        /**
         *
         * 查询订单
         * @param WeixinDataHelper inputObj 提交给查询订单API的参数
         * @param int timeOut 超时时间
         * @throws WeixinPayException
         * @return 成功时返回订单查询结果,其他抛异常
         */
        public WeixinDataHelper OrderQuery(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/orderquery";

            //检测必填参数
            if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
            {
                throw new WeixinPayException("订单查询接口中,out_trade_no、transaction_id至少填一个!");
            }

            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut));
        }
Ejemplo n.º 11
0
        /**
         *
         * 统一下单
         * @param WeixinDataHelper inputObj 提交给统一下单API的参数
         * @param int timeOut 超时时间
         * @throws WeixinPayException
         * @return 成功时返回,其他抛异常
         */
        public WeixinDataHelper UnifiedOrder(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";

            //检测必填参数
            if (!inputObj.IsSet("out_trade_no"))
            {
                throw new WeixinPayException("缺少统一支付接口必填参数out_trade_no!");
            }
            else if (!inputObj.IsSet("body"))
            {
                throw new WeixinPayException("缺少统一支付接口必填参数body!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new WeixinPayException("缺少统一支付接口必填参数total_fee!");
            }
            else if (!inputObj.IsSet("trade_type"))
            {
                throw new WeixinPayException("缺少统一支付接口必填参数trade_type!");
            }

            //关联参数
            if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
            {
                throw new WeixinPayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
            }
            if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
            {
                throw new WeixinPayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
            }

            //异步通知url未设置,则使用配置文件中的url
            if (!inputObj.IsSet("notify_url"))
            {
                throw new WeixinPayException("缺少统一支付接口必填参数notify_url!");//异步通知url
            }

            //inputObj.SetValue("spbill_create_ip", Config.IP);//终端ip
            string xml = ToXml(inputObj);

            return(Post(xml, url, timeOut));
        }
Ejemplo n.º 12
0
        /**
         *
         * 测速上报
         * @param string interface_url 接口URL
         * @param int timeCost 接口耗时
         * @param WeixinDataHelper inputObj参数数组
         */
        private void ReportCostTime(string interface_url, int timeCost, WeixinDataHelper inputObj)
        {
            //如果不需要进行上报
            if (this.REPORT_LEVENL == 0)
            {
                return;
            }

            //如果仅失败上报
            if (this.REPORT_LEVENL == 1 && inputObj.IsSet("return_code") && inputObj.GetValue("return_code").ToString() == "SUCCESS" &&
                inputObj.IsSet("result_code") && inputObj.GetValue("result_code").ToString() == "SUCCESS")
            {
                return;
            }

            //上报逻辑
            WeixinDataHelper data = new WeixinDataHelper(this.WeixinKey);

            data.SetValue("interface_url", interface_url);
            data.SetValue("execute_time_", timeCost);
            //返回状态码
            if (inputObj.IsSet("return_code"))
            {
                data.SetValue("return_code", inputObj.GetValue("return_code"));
            }
            //返回信息
            if (inputObj.IsSet("return_msg"))
            {
                data.SetValue("return_msg", inputObj.GetValue("return_msg"));
            }
            //业务结果
            if (inputObj.IsSet("result_code"))
            {
                data.SetValue("result_code", inputObj.GetValue("result_code"));
            }
            //错误代码
            if (inputObj.IsSet("err_code"))
            {
                data.SetValue("err_code", inputObj.GetValue("err_code"));
            }
            //错误代码描述
            if (inputObj.IsSet("err_code_des"))
            {
                data.SetValue("err_code_des", inputObj.GetValue("err_code_des"));
            }
            //商户订单号
            if (inputObj.IsSet("out_trade_no"))
            {
                data.SetValue("out_trade_no", inputObj.GetValue("out_trade_no"));
            }
            //设备号
            if (inputObj.IsSet("device_info"))
            {
                data.SetValue("device_info", inputObj.GetValue("device_info"));
            }
            if (!string.IsNullOrEmpty(this.UserIP))
            {
                data.SetValue("user_ip", this.UserIP);//终端ip
            }
            try
            {
                Report(data);
            }
            catch (WeixinPayException ex)
            {
                //不做任何处理
            }
        }