-
Notifications
You must be signed in to change notification settings - Fork 261
Conversation
Clover/app/src/main/java/org/floens/chan/ui/captcha/v2/CaptchaNoJsHtmlParser.java
Show resolved
Hide resolved
Clover/app/src/main/java/org/floens/chan/ui/captcha/v2/CaptchaNoJsLayoutV2.java
Show resolved
Hide resolved
Clover/app/src/main/java/org/floens/chan/ui/captcha/v2/CaptchaNoJsPresenterV2.java
Outdated
Show resolved
Hide resolved
Clover/app/src/main/java/org/floens/chan/ui/captcha/v2/CaptchaNoJsPresenterV2.java
Outdated
Show resolved
Hide resolved
Clover/app/src/main/java/org/floens/chan/ui/captcha/v2/CaptchaNoJsPresenterV2.java
Show resolved
Hide resolved
Clover/app/src/main/java/org/floens/chan/ui/layout/ReplyLayout.java
Outdated
Show resolved
Hide resolved
Clover/app/src/main/java/org/floens/chan/ui/layout/ReplyLayout.java
Outdated
Show resolved
Hide resolved
Clover/app/src/main/res/layout/layout_captcha_challenge_image.xml
Outdated
Show resolved
Hide resolved
Also update google cookies to use dashchan ones
…instead of transparent
@K1rakishou I submitted a PR to fix the checkmark not being centered, and having to use an extra background view to make it white due to transparency. |
But that's how it is implemented in the google's recaptcha window. You think it should be centered?
And this one already fixed here - 2820d23#diff-460f4eca5fc92d000ad076afc5756ccaR31 Btw, do you have to enter the captcha like 10-15 times until it is accepted too? I even changed the cookies to the one dashchan uses but it still forces me to enter the captcha a lot of times. Apparently something is missing, but I can't figure out what exactly. |
And yeah, I had to enter the Captcha like 5-6 times. |
Oh yeah, this makes sence.
Well that's strange because I only get the 3x3 captchas too and the checkmark is where it is supposed to be (upper left corner). |
Alright then I will merge it later today. Still we have to do something with the amount of captcha attempts it takes to make a post. |
It could be that, if we're both testing on emulators, it's just giving us more to ensure that we're not robots. If you're testing on an actual device though, yeah, it's a problem. |
@Adamantcheese |
Weird. I don't know anything about how Captcha works though, so I won't be much help. |
Well, I guess for now we can just make it opt-out. |
From a little research it looks like the cookies might be per-user, which would make the hardcoded ones a problem anyways because anyone using the app would be using the same cookie and they might be around the world, which looks sketchy as hell. |
Yeah, probably. But on the other hand dashchan uses hardcoded cookies and works just fine. |
Weird. No idea then. |
Alright. I added two new settings to enable/disable the new captcha window and to use the real or the default google cookie. In case of using the real cookie a GET request to the google.com will be made to retrieve the NID cookie (apparently it is the most important among all of them) then this cookie will be used for recaptcha requests until app restart. Also I added a button to manually refresh the cookie (sometimes it helps when you are stuck in the challenge hell). It does look like it helps a little bit when using the real google cookie. |
Store real google cookie up to three months instead of until the next app restart
Instead of refreshing google cookies (when this option is enabled) on every app start I decided to do it once in three months (but there is still an ability to refresh them manually). I think it is a better idea to not refresh them way too often. |
Closes #696
For some reason it takes me like 20 tries to solve the captcha maybe because I tested it a lot today and it just doesn't like me now. Or maybe I forgot to add something (I did add the SID, HSID, SSID and NID cookies though). It should automatically fallback to the webview captcha if something couldn't be parsed (or you can use the button).