summaryrefslogtreecommitdiffstats
path: root/src/invidious.cr
diff options
context:
space:
mode:
authorOmar Roth <omarroth@protonmail.com>2019-10-27 00:19:05 -0400
committerOmar Roth <omarroth@protonmail.com>2019-10-27 00:19:05 -0400
commit0cf187dee73ede397c1ef67a61133d9736738fd5 (patch)
treeac45cf4224be39f7165e1a537cd702502f4257e8 /src/invidious.cr
parentbdeb325bad15ea32a3f039de39418a88a6ab6180 (diff)
downloadinvidious-0cf187dee73ede397c1ef67a61133d9736738fd5.tar.gz
invidious-0cf187dee73ede397c1ef67a61133d9736738fd5.tar.bz2
invidious-0cf187dee73ede397c1ef67a61133d9736738fd5.zip
Add support for image captcha in Google login
Diffstat (limited to 'src/invidious.cr')
-rw-r--r--src/invidious.cr36
1 files changed, 26 insertions, 10 deletions
diff --git a/src/invidious.cr b/src/invidious.cr
index b0447865..58bc35f8 100644
--- a/src/invidious.cr
+++ b/src/invidious.cr
@@ -1390,8 +1390,7 @@ get "/login" do |env|
captcha_type ||= "image"
tfa = env.params.query["tfa"]?
- tfa ||= false
- prompt = ""
+ prompt = nil
templated "login"
end
@@ -1444,7 +1443,7 @@ post "/login" do |env|
headers["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8"
headers["Google-Accounts-XSRF"] = "1"
- headers["User-Agent"] = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36"
+ headers["User-Agent"] = random_user_agent
response = client.post("/_/signin/sl/lookup", headers, login_req(lookup_req))
lookup_results = JSON.parse(response.body[5..-1])
@@ -1453,10 +1452,17 @@ post "/login" do |env|
user_hash = lookup_results[0][2]
+ if token = env.params.body["token"]?
+ answer = env.params.body["answer"]?
+ captcha = {token, answer}
+ else
+ captcha = nil
+ end
+
challenge_req = {
user_hash, nil, 1, nil,
{1, nil, nil, nil,
- {password, nil, true},
+ {password, captcha, true},
},
{nil, nil,
{2, 1, nil, 1,
@@ -1484,11 +1490,14 @@ post "/login" do |env|
next templated "error"
end
- # TODO: Handle Google's CAPTCHA
- if captcha = challenge_results[0][-1]?.try &.[-1]?.try &.as_h?.try &.["5001"]?.try &.[-1].as_a?
- error_message = "Unhandled CAPTCHA. Please try again later."
- env.response.status_code = 401
- next templated "error"
+ if token = challenge_results[0][-1]?.try &.[-1]?.try &.as_h?.try &.["5001"]?.try &.[-1].as_a?.try &.[-1].as_s
+ account_type = "google"
+ captcha_type = "image"
+ prompt = nil
+ tfa = tfa_code
+ captcha = {tokens: [token], question: ""}
+
+ next templated "login"
end
if challenge_results[0][-1]?.try &.[5] == "INCORRECT_ANSWER_ENTERED"
@@ -1547,7 +1556,7 @@ post "/login" do |env|
prompt = "Google verification code"
end
- tfa = true
+ tfa = nil
captcha = nil
next templated "login"
end
@@ -5770,6 +5779,13 @@ get "/vi/:id/:name" do |env|
end
end
+get "/Captcha" do |env|
+ client = make_client(LOGIN_URL)
+ response = client.get(env.request.resource)
+ env.response.headers["Content-Type"] = response.headers["Content-Type"]
+ response.body
+end
+
# Undocumented, creates anonymous playlist with specified 'video_ids', max 50 videos
get "/watch_videos" do |env|
response = YT_POOL.client &.get(env.request.resource)