[tumblr] Improve authentication (closes #15133)
This commit is contained in:
		| @@ -7,7 +7,6 @@ from .common import InfoExtractor | |||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
|     int_or_none, |     int_or_none, | ||||||
|     sanitized_Request, |  | ||||||
|     urlencode_postdata |     urlencode_postdata | ||||||
| ) | ) | ||||||
|  |  | ||||||
| @@ -111,23 +110,37 @@ class TumblrIE(InfoExtractor): | |||||||
|         (username, password) = self._get_login_info() |         (username, password) = self._get_login_info() | ||||||
|         if username is None: |         if username is None: | ||||||
|             return |             return | ||||||
|         self.report_login() |  | ||||||
|         webpage = self._download_webpage(self._LOGIN_URL, None, False) |         login_page = self._download_webpage( | ||||||
|         form = self._hidden_inputs(webpage) |             self._LOGIN_URL, None, 'Downloading login page') | ||||||
|         form.update({ |  | ||||||
|  |         login_form = self._hidden_inputs(login_page) | ||||||
|  |         login_form.update({ | ||||||
|             'user[email]': username, |             'user[email]': username, | ||||||
|             'user[password]': password |             'user[password]': password | ||||||
|         }) |         }) | ||||||
|         login_response = self._download_webpage( |  | ||||||
|             sanitized_Request(self._LOGIN_URL, urlencode_postdata(form), { |  | ||||||
|                 'Content-Type': 'application/x-www-form-urlencoded', |  | ||||||
|                 'Referer': self._LOGIN_URL |  | ||||||
|             }), None, False, 'Wrong login info') |  | ||||||
|  |  | ||||||
|         # Check the login response from Tumblr for an error message and fail the extraction if we find one. |         response, urlh = self._download_webpage_handle( | ||||||
|         login_errors = self._search_regex(r'Tumblr\.RegistrationForm\.errors\s*=\s*\[[\"|\'](.+)[\"|\']\]', login_response, 'login errors', False) |             self._LOGIN_URL, None, 'Logging in', | ||||||
|  |             data=urlencode_postdata(login_form), headers={ | ||||||
|  |                 'Content-Type': 'application/x-www-form-urlencoded', | ||||||
|  |                 'Referer': self._LOGIN_URL, | ||||||
|  |             }) | ||||||
|  |  | ||||||
|  |         # Successful login | ||||||
|  |         if '/dashboard' in urlh.geturl(): | ||||||
|  |             return | ||||||
|  |  | ||||||
|  |         login_errors = self._parse_json( | ||||||
|  |             self._search_regex( | ||||||
|  |                 r'RegistrationForm\.errors\s*=\s*(\[.+?\])\s*;', response, | ||||||
|  |                 'login errors', default='[]'), | ||||||
|  |             None, fatal=False) | ||||||
|         if login_errors: |         if login_errors: | ||||||
|             raise ExtractorError('Error logging in: %s' % login_errors, expected=True) |             raise ExtractorError( | ||||||
|  |                 'Unable to login: %s' % login_errors[0], expected=True) | ||||||
|  |  | ||||||
|  |         self.report_warning('Login has probably failed') | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         m_url = re.match(self._VALID_URL, url) |         m_url = re.match(self._VALID_URL, url) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․