Browse Source

更新license

denny 8 months ago
parent
commit
359aab5093
2 changed files with 24 additions and 1 deletions
  1. 23 0
      src/InteractionCenter/DongleService.cs
  2. 1 1
      src/License/ServerLicense.cs

+ 23 - 0
src/InteractionCenter/DongleService.cs

@@ -11,6 +11,7 @@ using WingCloudServer.Dongle;
 using WingInterfaceLibrary.Enum;
 using System.IO;
 using WingInterfaceLibrary.Request.User;
+using Newtonsoft.Json;
 
 namespace WingCloudServer.InteractionCenter
 {
@@ -128,6 +129,28 @@ namespace WingCloudServer.InteractionCenter
 
             //重新加载license验证;
             new DongleValidService().CheckAndVerifyLicense();
+            IParameter notValue = new BoolParameter()
+            {
+                Section = "Services",
+                Name = "IsNeedVerifyFunctionalValue",
+                Value = false
+            };
+            EnvironmentConfigManager.SetParammeter("Services", "IsNeedVerifyFunctionalValue", notValue);
+
+            IParameter licenseIdParameter = new StringParameter()
+            {
+                Section = "Services",
+                Name = "SoftwareLicenseId",
+                Value = licenseInfo.LicenseId
+            };
+            EnvironmentConfigManager.SetParammeter("Services", "SoftwareLicenseId", licenseIdParameter);
+            IParameter curLicenseInfo = new StringParameter()
+            {
+                Section = "Services",
+                Name = "CurrentSoftwareLicenseInfo",
+                Value = JsonConvert.SerializeObject(licenseInfo)
+            };
+            EnvironmentConfigManager.SetParammeter("Services", "CurrentSoftwareLicenseInfo", curLicenseInfo);
             return true;
         }
 

+ 1 - 1
src/License/ServerLicense.cs

@@ -796,7 +796,7 @@ namespace WingCloudServer
                     {
                         Section = "Services",
                         Name = "SoftwareLicenseId",
-                        Value = ""
+                        Value = _currentLicense?.LicenseId ?? string.Empty
                     };
                     EnvironmentConfigManager.SetParammeter("Services", "SoftwareLicenseId", licenseId);
                     IParameter curLicenseInfo = new StringParameter()