chengkun
2025-06-05 4080b5997b38ca84b3b203c7101dcadb97b76925
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using Tea;
using Alipay.EasySDK.Kernel.Util;
 
namespace Alipay.EasySDK.Kernel
{
    public class Context
    {
        /// <summary>
        /// 客户端配置参数
        /// </summary>
        private readonly Dictionary<string, object> config;
 
        /// <summary>
        /// 证书模式运行时环境
        /// </summary>
        public CertEnvironment CertEnvironment { get; }
 
        /// <summary>
        /// SDK版本号
        /// </summary>
        public string SdkVersion { get; set; }
 
        public Context(Config config, string sdkVersion)
        {
            this.config = config.ToMap();
            SdkVersion = sdkVersion;
            ArgumentValidator.CheckArgument(AlipayConstants.RSA2.Equals(GetConfig(AlipayConstants.SIGN_TYPE_CONFIG_KEY)),
               "Alipay Easy SDK只允许使用RSA2签名方式,RSA签名方式由于安全性相比RSA2弱已不再推荐。");
 
            if (!string.IsNullOrEmpty(GetConfig(AlipayConstants.ALIPAY_CERT_PATH_CONFIG_KEY)))
            {
                CertEnvironment = new CertEnvironment(
                        GetConfig(AlipayConstants.MERCHANT_CERT_PATH_CONFIG_KEY),
                        GetConfig(AlipayConstants.ALIPAY_CERT_PATH_CONFIG_KEY),
                        GetConfig(AlipayConstants.ALIPAY_ROOT_CERT_PATH_CONFIG_KEY));
            }
        }
 
        public string GetConfig(string key)
        {
            return (string)config[key];
        }
    }
}