DNTCommon.Web.Core
7.2.0
dotnet add package DNTCommon.Web.Core --version 7.2.0
NuGet\Install-Package DNTCommon.Web.Core -Version 7.2.0
<PackageReference Include="DNTCommon.Web.Core" Version="7.2.0" />
paket add DNTCommon.Web.Core --version 7.2.0
#r "nuget: DNTCommon.Web.Core, 7.2.0"
// Install DNTCommon.Web.Core as a Cake Addin #addin nuget:?package=DNTCommon.Web.Core&version=7.2.0 // Install DNTCommon.Web.Core as a Cake Tool #tool nuget:?package=DNTCommon.Web.Core&version=7.2.0
DNTCommon.Web.Core
DNTCommon.Web.Core
provides common scenarios' solutions for ASP.NET Core applications.
Install via NuGet
To install DNTCommon.Web.Core, run the following command in the Package Manager Console:
PM> Install-Package DNTCommon.Web.Core
You can also view the package page on NuGet.
Linux (and containers) support
The SkiaSharp
library needs extra dependencies to work on Linux and containers. Please install the following NuGet
packages:
PM> Install-Package SkiaSharp.NativeAssets.Linux.NoDependencies
PM> Install-Package HarfBuzzSharp.NativeAssets.Linux
You also need to modify your .csproj
file to include some MSBuild directives that ensure the required files are in a
good place. These extra steps are normally not required but seems to be some issues on how .NET loads them.
<Target Name="CopyFilesAfterPublish" AfterTargets="AfterPublish">
<Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libSkiaSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
<Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libHarfBuzzSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
</Target>
Usage
After installing the DNTCommon.Web.Core package, to register its default providers, call services.AddDNTCommonWeb();
method in
your Startup class.
using DNTCommon.Web.Core;
namespace MyWebApp
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddDNTCommonWeb();
}
Features
ActionResults
- FeedResult is an ASP.NET Core RSS feed renderer.
- OpenSearchResult is an ASP.NET Core OpenSearch description format provider.
- SitemapResult is an ASP.NET Core Sitemap renderer.
Caching
- ICacheService encapsulates IMemoryCache functionalities.
- [NoBrowserCache]
action filter sets
no-cache
,must-revalidate
,no-store
headers for the currentResponse
.
DependencyInjection
- IServiceProviderExtensions creates an IServiceScope which contains an IServiceProvider used to resolve dependencies from a newly created scope and then runs an associated callback.
Drawing
- TextToImageExtensions and TextToImageResult draw a text on a bitmap and then return it as a png byte array.
Http
- ICommonHttpClientFactory service, reuses a single HttpClient instance across a multi-threaded application.
- DomainHelperExtensions provides useful extension methods to extract domain info of the URL's.
- IDownloaderService encapsulates HttpClient's best practices of downloading large files.
- IHtmlHelperService provides helper methods to work with HTML contents such as extracting links and titles or changing relative Urls to absolute Urls.
- IHttpRequestInfoService provides useful methods to work with current HttpContext.Request.
- IRedirectUrlFinderService finds the actual hidden URL after multiple redirects.
- IUrlNormalizationService transforms a URL into a normalized URL so it is possible to determine if two syntactically different URLs may be equivalent.
- IHtmlReaderService reads the HTML document's nodes recursively.
IUAParserService
is the updated version of the UAParser library with the latest regexes.yaml file.
Mail
- IWebMailService
simplifies sending an email using the
MailKit
library. It's able to use razor based email templates.
- IWebMailService
simplifies sending an email using the
ModelBinders
- PersianDateModelBinderProvider
parses an incoming Persian date and then binds it to a DateTime property automatically. To use it globally (
assuming your app only sends Persian dates to the server), Add it to
MvcOptions:
services.AddMvc(options => options.UsePersianDateModelBinder())
or just apply it to an specific view-model[ModelBinder(BinderType = typeof(PersianDateModelBinder))]
. - YeKeModelBinderProvider
parses an incoming text and then corrects its Ye & Ke characters automatically. To use it globally, Add it to
MvcOptions:
services.AddMvc(options => options.UseYeKeModelBinder())
or just apply it to an specific view-model[ModelBinder(BinderType = typeof(YeKeModelBinder))]
. - ApplyCorrectYeKeFilterAttribute
parses an incoming text and then corrects its Ye & Ke characters automatically. To use it globally, Add it to
MvcOptions:
services.AddControllersWithViews(options => options.Filters.Add(typeof(ApplyCorrectYeKeFilterAttribute)))
.
- PersianDateModelBinderProvider
parses an incoming Persian date and then binds it to a DateTime property automatically. To use it globally (
assuming your app only sends Persian dates to the server), Add it to
MvcOptions:
Mvc
- ControllerExtensions provides useful extension methods to work with MVC Controllers.
- IMvcActionsDiscoveryService provides a way to list all of the controllers and action methods of an MVC application.
- IViewRendererService helps rendering a .cshtml file as an string. It's useful for creating razor based email templates.
- UploadFileService saves the posted IFormFile to the specified directory asynchronously.
Blazor
- IBlazorStaticRendererService helps rendering a razor component as an string. It's useful for creating razor based email templates.
- IBlazorRenderingContext helps detecting the current rendering mode of a razor component.
Schedulers
- BackgroundQueueController
A .NET Core replacement for the old
HostingEnvironment.QueueBackgroundWorkItem
method. - ScheduledTasksController
DNTScheduler.Core is a lightweight ASP.NET Core's background tasks runner and scheduler. To define a new
task, create a new class
that implements the
IScheduledTask
interface. To register this new task, callservices.AddDNTScheduler();
method in your Startup class.AddDNTScheduler
method, adds this new task to the list of the defined tasks. Also its first parameter defines the custom logic of the running intervals of this task. It's a callback method that will be called every second and provides the utcNow value. If it returns true, the job will be executed.If you have multiple jobs at the same time, theorder
parameter's value indicates the order of their execution.
- BackgroundQueueController
A .NET Core replacement for the old
Security
- [AjaxOnly]
action filter determines whether the HttpRequest's
X-Requested-With
header hasXMLHttpRequest
value. - IProtectionProviderService
is an encryption provider based on
Microsoft.AspNetCore.DataProtection.IDataProtector
. It's only useful for short-term encryption scenarios such as creating encrypted HTTP cookies. - IFileNameSanitizerService
determines whether the requested file is safe to download to avoid
Directory Traversal
&File Inclusion
attacks. - UploadFileExtensions attribute determines only selected file extensions are safe to be uploaded.
- AllowUploadSafeFiles attribute disallows uploading dangerous files such as .aspx, web.config and .asp files.
- AntiDosMiddleware
is a rate limiter and throttling middleware for ASP.NET Core apps. To use it first add
app.UseAntiDos()
andservices.Configure<AntiDosConfig>
to Startup.cs file. Then complete theAntiDosConfig
section of the appsettings.json file. - IAntiXssService
provides a cleaning service for unsafe HTML fragments that can lead to XSS attacks based on a whitelist of allowed
tags and attributes. To use it add
services.Configure<AntiXssConfig>
to Startup.cs file. Then complete theAntiXssConfig
section of the appsettings.json file. - IPasswordHasherService provides a custom Pbkdf2 hashing and validating service.
- [AjaxOnly]
action filter determines whether the HttpRequest's
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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 is compatible. 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. |
-
net6.0
- AsyncKeyedLock (>= 7.0.2)
- Ben.Demystifier (>= 0.4.1)
- DNTPersianUtils.Core (>= 6.3.1)
- HarfBuzzSharp.NativeAssets.Linux (>= 7.3.0.2)
- HtmlAgilityPack (>= 1.11.70)
- IPAddressRange (>= 6.0.0)
- MailKit (>= 4.8.0)
- Microsoft.Extensions.Http.Polly (>= 8.0.10)
- NetEscapades.AspNetCore.SecurityHeaders (>= 0.24.0)
- SkiaSharp (>= 2.88.8)
- SkiaSharp.HarfBuzz (>= 2.88.8)
- SkiaSharp.NativeAssets.Linux (>= 2.88.8)
- System.IO.Hashing (>= 8.0.0)
- System.ServiceModel.Syndication (>= 8.0.0)
- UAParser (>= 3.1.47)
-
net7.0
- AsyncKeyedLock (>= 7.0.2)
- Ben.Demystifier (>= 0.4.1)
- DNTPersianUtils.Core (>= 6.3.1)
- HarfBuzzSharp.NativeAssets.Linux (>= 7.3.0.2)
- HtmlAgilityPack (>= 1.11.70)
- IPAddressRange (>= 6.0.0)
- MailKit (>= 4.8.0)
- Microsoft.Extensions.Http.Polly (>= 8.0.10)
- NetEscapades.AspNetCore.SecurityHeaders (>= 0.24.0)
- SkiaSharp (>= 2.88.8)
- SkiaSharp.HarfBuzz (>= 2.88.8)
- SkiaSharp.NativeAssets.Linux (>= 2.88.8)
- System.IO.Hashing (>= 8.0.0)
- System.ServiceModel.Syndication (>= 8.0.0)
- UAParser (>= 3.1.47)
-
net8.0
- AsyncKeyedLock (>= 7.0.2)
- Ben.Demystifier (>= 0.4.1)
- DNTPersianUtils.Core (>= 6.3.1)
- HarfBuzzSharp.NativeAssets.Linux (>= 7.3.0.2)
- HtmlAgilityPack (>= 1.11.70)
- IPAddressRange (>= 6.0.0)
- MailKit (>= 4.8.0)
- Microsoft.Extensions.Http.Polly (>= 8.0.10)
- NetEscapades.AspNetCore.SecurityHeaders (>= 0.24.0)
- SkiaSharp (>= 2.88.8)
- SkiaSharp.HarfBuzz (>= 2.88.8)
- SkiaSharp.NativeAssets.Linux (>= 2.88.8)
- System.IO.Hashing (>= 8.0.0)
- System.ServiceModel.Syndication (>= 8.0.0)
- UAParser (>= 3.1.47)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on DNTCommon.Web.Core:
Repository | Stars |
---|---|
VahidN/DNTIdentity
A highly customized sample of the ASP.NET Core Identity
|
Version | Downloads | Last updated |
---|---|---|
7.2.0 | 68 | 10/31/2024 |
7.1.0 | 193 | 10/17/2024 |
7.0.0 | 96 | 10/15/2024 |
6.9.3 | 87 | 10/14/2024 |
6.9.2 | 75 | 10/14/2024 |
6.9.1 | 80 | 10/13/2024 |
6.9.0 | 76 | 10/13/2024 |
6.8.3 | 115 | 10/9/2024 |
6.8.2 | 85 | 10/9/2024 |
6.8.1 | 92 | 10/6/2024 |
6.8.0 | 135 | 10/1/2024 |
6.7.0 | 191 | 9/22/2024 |
6.6.2 | 97 | 9/21/2024 |
6.6.1 | 170 | 9/17/2024 |
6.6.0 | 130 | 9/15/2024 |
6.5.1 | 151 | 9/15/2024 |
6.5.0 | 94 | 9/15/2024 |
6.4.0 | 286 | 9/8/2024 |
6.3.1 | 164 | 8/30/2024 |
6.3.0 | 141 | 8/27/2024 |
6.2.1 | 209 | 8/21/2024 |
6.2.0 | 400 | 8/18/2024 |
6.1.0 | 110 | 8/17/2024 |
6.0.3 | 111 | 8/17/2024 |
6.0.2 | 137 | 8/16/2024 |
6.0.1 | 134 | 8/14/2024 |
6.0.0 | 132 | 8/13/2024 |
5.9.2 | 167 | 8/8/2024 |
5.9.1 | 75 | 8/5/2024 |
5.9.0 | 71 | 8/2/2024 |
5.8.0 | 90 | 7/31/2024 |
5.7.0 | 54 | 7/31/2024 |
5.6.2 | 81 | 7/29/2024 |
5.6.1 | 71 | 7/29/2024 |
5.6.0 | 85 | 7/29/2024 |
5.5.0 | 133 | 7/26/2024 |
5.4.0 | 119 | 7/25/2024 |
5.3.7 | 229 | 7/6/2024 |
5.3.6 | 184 | 6/29/2024 |
5.3.5 | 89 | 6/29/2024 |
5.3.4 | 505 | 6/25/2024 |
5.3.3 | 266 | 6/3/2024 |
5.3.2 | 116 | 6/2/2024 |
5.3.1 | 96 | 6/2/2024 |
5.3.0 | 190 | 5/12/2024 |
5.2.0 | 102 | 5/11/2024 |
5.1.0 | 118 | 5/9/2024 |
5.0.0 | 166 | 4/29/2024 |
4.9.0 | 136 | 4/25/2024 |
4.8.0 | 122 | 4/23/2024 |
4.7.2 | 108 | 4/22/2024 |
4.7.1 | 116 | 4/22/2024 |
4.7.0 | 113 | 4/22/2024 |
4.6.0 | 146 | 4/15/2024 |
4.5.0 | 134 | 4/13/2024 |
4.3.1 | 281 | 4/9/2024 |
4.3.0 | 135 | 4/5/2024 |
4.2.1 | 206 | 3/27/2024 |
4.2.0 | 116 | 3/27/2024 |
4.1.0 | 193 | 3/17/2024 |
4.0.1 | 138 | 3/17/2024 |
4.0.0 | 121 | 3/16/2024 |
3.9.2 | 186 | 3/2/2024 |
3.9.1 | 123 | 2/29/2024 |
3.9.0 | 416 | 2/18/2024 |
3.8.2 | 193 | 2/6/2024 |
3.8.1 | 127 | 1/31/2024 |
3.8.0 | 133 | 1/30/2024 |
3.7.0 | 581 | 12/28/2023 |
3.6.0 | 547 | 11/19/2023 |
3.5.5 | 148 | 11/18/2023 |
3.5.4 | 2,097 | 9/21/2023 |
3.5.3 | 816 | 8/30/2023 |
3.5.2 | 1,739 | 3/15/2023 |
3.5.1 | 326 | 3/5/2023 |
3.5.0 | 1,006 | 12/22/2022 |
3.4.1 | 1,735 | 11/20/2022 |
3.4.0 | 6,969 | 6/28/2022 |
3.3.1 | 471 | 6/25/2022 |
3.3.0 | 4,607 | 1/27/2022 |
3.2.1 | 651 | 12/18/2021 |
3.2.0 | 325 | 12/18/2021 |
3.1.0 | 477 | 11/28/2021 |
3.0.0 | 596 | 11/9/2021 |
2.9.5 | 690 | 10/26/2021 |
2.9.4 | 1,503 | 7/31/2021 |
2.9.3 | 402 | 7/31/2021 |
2.9.2 | 1,022 | 6/7/2021 |
2.9.1 | 2,276 | 2/24/2021 |
2.9.0 | 664 | 1/15/2021 |
2.8.2 | 503 | 1/8/2021 |
2.8.1 | 487 | 12/27/2020 |
2.8.0 | 470 | 12/27/2020 |
2.7.1 | 575 | 12/25/2020 |
2.7.0 | 457 | 12/24/2020 |
2.6.0 | 551 | 12/17/2020 |
2.5.0 | 1,618 | 11/23/2020 |
2.4.0 | 1,663 | 11/11/2020 |
2.3.2 | 725 | 10/17/2020 |
2.3.1 | 568 | 10/10/2020 |
2.3.0 | 465 | 10/8/2020 |
2.2.0 | 606 | 9/29/2020 |
2.1.1 | 941 | 9/12/2020 |
2.1.0 | 532 | 9/11/2020 |
2.0.0 | 803 | 9/3/2020 |
1.9.0 | 769 | 9/2/2020 |
1.8.2 | 2,327 | 6/8/2020 |
1.8.1 | 2,570 | 12/7/2019 |
1.8.0 | 906 | 10/23/2019 |
1.7.0 | 701 | 10/17/2019 |
1.6.1 | 912 | 9/24/2019 |
1.6.0 | 566 | 8/28/2019 |
1.5.1 | 389 | 8/14/2019 |
1.5.0 | 352 | 8/8/2019 |
1.4.0 | 7,824 | 3/23/2019 |
1.3.3 | 3,640 | 12/6/2018 |
1.3.2 | 1,424 | 9/20/2018 |
1.3.1 | 1,024 | 9/18/2018 |
1.3.0 | 1,593 | 6/7/2018 |
1.2.0 | 1,374 | 4/30/2018 |
1.1.0 | 1,220 | 4/21/2018 |
1.0.0 | 1,424 | 4/18/2018 |