64e3fbe035
v2-ci / build (push) Failing after 1m43s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped
Adds <summary>, <param>, <typeparam>, and <inheritdoc/> tags to public members surfaced by commentchecker — resolves 5,847 of 5,869 issues (99.6%) across three /fixdocs passes.
82 lines
3.5 KiB
C#
82 lines
3.5 KiB
C#
using Opc.Ua;
|
|
using Opc.Ua.Configuration;
|
|
using Serilog;
|
|
using ZB.MOM.WW.OtOpcUa.Client.Shared.Models;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Client.Shared.Adapters;
|
|
|
|
/// <summary>
|
|
/// Production implementation that builds a real OPC UA ApplicationConfiguration.
|
|
/// </summary>
|
|
internal sealed class DefaultApplicationConfigurationFactory : IApplicationConfigurationFactory
|
|
{
|
|
private static readonly ILogger Logger = Log.ForContext<DefaultApplicationConfigurationFactory>();
|
|
|
|
/// <summary>Creates an OPC UA application configuration from the provided connection settings.</summary>
|
|
/// <param name="settings">The connection settings to use.</param>
|
|
/// <param name="ct">Token to cancel the operation.</param>
|
|
public async Task<ApplicationConfiguration> CreateAsync(ConnectionSettings settings, CancellationToken ct)
|
|
{
|
|
// Resolve the canonical PKI path lazily on first use so constructing a
|
|
// ConnectionSettings instance — including the throwaway copies the client
|
|
// service builds per failover attempt — does not touch the filesystem.
|
|
// Callers that supply an explicit path override the default.
|
|
var storePath = string.IsNullOrWhiteSpace(settings.CertificateStorePath)
|
|
? ClientStoragePaths.GetPkiPath()
|
|
: settings.CertificateStorePath;
|
|
|
|
var config = new ApplicationConfiguration
|
|
{
|
|
ApplicationName = "OtOpcUaClient",
|
|
ApplicationUri = "urn:localhost:OtOpcUaClient",
|
|
ApplicationType = ApplicationType.Client,
|
|
SecurityConfiguration = new SecurityConfiguration
|
|
{
|
|
ApplicationCertificate = new CertificateIdentifier
|
|
{
|
|
StoreType = CertificateStoreType.Directory,
|
|
StorePath = Path.Combine(storePath, "own")
|
|
},
|
|
TrustedIssuerCertificates = new CertificateTrustList
|
|
{
|
|
StoreType = CertificateStoreType.Directory,
|
|
StorePath = Path.Combine(storePath, "issuer")
|
|
},
|
|
TrustedPeerCertificates = new CertificateTrustList
|
|
{
|
|
StoreType = CertificateStoreType.Directory,
|
|
StorePath = Path.Combine(storePath, "trusted")
|
|
},
|
|
RejectedCertificateStore = new CertificateTrustList
|
|
{
|
|
StoreType = CertificateStoreType.Directory,
|
|
StorePath = Path.Combine(storePath, "rejected")
|
|
},
|
|
AutoAcceptUntrustedCertificates = settings.AutoAcceptCertificates
|
|
},
|
|
ClientConfiguration = new ClientConfiguration
|
|
{
|
|
DefaultSessionTimeout = settings.SessionTimeoutSeconds * 1000
|
|
}
|
|
};
|
|
|
|
await config.Validate(ApplicationType.Client);
|
|
|
|
if (settings.AutoAcceptCertificates)
|
|
config.CertificateValidator.CertificateValidation += (_, e) => e.Accept = true;
|
|
|
|
if (settings.SecurityMode != SecurityMode.None)
|
|
{
|
|
var app = new ApplicationInstance
|
|
{
|
|
ApplicationName = "OtOpcUaClient",
|
|
ApplicationType = ApplicationType.Client,
|
|
ApplicationConfiguration = config
|
|
};
|
|
await app.CheckApplicationInstanceCertificatesAsync(false, 2048);
|
|
}
|
|
|
|
Logger.Debug("ApplicationConfiguration created for {EndpointUrl}", settings.EndpointUrl);
|
|
return config;
|
|
}
|
|
} |