Support for new version reCAPTCHA / V2

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
Do we have any plan to support new version reCAPTCHA ? (V2). The old version is so frustration and hard to resolve in lots of scenarios.

http://techcrunch.com/2014/12/03/googles-recaptcha-mostly-does-away-with-those-annoying-captchas/

Google’s reCAPTCHA (Mostly) Does Away With Those Annoying CAPTCHAs
9 years ago
Hi,

Thanks a lot for suggestion. I've just created a work item
9 years ago
Hi,

I have implemented this with reCAPTCHA4net from http://recaptcha4net.codeplex.com/
Demo at shop.getyournet.ch

Step 1
In Nop.Web.Framework, add a reference to the assembly Recaptcha.Web
Also add a reference to System.Net.Http

Step 2
In Nop.Web.Framework > UI > Captcha, change the file HtmlExtensions.cs

using System.IO;
using System.Web.Mvc;
using System.Web.UI;
using Nop.Core.Infrastructure;

namespace Nop.Web.Framework.UI.Captcha
{
    public static class HtmlExtensions
    {
        public static string GenerateCaptcha(this HtmlHelper helper)
        {
            var captchaSettings = EngineContext.Current.Resolve<CaptchaSettings>();

            var theme = !string.IsNullOrEmpty(captchaSettings.ReCaptchaTheme) ? captchaSettings.ReCaptchaTheme : "white";
            var captchaControl = new Recaptcha.Web.UI.Controls.Recaptcha
            {
                ID = "recaptcha",
                ColorTheme = Recaptcha.Web.ColorTheme.Light,
                PublicKey = captchaSettings.ReCaptchaPublicKey,
                PrivateKey = captchaSettings.ReCaptchaPrivateKey
            };

            var htmlWriter = new HtmlTextWriter(new StringWriter());

            captchaControl.RenderControl(htmlWriter);

            return htmlWriter.InnerWriter.ToString();
        }
    }
}


Step 3
In Nop.Web.Framework > UI > Captcha, change the file CaptchaValidatorAttribute.cs

using System.Web.Mvc;
using Nop.Core.Infrastructure;
using System;
using System.Net.Http;
using Newtonsoft.Json.Linq;
using Nop.Services.Tasks;
using System.Threading.Tasks;

namespace Nop.Web.Framework.UI.Captcha
{
    public class CaptchaValidatorAttribute : ActionFilterAttribute
    {
        private const string RESPONSE_FIELD_KEY = "g-reCAPTCHA-response";

        public override void OnActionExecuting(ActionExecutingContext filterContext)
        {
            var valid = false;
            var captchaResponseValue = filterContext.HttpContext.Request.Form[RESPONSE_FIELD_KEY];
            if (!string.IsNullOrEmpty(captchaResponseValue))
            {
                var captchaSettings = EngineContext.Current.Resolve<CaptchaSettings>();
                if (captchaSettings.Enabled)
                    valid = System.Threading.Tasks.Task.Factory.StartNew(async () => await ValidateResponse(captchaResponseValue, captchaSettings.ReCaptchaPrivateKey).ConfigureAwait(false)).Unwrap().Result;
            }

            //this will push the result value into a parameter in our Action  
            filterContext.ActionParameters["captchaValid"] = valid;

            base.OnActionExecuting(filterContext);
        }

        private async Task<bool> ValidateResponse(string captchaResponseValue, string key)
        {
            var valid = false;
            var uribuilder = new UriBuilder("https://www.google.com/recaptcha/api/siteverify")
            {
                Query = string.Format("secret={0}&response={1}", key, captchaResponseValue)
            };
            using (var httpClient = new HttpClient())
            {
                var async = await httpClient.GetAsync(uribuilder.Uri);
                async.EnsureSuccessStatusCode();
                var readstring = await async.Content.ReadAsStringAsync();
                var resultobject = JObject.Parse(readstring);
                valid = resultobject.Value<bool>("success");
            }
            return valid;
        }
    }
}


Step 4
Compile the project and copy Nop.Web.Framework.dll and Recaptcha.Web.dll to the bin folder of your production site
9 years ago
Hi Peter,

Great! Thanks a lot for this contribution!
9 years ago
gyn wrote:
Hi,

I have implemented this with reCAPTCHA4net from http://recaptcha4net.codeplex.com/
Demo at shop.getyournet.ch
....


Thanks for your tips. That's very helpful. Peter.
9 years ago
[UPDATE 2015-02-11]
The problem seems to be resolved now:
https://groups.google.com/forum/#!topic/recaptcha/ftk2wHEUXhM

Unfortunately, I found a bug with this implementation and have to raise a warning. It doesn't works on a Windows Phone 8.1 IE11. I will try to find a solution...
8 years ago
I'm a bit slow (it usually takes me several tries to get javascript working right so C# is a bit over my head), so what do you mean in step one with:

"In Nop.Web.Framework, add a reference to the assembly Recaptcha.Web
Also add a reference to System.Net.Http"


OR


If you want to make some money off me, make a plugin for this :) I'd buy it.
8 years ago
Aha! Got it figured out, and it is working beautifully!

Thanks a million.

(BTW, if you do come out with a plugin, I'll probably still buy it as thanks for your work and willingness to share, so let me know)
8 years ago
Any update for Windows Phone 8.1? I am looking into implementing the new reCAPTCHA. Does the new nop3.6 support V2?
8 years ago
Very nice. How can we change the width to make it responsive? It appears the width is set at around 380px to 385px so it overflows at 320px. Tried modifying Width property in HtmlExtensions.cs. No luck. Tried using the ID in styles.css like #recaptcha{width:100%,border:1 px solid black;}. No luck. All the above does is modify the container the control is in not the control itself. There are other properties in HtmlExtensions.cs that can be changed but just don't know much about them or how to use them.

Googles documentation only shows example if you are rendering the control on an actual page in a form container.

I don't see anything except for size

data-size  size  compact normal  normal  Optional. The size of the widget.

Anyone?? Thanks. G.

Edit: Works fine on IE 11. Didn't test Winphone 8.1.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.