Skip to content

Commit 28b78c4

Browse files
committed
fix: login failed
LeetCode do not allow third party login, retrieve LeetCode session from local Chrome cookies. see: #46
1 parent 86e9e16 commit 28b78c4

File tree

3 files changed

+27
-35
lines changed

3 files changed

+27
-35
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020-01-01 Wang Kai <[email protected]>
2+
3+
* leetcode.el: leetcode.com don't allow third party login, so we retrieve LeetCode session from Chrome cookies
4+
15
2019-10-11 Wang Kai <[email protected]>
26

37
* leetcode.el (leetcode-try): When encounter syntax error, .expected_code_answer is null. Handle this situation depend on status_code.

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ LeetCode brings you offer, and now Emacs brings you LeetCode!
55

66
# Installation
77

8-
You can `package-install` it from melpa directly.
8+
- Vanilla Emacs: `package-install` it from melpa directly
9+
- [Spacemacs](https://github.com/syl20bnr/spacemacs): [leetcode-emacs-layer](https://github.com/anmoljagetia/leetcode-emacs-layer)
10+
11+
LeetCode do not allow third party login, one workaround is restore LeetCode session from local Chrome cookies. To do this, you need to install a Python3 package called [my\_cookies](https://github.com/kaiwk/my_cookies): `pip3 install my_cookies`
912

1013
## Manually
1114

1215
1. Clone this repository and install all dependencies
1316
2. Move it to your load-path
1417
3. Require it in your emacs config
1518

16-
If you use [spacemacs](https://github.com/syl20bnr/spacemacs), there is a [leetcode-emacs-layer](https://github.com/anmoljagetia/leetcode-emacs-layer). Thanks for [Anmol Jagetia](https://github.com/anmoljagetia)!
17-
1819
# Configuration
1920

2021
You can set your preferred LeetCode programming language and SQL by setting `leetcode-prefer-language` and `leetcode-prefer-sql`:
@@ -28,7 +29,7 @@ All supported languages can be found in variable `leetcode--prefer-language-suff
2829

2930
# Usage
3031

31-
1. Execute `leetcode` command, then Emacs will prompt you to input account and password. If login successful, Emacs will save it into a file. If you are interested in what happend here, you can check [auth-source.el](https://www.gnu.org/software/emacs/manual/html_mono/auth.html).
32+
1. Execute `leetcode` command.
3233

3334
![leetcode](images/leetcode.png)
3435

leetcode.el

+18-31
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Keywords: extensions, tools
77
;; URL: https://github.com/kaiwk/leetcode.el
88
;; Package-Requires: ((emacs "26") (dash "2.16.0") (graphql "0.1.1") (spinner "1.7.3") (aio "1.0"))
9-
;; Version: 0.1.9
9+
;; Version: 0.1.10
1010

1111
;; This program is free software; you can redistribute it and/or modify
1212
;; it under the terms of the GNU General Public License as published by
@@ -188,38 +188,25 @@ VALUE should be the referer."
188188
("filename" . "")
189189
("content-type" . "")))
190190

191-
(aio-defun leetcode--login ()
191+
(defun leetcode--login ()
192192
"Send login request and return a deferred object.
193193
When ACCOUNT or PASSWORD is empty string it will show a prompt."
194194
(leetcode--loading-mode t)
195-
(let* ((credentials (leetcode--credentials))
196-
(account (nth 0 credentials))
197-
(password (nth 1 credentials))
198-
(save-func (nth 2 credentials))
199-
(boundary (mml-compute-boundary '()))
200-
(csrf-token (aio-await (leetcode--csrf-token)))
201-
(url-request-method "POST")
202-
(url-request-extra-headers
203-
`(("Content-Type" . ,(concat "multipart/form-data; boundary=" boundary))
204-
,leetcode--User-Agent
205-
,leetcode--X-Requested-With
206-
,(leetcode--referer leetcode--url-login)
207-
,(cons leetcode--X-CSRFToken csrf-token)))
208-
(url-request-data
209-
(mm-url-encode-multipart-form-data
210-
(list
211-
(leetcode--multipart-form-data "csrfmiddlewaretoken" csrf-token)
212-
(leetcode--multipart-form-data "login" account)
213-
(leetcode--multipart-form-data "password" password))
214-
boundary))
215-
(result (aio-await (aio-url-retrieve leetcode--url-login))))
216-
(if-let ((error-info (plist-get (car result) :error)))
217-
(progn
218-
(message "LeetCode login failed: %S" error-info)
219-
(auth-source-forget+ :host leetcode--domain))
220-
(when (functionp save-func)
221-
(funcall save-func)))
222-
(leetcode--loading-mode -1)))
195+
(let ((my-cookies (executable-find "my_cookies")))
196+
(set-process-filter
197+
(start-process "my_cookies" nil "my_cookies")
198+
(lambda (proc string)
199+
(let* ((cookies-list (seq-filter
200+
(lambda (s) (not (string-empty-p s)))
201+
(split-string string "\n")))
202+
(cookies-pairs (seq-map
203+
(lambda (s) (split-string s))
204+
cookies-list))
205+
(leetcode-session (cadr (assoc "LEETCODE_SESSION" cookies-pairs)))
206+
(leetcode-csrftoken (cadr (assoc "csrftoken" cookies-pairs))))
207+
(url-cookie-store "LEETCODE_SESSION" leetcode-session nil leetcode--domain "/" t)
208+
(url-cookie-store "csrftoken" leetcode-csrftoken nil leetcode--domain "/" t)))))
209+
(leetcode--loading-mode -1))
223210

224211
(defun leetcode--login-p ()
225212
"Whether user is login."
@@ -516,7 +503,7 @@ Return a list of rows, each row is a vector:
516503
(if (get-buffer leetcode--buffer-name)
517504
(switch-to-buffer leetcode--buffer-name)
518505
(unless (leetcode--login-p)
519-
(aio-await (leetcode--login)))
506+
(leetcode--login))
520507
(aio-await (leetcode-refresh-fetch))
521508
(switch-to-buffer leetcode--buffer-name)))
522509

0 commit comments

Comments
 (0)