DgcReader.RuleValidators.Italy
2.5.5-rc1
See the version list below for details.
dotnet add package DgcReader.RuleValidators.Italy --version 2.5.5-rc1
NuGet\Install-Package DgcReader.RuleValidators.Italy -Version 2.5.5-rc1
<PackageReference Include="DgcReader.RuleValidators.Italy" Version="2.5.5-rc1" />
paket add DgcReader.RuleValidators.Italy --version 2.5.5-rc1
#r "nuget: DgcReader.RuleValidators.Italy, 2.5.5-rc1"
// Install DgcReader.RuleValidators.Italy as a Cake Addin #addin nuget:?package=DgcReader.RuleValidators.Italy&version=2.5.5-rc1&prerelease // Install DgcReader.RuleValidators.Italy as a Cake Tool #tool nuget:?package=DgcReader.RuleValidators.Italy&version=2.5.5-rc1&prerelease
Italian Rules Validator
DgcReader.RuleValidators.Italy
Implementation of IRulesValidator
for validating Digital Green Certificates against the Italian rules.
The DgcItalianRulesValidator
implements also the IBlacklistProvider
interface, and can be used for both purposes.
Starting from version 1.3.0, the library has been included in the list of verified SDKs by Italian authorities (Ministero della salute).
The approval only refers to the main module DgcReader
in combination with the Italian providers included in the project (DgcReader.RuleValidators.Italy
, DgcReader.BlacklistProviders.Italy
and DgcReader.TrustListProviders.Italy
)
Please refer to this guide in order to correctly configure the required services.
Usage
In order to use the validator, you can register it as a service or you can instantiate it directly, depending on how your application is designed:
a) Registering as a service:
public void ConfigureServices(IServiceCollection services)
{
...
services.AddDgcReader()
.AddItalianTrustListProvider()
.AddItalianRulesValidator(o => // <-- Register the DgcItalianRulesValidator service
{
// Optionally, configure the validator with custom options
o.RefreshInterval = TimeSpan.FromSeconds(5);
o.MinRefreshInterval = TimeSpan.Zero;
...
});
}
b) Instantiate it directly
...
// You can use the constructor
var rulesValidator = new DgcItalianRulesValidator(httpClient);
...
// Or you can use the DgcItalianRulesValidator.Create facory method
// This will help you to unwrap the IOptions interface when you specify
// custom options for the provider:
var rulesValidator = DgcItalianRulesValidator.Create(httpClient,
new DgcItalianRulesValidatorOptions {
RefreshInterval = TimeSpan.FromHours(24),
MinRefreshInterval = TimeSpan.FromHours(1),
SaveCertificate = true
});
// Then you should pass it as a parameter to the DgcReaderService constructor:
var dgcReader = DgcReaderService.Create(
trustListProviders: new ITrustListProvider[] { trustListProvider },
blackListProviders: new IBlacklistProvider[] { rulesValidator, drlBlacklistProvider }, // Note: both services must be registered as IBlacklistProvider!!
rulesValidators: new IRulesValidator[] { rulesValidator }); // <-- The rules validator service
Available options
- RefreshInterval: interval for checking for rules updates from the server. Default value is 24 hours.
- MinRefreshInterval: if specified, prevents that every validation request causes a refresh attempt when the current rules are expired.
For example, if the parameter is set to 5 minutes and the remote server is unavailable when theRefreshInterval
is expired, subsequent validation requests won't try to download the updated rules for 5 minutes before making a new attempt. Default value is 5 minutes. - UseAvailableValuesWhileRefreshing: if true, allows the validator to use the expired rules already loaded in memory, while downloading the updated rules on a background Task.
This prevents the application to wait that the new rules are downloaded, extending by the time needed for the download the effective validitiy of the rules already loaded.
As result, the response time of the application will be nearly instantanious, except for the first download or if the rules have reached theMaxFileAge
value.
Otherwise, if the rules are expired, every validation request will wait untill the refresh task completes. - TryReloadFromCacheWhenExpired: If true, try to reload values from cache before downloading from the remote server. This can be useful if values are refreshed by a separate process, i.e. when the same valueset cached file is shared by multiple instances for reading. Default value is false.
- BasePath: base folder where the rules list will be saved.
The default value isDirectory.GetCurrentDirectory()
- MaxFileAge: maximum duration of the configuration file before is discarded.
If a refresh is not possible when the refresh interval expires, the current file can be used until it passes the specified period.
This allows the application to continue to operate even if the backend is temporary unavailable for any reason. Default value is 15 days. - IgnoreMinimumSdkVersion: if true, validates the rules even if the reference SDK version is obsolete.
- ValidationMode: The verification mode used in order to validate the DGC. If not specified, defaults to
Basic3G
.- In
Basic3G
mode, all kind of certificates can be validated (vaccinations, recovery certificates and negative tests). - In
Strict2G
mode, also known as "Super Greenpass", test results are always considered not valid.
- In
Specify ValidationMode per call
Validation mode is read from options by default.
If you need to specify it for each call, you can use the overload method by calling the following extension:
var result = dgcReaderService.VerifyForItaly(qrCodeData, ValidationMode.Strict2G);
// Or alternatively without throwing exceptions, same as GetValidationResult
var result = dgcReaderService.VerifyForItaly(qrCodeData, ValidationMode.Strict2G, throwOnError: false);
Forcing the update of the rules
If the application needs to update the rules at a specific time (i.e. by a scheduled task, or when a user press a "Refresh" button), you can simply call the RefreshRulesList
function of the validator.
This will casue the immediate refresh of the rules from the remote server, regardless of the options specified.
The IBlacklistProvider implementation
As already mentioned, the DgcItalianRulesValidator implementation implements both the IBlacklistProvider
and the IRulesValidator
interface.
When registering the provider as a service, it is automatically registered as a IBlacklistProvider
, using the same instance for both roles.
If this is not desired, you can prevent this behavior by specifying it during registration:
public void ConfigureServices(IServiceCollection services)
{
...
services.AddDgcReader()
.AddItalianTrustListProvider()
.AddItalianRulesValidator(cfg =>
{
cfg.UseAsBlacklistProvider(false) // <-- This will prevent to use the validator as an IBlacklistProvider
.Configure(o =>
{
// Eventually continue to configure options...
o.RefreshInterval = TimeSpan.FromSeconds(5);
o.MinRefreshInterval = TimeSpan.Zero;
...
});
});
}
Copyright © 2021 Davide Trevisan
Licensed under the Apache License, Version 2.0
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 is compatible. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.2
- DgcReader (>= 2.5.5-rc1)
- DgcReader.Deserializers.Italy (>= 2.5.5-rc1)
- DgcReader.Providers.Abstractions (>= 2.5.5-rc1)
- Newtonsoft.Json (>= 13.0.1)
- Portable.BouncyCastle (>= 1.9.0)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7
- DgcReader (>= 2.5.5-rc1)
- DgcReader.Deserializers.Italy (>= 2.5.5-rc1)
- DgcReader.Providers.Abstractions (>= 2.5.5-rc1)
- Microsoft.Extensions.Http (>= 5.0.0)
- Microsoft.Extensions.Options (>= 5.0.0)
- Newtonsoft.Json (>= 13.0.1)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 2.0
- DgcReader (>= 2.5.5-rc1)
- DgcReader.Deserializers.Italy (>= 2.5.5-rc1)
- DgcReader.Providers.Abstractions (>= 2.5.5-rc1)
- Microsoft.Extensions.Http (>= 5.0.0)
- Microsoft.Extensions.Options (>= 5.0.0)
- Newtonsoft.Json (>= 13.0.1)
- Portable.BouncyCastle (>= 1.9.0)
-
net5.0
- DgcReader (>= 2.5.5-rc1)
- DgcReader.Deserializers.Italy (>= 2.5.5-rc1)
- DgcReader.Providers.Abstractions (>= 2.5.5-rc1)
- Microsoft.Extensions.Http (>= 5.0.0)
- Microsoft.Extensions.Options (>= 5.0.0)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.6.1 | 279 | 4/3/2023 |
2.6.0 | 227 | 4/2/2023 |
2.6.0-CI-20230402-140522 | 121 | 4/2/2023 |
2.5.5 | 450 | 6/14/2022 |
2.5.5-rc1 | 175 | 6/14/2022 |
2.5.5-CI-20230402-112357 | 134 | 4/2/2023 |
2.5.5-CI-20230402-101020 | 149 | 4/2/2023 |
2.5.4 | 421 | 5/4/2022 |
2.5.4-rc2 | 178 | 5/4/2022 |
2.5.4-rc1 | 194 | 5/4/2022 |
2.5.3 | 618 | 3/5/2022 |
2.5.3-rc1 | 190 | 3/5/2022 |
2.5.1 | 497 | 2/16/2022 |
2.5.1-rc1 | 166 | 2/15/2022 |
2.5.0 | 464 | 2/14/2022 |
2.5.0-rc3 | 179 | 2/14/2022 |
2.5.0-rc2 | 181 | 2/11/2022 |
2.5.0-rc1 | 167 | 2/11/2022 |
2.4.0 | 494 | 2/6/2022 |
2.3.0 | 496 | 1/28/2022 |
2.2.1 | 469 | 1/21/2022 |
2.2.0 | 471 | 1/16/2022 |
2.1.1 | 455 | 1/11/2022 |
2.1.0 | 294 | 1/6/2022 |
2.0.0 | 305 | 12/27/2021 |
1.3.2 | 352 | 12/13/2021 |
1.3.1 | 305 | 12/11/2021 |
1.3.0 | 257 | 12/6/2021 |
1.2.1 | 396 | 11/5/2021 |
1.2.0 | 315 | 11/4/2021 |
1.1.2 | 338 | 11/2/2021 |
1.0.0-CI-20211102-130745 | 205 | 11/2/2021 |
1.0.0-CI-20211102-124304 | 204 | 11/2/2021 |
1.0.0-CI-20211102-120059 | 239 | 11/2/2021 |