Edi.Captcha
3.19.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Edi.Captcha --version 3.19.0
NuGet\Install-Package Edi.Captcha -Version 3.19.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Edi.Captcha" Version="3.19.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Edi.Captcha --version 3.19.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Edi.Captcha, 3.19.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Edi.Captcha as a Cake Addin #addin nuget:?package=Edi.Captcha&version=3.19.0 // Install Edi.Captcha as a Cake Tool #tool nuget:?package=Edi.Captcha&version=3.19.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Edi.Captcha.AspNetCore
The Captcha module used in my blog
Usage
0. Install from NuGet
NuGet Package Manager
Install-Package Edi.Captcha
or .NET CLI
dotnet add package Edi.Captcha
1. Register in DI
services.AddSession(options =>
{
options.IdleTimeout = TimeSpan.FromMinutes(20);
options.Cookie.HttpOnly = true;
});
services.AddSessionBasedCaptcha();
// Don't forget to add this line in your `Configure` method.
app.UseSession();
or you can customize the options
services.AddSessionBasedCaptcha(option =>
{
option.Letters = "2346789ABCDEFGHJKLMNPRTUVWXYZ";
option.SessionName = "CaptchaCode";
option.CodeLength = 4;
});
2. Generate Image
Using MVC Controller
private readonly ISessionBasedCaptcha _captcha;
public SomeController(ISessionBasedCaptcha captcha)
{
_captcha = captcha;
}
[Route("get-captcha-image")]
public IActionResult GetCaptchaImage()
{
var s = _captcha.GenerateCaptchaImageFileStream(
HttpContext.Session,
100,
36
);
return s;
}
Using Middleware
app.UseSession().UseCaptchaImage(options =>
{
options.RequestPath = "/captcha-image";
options.ImageHeight = 36;
options.ImageWidth = 100;
});
3. Add CaptchaCode Property to Model
[Required]
[StringLength(4)]
public string CaptchaCode { get; set; }
5. View
<div class="col">
<div class="input-group">
<div class="input-group-prepend">
<img id="img-captcha" src="~/captcha-image" />
</div>
<input type="text"
asp-for="CommentPostModel.CaptchaCode"
class="form-control"
placeholder="Captcha Code"
autocomplete="off"
minlength="4"
maxlength="4" />
</div>
<span asp-validation-for="CommentPostModel.CaptchaCode" class="text-danger"></span>
</div>
6. Validate Input
_captcha.ValidateCaptchaCode(model.CommentPostModel.CaptchaCode, HttpContext.Session)
To make your code look more cool, you can also write an Action Filter like this:
public class ValidateCaptcha : ActionFilterAttribute
{
private readonly ISessionBasedCaptcha _captcha;
public ValidateCaptcha(ISessionBasedCaptcha captcha)
{
_captcha = captcha;
}
public override void OnActionExecuting(ActionExecutingContext context)
{
var captchaedModel =
context.ActionArguments.Where(p => p.Value is ICaptchable)
.Select(x => x.Value as ICaptchable)
.FirstOrDefault();
if (null == captchaedModel)
{
context.ModelState.AddModelError(nameof(captchaedModel.CaptchaCode), "Captcha Code is required");
context.Result = new BadRequestObjectResult(context.ModelState);
}
else
{
if (!_captcha.Validate(captchaedModel.CaptchaCode, context.HttpContext.Session))
{
context.ModelState.AddModelError(nameof(captchaedModel.CaptchaCode), "Wrong Captcha Code");
context.Result = new ConflictObjectResult(context.ModelState);
}
else
{
base.OnActionExecuting(context);
}
}
}
}
and then
services.AddScoped<ValidateCaptcha>();
and then
public class YourModelWithCaptchaCode : ICaptchable
{
public string YourProperty { get; set; }
[Required]
[StringLength(4)]
public string CaptchaCode { get; set; }
}
[ServiceFilter(typeof(ValidateCaptcha))]
public async Task<IActionResult> SomeAction(YourModelWithCaptchaCode model)
{
// ....
}
Refer to https://edi.wang/post/2018/10/13/generate-captcha-code-aspnet-core
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 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 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- SixLabors.ImageSharp.Drawing (>= 2.0.0)
-
net8.0
- SixLabors.ImageSharp.Drawing (>= 2.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Edi.Captcha:
Package | Downloads |
---|---|
MoongladePure.Comments
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Edi.Captcha:
Repository | Stars |
---|---|
EdiWang/Moonglade
The ASP.NET Core blog system of https://edi.wang, runs on Microsoft Azure
|
|
AiursoftWeb/Infrastructures
Mirror of: https://gitlab.aiursoft.cn/aiursoft/infrastructures
|
Version | Downloads | Last updated |
---|---|---|
3.25.0 | 73 | 11/13/2024 |
3.24.0 | 1,025 | 8/11/2024 |
3.23.1 | 473 | 7/14/2024 |
3.23.0 | 162 | 7/8/2024 |
3.22.0 | 884 | 5/19/2024 |
3.21.2 | 1,043 | 3/11/2024 |
3.21.1 | 1,064 | 1/29/2024 |
3.21.0 | 886 | 12/15/2023 |
3.20.0 | 298 | 12/11/2023 |
3.19.1 | 1,351 | 11/6/2023 |
3.19.0 | 517 | 10/11/2023 |
3.18.0 | 720 | 9/16/2023 |
3.17.0 | 558 | 8/29/2023 |
3.16.0 | 843 | 7/13/2023 |
3.15.0 | 4,107 | 1/5/2023 |
3.14.0 | 1,321 | 11/9/2022 |
3.13.1 | 3,744 | 9/14/2022 |
3.13.0 | 4,120 | 7/31/2022 |
3.12.0 | 399 | 7/31/2022 |
3.11.0 | 1,511 | 6/12/2022 |
3.10.0 | 2,530 | 2/9/2022 |
3.9.0 | 558 | 1/10/2022 |
3.8.0 | 261 | 1/9/2022 |
3.7.0 | 441 | 12/9/2021 |
3.6.1 | 754 | 12/8/2021 |
3.6.0 | 502 | 11/13/2021 |
3.5.0 | 487 | 11/9/2021 |
3.4.0 | 347 | 11/9/2021 |
3.3.0 | 2,024 | 6/7/2021 |
3.2.0 | 1,420 | 4/1/2021 |
3.1.0 | 418 | 3/31/2021 |
3.0.1 | 2,981 | 11/27/2020 |
3.0.0 | 647 | 11/11/2020 |
2.2.0 | 3,893 | 12/4/2019 |
2.1.0 | 630 | 11/22/2019 |
2.0.0 | 1,016 | 9/24/2019 |
2.0.0-preview3 | 286 | 9/17/2019 |
2.0.0-preview2 | 283 | 9/15/2019 |
2.0.0-preview | 287 | 9/11/2019 |
1.3.1 | 1,419 | 5/1/2019 |
1.3.0 | 680 | 4/11/2019 |
1.2.0 | 874 | 1/30/2019 |
1.1.0 | 750 | 12/13/2018 |
1.0.0 | 1,422 | 11/11/2018 |