|
6 | 6 | ;; Keywords: extensions, tools
|
7 | 7 | ;; URL: https://github.com/kaiwk/leetcode.el
|
8 | 8 | ;; 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 |
10 | 10 |
|
11 | 11 | ;; This program is free software; you can redistribute it and/or modify
|
12 | 12 | ;; it under the terms of the GNU General Public License as published by
|
@@ -188,38 +188,25 @@ VALUE should be the referer."
|
188 | 188 | ("filename" . "")
|
189 | 189 | ("content-type" . "")))
|
190 | 190 |
|
191 |
| -(aio-defun leetcode--login () |
| 191 | +(defun leetcode--login () |
192 | 192 | "Send login request and return a deferred object.
|
193 | 193 | When ACCOUNT or PASSWORD is empty string it will show a prompt."
|
194 | 194 | (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)) |
223 | 210 |
|
224 | 211 | (defun leetcode--login-p ()
|
225 | 212 | "Whether user is login."
|
@@ -516,7 +503,7 @@ Return a list of rows, each row is a vector:
|
516 | 503 | (if (get-buffer leetcode--buffer-name)
|
517 | 504 | (switch-to-buffer leetcode--buffer-name)
|
518 | 505 | (unless (leetcode--login-p)
|
519 |
| - (aio-await (leetcode--login))) |
| 506 | + (leetcode--login)) |
520 | 507 | (aio-await (leetcode-refresh-fetch))
|
521 | 508 | (switch-to-buffer leetcode--buffer-name)))
|
522 | 509 |
|
|
0 commit comments