#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md ----------------------------------------------------------------*/ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- Copyright (C) 2023 Senparc 文件名:TenPayV3InfoCollection.cs 文件功能描述:微信支付V3信息集合,Key为商户号(MchId) 创建标识:Senparc - 20150211 修改标识:Senparc - 20150303 修改描述:整理接口 修改标识:Senparc - 20180707 修改描述:TenPayV3InfoCollection 的 Register() 的微信参数自动添加到 Config.SenparcWeixinSetting.Items 下 修改标识:Senparc - 20180802 修改描述:v15.2.0 SenparcWeixinSetting 添加 TenPayV3_WxOpenTenpayNotify 属性,用于设置小程序支付回调地址 修改标识:Senparc - 20190521 修改描述:v1.4.0 .NET Core 添加多证书注册功能 TODO:升级为Container ----------------------------------------------------------------*/ using System; using System.Collections.Generic; using System.Threading.Tasks; #if NETSTANDARD2_0 || NETSTANDARD2_1 using Microsoft.Extensions.DependencyInjection; #endif using Senparc.CO2NET.Extensions; using Senparc.Weixin.Entities; using Senparc.Weixin.Exceptions; using Senparc.Weixin.Helpers; namespace Senparc.Weixin.TenPayV3 { /// /// 微信支付信息集合,Key为商户号(MchId) /// public class TenPayV3InfoCollection : Dictionary { /// /// 微信支付信息集合,Key为商户号(MchId) /// public static TenPayV3InfoCollection Data = new TenPayV3InfoCollection(); /// /// 注册TenPayV3Info信息 /// /// /// 公众号唯一标识(或名称) public static void Register(TenPayV3Info tenPayV3Info, string name) { var key = TenPayHelper.GetRegisterKey(tenPayV3Info.MchId, tenPayV3Info.Sub_MchId); Data[key] = tenPayV3Info; //添加到全局变量 if (!name.IsNullOrEmpty()) { Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_AppId = tenPayV3Info.AppId; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_AppSecret = tenPayV3Info.AppSecret; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_MchId = tenPayV3Info.MchId; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_Key = tenPayV3Info.Key; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_CertPath = tenPayV3Info.CertPath; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_CertSecret = tenPayV3Info.CertSecret; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_TenpayNotify = tenPayV3Info.TenPayV3Notify; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_WxOpenTenpayNotify = tenPayV3Info.TenPayV3_WxOpenNotify; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_SubMchId = tenPayV3Info.Sub_MchId; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_SubAppId = tenPayV3Info.Sub_AppId; Senparc.Weixin.Config.SenparcWeixinSetting.Items[name].TenPayV3_SubAppSecret = tenPayV3Info.Sub_AppSecret; } } /// /// 获取 APIv3 的公钥 /// /// /// /// public static async Task GetAPIv3PublicKeyAsync(ISenparcWeixinSettingForTenpayV3 senparcWeixinSettingForTenpayV3, string tenpaySerialNumber) { var tenpayV3InfoKey = TenPayHelper.GetRegisterKey(senparcWeixinSettingForTenpayV3.TenPayV3_MchId, senparcWeixinSettingForTenpayV3.TenPayV3_SubMchId); var pubKey = await Data[tenpayV3InfoKey].GetPublicKeyAsync(tenpaySerialNumber, senparcWeixinSettingForTenpayV3); return pubKey; } /// /// 索引 TenPayV3Info /// /// /// public new TenPayV3Info this[string key] { get { if (!base.ContainsKey(key)) { throw new WeixinException(string.Format("TenPayV3InfoCollection尚未注册Mch:{0}", key)); } else { return base[key]; } } set { base[key] = value; } } /// /// TenPayV3InfoCollection 构造函数 /// public TenPayV3InfoCollection() : base(StringComparer.OrdinalIgnoreCase) { } } }