
Security News
Node.js Homepage Adds Paid Support Link, Prompting Contributor Pushback
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Apizr.Integrations.FileTransfer
Advanced tools
Refit based web api client management, but resilient (retry, connectivity, cache, auth, log, priority...)
Refit based web api client, but resilient (retry, connectivity, cache, auth, log, priority...)
The Apizr project was motivated by this 2015 famous blog post about resilient networking.
Its main focus was to address at least everything explained into this article, meanning:
But also, some more core features like:
And more integration/extension independent optional features like:
The list is not exhaustive, there’s more, but what we wanted was playing with all of it with as less code as we could, not worrying about plumbing things and being sure everything is wired and handled by design or almost.
Inspired by Refit.Insane.PowerPack, we wanted to make it simple to use, mixing attribute decorations and fluent configuration.
An api definition with some attributes:
// (Polly) Define a resilience pipeline key
// OR use Microsoft Resilience instead
[assembly:ResiliencePipeline("TransientHttpError")]
namespace Apizr.Sample
{
// (Apizr) Define your web api base url and ask for cache and logs
[BaseAddress("https://reqres.in/"),
Cache(CacheMode.FetchOrGet, "01:00:00"),
Log(HttpMessageParts.AllButBodies)]
public interface IReqResService
{
// (Refit) Define your web api interface methods
[Get("/api/users")]
Task<UserList> GetUsersAsync([RequestOptions] IApizrRequestOptions options);
[Get("/api/users/{userId}")]
Task<UserDetails> GetUserAsync([CacheKey] int userId, [RequestOptions] IApizrRequestOptions options);
[Post("/api/users")]
Task<User> CreateUser(User user, [RequestOptions] IApizrRequestOptions options);
}
}
Some resilience strategies:
// (Polly) Create a resilience pipeline (if not using Microsoft Resilience)
var resiliencePipelineBuilder = new ResiliencePipelineBuilder<HttpResponseMessage>()
.AddRetry(
new RetryStrategyOptions<HttpResponseMessage>
{
ShouldHandle = new PredicateBuilder<HttpResponseMessage>()
.Handle<HttpRequestException>()
.HandleResult(response =>
response.StatusCode is >= HttpStatusCode.InternalServerError
or HttpStatusCode.RequestTimeout),
Delay = TimeSpan.FromSeconds(1),
MaxRetryAttempts = 3,
UseJitter = true,
BackoffType = DelayBackoffType.Exponential
});
An instance of this managed api:
Relies on IServiceCollection
extension methods approach.
// (Logger) Configure logging the way you want, like
services.AddLogging(loggingBuilder => loggingBuilder.AddDebug());
// (Apizr) Add an Apizr manager for the defined api to your container
services.AddApizrManagerFor<IReqResService>(
options => options
// With a cache handler
.WithAkavacheCacheHandler()
// If using Microsoft Resilience
.ConfigureHttpClientBuilder(builder => builder
.AddStandardResilienceHandler()));
// (Polly) Add the resilience pipeline (if not using Microsoft Resilience)
services.AddResiliencePipeline<string, HttpResponseMessage>("TransientHttpError",
builder => builder.AddPipeline(resiliencePipelineBuilder.Build()));
...
// (Apizr) Get your manager instance the way you want, like
var reqResManager = serviceProvider.GetRequiredService<IApizrManager<IReqResService>>();
Relies on static builder instantiation approach.
// (Polly) Add the resilience pipeline with its key to a registry
var resiliencePipelineRegistry = new ResiliencePipelineRegistry<string>();
resiliencePipelineRegistry.TryAddBuilder<HttpResponseMessage>("TransientHttpError",
(builder, _) => builder.AddPipeline(resiliencePipelineBuilder.Build()));
// (Apizr) Get your manager instance
var reqResManager = ApizrBuilder.Current.CreateManagerFor<IReqResService>(
options => options
// With a logger
.WithLoggerFactory(LoggerFactory.Create(loggingBuilder =>
loggingBuilder.Debug()))
// With the defined resilience pipeline registry
.WithResiliencePipelineRegistry(resiliencePipelineRegistry)
// And with a cache handler
.WithAkavacheCacheHandler());
And then you're good to go:
var userList = await reqResManager.ExecuteAsync((api, opt) => api.GetUsersAsync(opt));
This request will be managed with the defined resilience strategies, data cached and all logged.
Apizr has a lot more to offer, just read the doc!
Project | Current | Upcoming |
---|---|---|
Apizr | ||
Apizr.Extensions.Microsoft.DependencyInjection |
Project | Current | Upcoming |
---|---|---|
Apizr.Extensions.Microsoft.Caching | ||
Apizr.Integrations.Akavache | ||
Apizr.Integrations.MonkeyCache |
Project | Current | Upcoming |
---|---|---|
Apizr.Integrations.Fusillade | ||
Apizr.Integrations.MediatR | ||
Apizr.Integrations.Optional |
Project | Current | Upcoming |
---|---|---|
Apizr.Integrations.AutoMapper | ||
Apizr.Integrations.Mapster |
Project | Current | Upcoming |
---|---|---|
Apizr.Integrations.FileTransfer | ||
Apizr.Extensions.Microsoft.FileTransfer | ||
Apizr.Integrations.FileTransfer.MediatR | ||
Apizr.Integrations.FileTransfer.Optional |
Project | Current | Upcoming |
---|---|---|
Refitter | ||
Refitter.SourceGenerator |
Install the NuGet reference package of your choice:
Choose which generating approach suites to your needs by installing either:
Apizr core package make use of well known nuget packages to make the magic appear:
Package | Features |
---|---|
Refit | Auto-implement web api interface and deal with HttpClient |
Polly.Extensions | Apply some policies like Retry, CircuitBreaker, etc... |
Microsoft.Extensions.Logging.Abstractions | Delegate logging layer to MS Extensions Logging |
It also comes with some handling interfaces to let you provide your own services for:
FAQs
Refit based web api client management, but resilient (retry, connectivity, cache, auth, log, priority...)
We found that apizr.integrations.filetransfer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.
Research
Security News
The Socket Research Team investigates a malicious Python typosquat of a popular password library that forces Windows shutdowns when input is incorrect.