-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathclient.py
More file actions
1958 lines (1689 loc) · 77.5 KB
/
client.py
File metadata and controls
1958 lines (1689 loc) · 77.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import json
import logging
import warnings
from collections import OrderedDict
from typing import Optional, Callable, Union, Mapping, Any, MutableMapping, List, Dict, \
Tuple, cast, Iterable, BinaryIO, Iterator
import requests
from requests.auth import HTTPBasicAuth, AuthBase
from requests_oauthlib import OAuth1
import mwclient.errors as errors
import mwclient.listing as listing
from mwclient._types import Cookies, Namespace, VersionTuple
from mwclient.sleep import Sleeper, Sleepers
from mwclient.util import parse_timestamp, read_in_chunks, handle_limit
__version__ = '0.11.0'
log = logging.getLogger(__name__)
USER_AGENT = f'mwclient/{__version__} (https://github.com/mwclient/mwclient)'
class Site:
"""A MediaWiki site identified by its hostname.
Examples:
>>> import mwclient
>>> wikipedia_site = mwclient.Site('en.wikipedia.org')
>>> wikia_site = mwclient.Site('vim.wikia.com', path='/')
Args:
host: The hostname of a MediaWiki instance. Must not include a scheme
(e.g. `https://`) - use the `scheme` argument instead.
path: The instances script path (where the `index.php` and `api.php` scripts are
located). Must contain a trailing slash (`/`). Defaults to `/w/`.
ext: The file extension used by the MediaWiki API scripts. Defaults to `.php`.
pool: A preexisting :class:`~requests.Session` to be used when executing API
requests. When this is set, the `client_certificate`, `clients_useragent`,
`custom_headers`, `http_auth` and all OAuth related parameters are all
ignored.
retry_timeout: The number of seconds to sleep for each past retry of a failing API
request. Defaults to `30`.
max_retries: The maximum number of retries to perform for failing API requests.
Defaults to `25`.
wait_callback: A callback function to be executed for each failing API request.
clients_useragent: A prefix to be added to the default mwclient user-agent. Should
follow the pattern `'{tool_name}/{tool_version} ({contact})'`. Check the
`User-Agent policy <https://foundation.wikimedia.org/wiki/Policy:Wikimedia_Foundation_User-Agent_Policy>`_
for more information.
max_lag: A `maxlag` parameter to be used in `index.php` calls. Consult the
`documentation <https://www.mediawiki.org/wiki/Manual:Maxlag_parameter>`_ for
more information. Defaults to `3`.
compress: Whether to request and accept gzip compressed API responses. Defaults to
`True`.
force_login: Whether to require authentication when editing pages. Set to `False`
to allow unauthenticated edits. Defaults to `True`.
do_init: Whether to automatically initialize the :py:class:`Site` on
initialization. When set to `False`, the :py:class:`Site` must be initialized
manually using the :py:meth:`.site_init` method. Defaults to `True`.
httpauth: An authentication method to be used when making API requests. This can
be either an authentication object as provided by the :py:mod:`requests`
library, or a tuple in the form `{username, password}`. Usernames and
passwords provided as text strings are encoded as UTF-8. If dealing with a
server that cannot handle UTF-8, please provide the username and password
already encoded with the appropriate encoding.
connection_options: Additional arguments to be passed to the
:py:meth:`requests.Session.request` method when performing API calls. If the
`timeout` key is empty, a default timeout of 30 seconds is added.
consumer_token: OAuth1 consumer key for owner-only consumers.
consumer_secret: OAuth1 consumer secret for owner-only consumers.
access_token: OAuth1 access key for owner-only consumers.
access_secret: OAuth1 access secret for owner-only consumers.
client_certificate: A client certificate to be added
to the session.
custom_headers: A dictionary of custom headers to be added to all
API requests.
scheme: The URI scheme to use. This should be either `http` or `https` in
most cases. Defaults to `https`.
Raises:
RuntimeError: The authentication passed to the `httpauth` parameter is invalid.
You must pass either a tuple or a :class:`requests.auth.AuthBase` object.
errors.OAuthAuthorizationError: The OAuth authorization is invalid.
errors.LoginError: Login failed, the reason can be obtained from e.code and e.info
(where e is the exception object) and will be one of the API:Login errors. The
most common error code is "Failed", indicating a wrong username or password.
""" # noqa: E501
api_limit = 500
def __init__(
self,
host: str,
path: str = '/w/',
ext: str = '.php',
pool: Optional[requests.Session] = None,
retry_timeout: int = 30,
max_retries: int = 25,
wait_callback: Callable[['Sleeper', int, Optional[Any]], Any] = lambda *x: None,
clients_useragent: Optional[str] = None,
max_lag: int = 3,
compress: bool = True,
force_login: bool = True,
do_init: bool = True,
httpauth: Union[
Tuple[Union[str, bytes], Union[str, bytes]],
requests.auth.AuthBase,
List[Union[str, bytes]],
None,
] = None,
connection_options: Optional[MutableMapping[str, Any]] = None,
consumer_token: Optional[str] = None,
consumer_secret: Optional[str] = None,
access_token: Optional[str] = None,
access_secret: Optional[str] = None,
client_certificate: Optional[Union[str, Tuple[str, str]]] = None,
custom_headers: Optional[Mapping[str, str]] = None,
scheme: str = 'https',
reqs: Optional[MutableMapping[str, Any]] = None
) -> None:
# Setup member variables
self.host = host
self.path = path
self.ext = ext
self.credentials = None # type: Optional[Tuple[str, str, Optional[str]]]
self.compress = compress
self.max_lag = str(max_lag)
self.force_login = force_login
self.logged_in = False
if reqs and connection_options:
raise ValueError(
"reqs is a deprecated alias of connection_options. Do not specify both."
)
if reqs:
warnings.warn(
"reqs is deprecated in mwclient 1.0.0. Use connection_options instead",
DeprecationWarning
)
connection_options = reqs
self.requests = connection_options or {}
self.scheme = scheme
if 'timeout' not in self.requests:
self.requests['timeout'] = 30 # seconds
if consumer_token is not None:
auth = OAuth1(consumer_token, consumer_secret, access_token, access_secret)
elif isinstance(httpauth, (list, tuple)):
# workaround weird requests default to encode as latin-1
# https://github.com/mwclient/mwclient/issues/315
# https://github.com/psf/requests/issues/4564
httpauth = [
it.encode("utf-8") if isinstance(it, str) else it for it in httpauth
]
auth = HTTPBasicAuth(*httpauth)
elif httpauth is None or isinstance(httpauth, (AuthBase,)):
auth = httpauth
else:
# FIXME: Raise a specific exception instead of a generic RuntimeError.
raise RuntimeError('Authentication is not a tuple or an instance of AuthBase')
self.sleepers = Sleepers(max_retries, retry_timeout, wait_callback)
# Site properties
self.blocked = False # type: Union[Tuple[str, str], bool] # Is user blocked?
self.hasmsg = False # Whether current user has new messages
self.groups = [] # type: List[str] # Groups current user is in
self.rights = [] # type: List[str] # Rights current user has
self.tokens = {} # type: Dict[str, str] # Edit tokens of the current user
self.version = None # type: Optional[VersionTuple]
self.namespaces = self.default_namespaces # type: Dict[int, str]
# Setup connection
if pool is None:
self.connection = requests.Session() # type: requests.Session
self.connection.auth = auth
if client_certificate:
self.connection.cert = client_certificate
# Set User-Agent header field
if clients_useragent:
ua = clients_useragent + ' ' + USER_AGENT
else:
ua = USER_AGENT
self.connection.headers['User-Agent'] = ua
if custom_headers:
self.connection.headers.update(custom_headers)
else:
self.connection = pool
# Page generators
self.pages = listing.PageList(self)
self.categories = listing.PageList(self, namespace=14)
self.images = listing.PageList(self, namespace=6)
# Compat page generators
self.Pages = self.pages
self.Categories = self.categories
self.Images = self.images
# Initialization status
self.initialized = False
# Upload chunk size in bytes
self.chunk_size = 1048576
if do_init:
try:
self.site_init()
except errors.APIError as e:
if e.args[0] == 'mwoauth-invalid-authorization':
raise errors.OAuthAuthorizationError(self, e.code, e.info)
# Private wiki, do init after login
if e.args[0] not in {'unknown_action', 'readapidenied'}:
raise
def site_init(self) -> None:
"""Populates the object with information about the current user and site. This is
done automatically when creating the object, unless explicitly disabled using the
`do_init=False` constructor argument."""
if self.initialized:
info = self.get('query', meta='userinfo', uiprop='groups|rights')
userinfo = info['query']['userinfo']
self.username = userinfo['name']
self.groups = userinfo.get('groups', [])
self.rights = userinfo.get('rights', [])
self.tokens = {}
return
meta = self.get('query', meta='siteinfo|userinfo',
siprop='general|namespaces', uiprop='groups|rights',
retry_on_error=False)
# Extract site info
self.site = meta['query']['general']
self.namespaces = {
namespace['id']: namespace.get('*', '')
for namespace in meta['query']['namespaces'].values()
}
self.version = self.version_tuple_from_generator(self.site['generator'])
# Require MediaWiki version >= 1.16
self.require(1, 16)
# User info
userinfo = meta['query']['userinfo']
self.username = userinfo['name']
self.groups = userinfo.get('groups', [])
self.rights = userinfo.get('rights', [])
self.initialized = True
@staticmethod
def version_tuple_from_generator(
string: str, prefix: str = 'MediaWiki '
) -> VersionTuple:
"""Return a version tuple from a MediaWiki Generator string.
Example:
>>> Site.version_tuple_from_generator("MediaWiki 1.5.1")
(1, 5, 1)
Args:
string: The MediaWiki Generator string.
prefix: The expected prefix of the string.
Returns:
tuple[int, int, Union[int, str]...]: The version tuple.
"""
if not string.startswith(prefix):
raise errors.MediaWikiVersionError(f'Unknown generator {string}')
version = string[len(prefix):]
def _split_version(version: str) -> Iterator[str]:
"""Split a version string into segments.
Args:
version (str): The version string (without the prefix).
Yields:
str: The individual segments of the version string.
"""
current_segment = ''
for curr_char in version:
if curr_char in "-+_.":
yield current_segment
current_segment = ''
elif current_segment and (
(current_segment[-1].isdigit() and curr_char.isalpha())
or (current_segment[-1].isalpha() and curr_char.isdigit())
):
yield current_segment
current_segment = curr_char
else:
current_segment += curr_char
yield current_segment
version_tuple = tuple(
int(segment) if segment.isdigit() else segment
for segment in _split_version(version)
) # type: Tuple[Union[int, str], ...]
if len(version_tuple) < 2:
raise errors.MediaWikiVersionError(f'Unknown MediaWiki {".".join(version)}')
# Ensure the major and minor version components are integers.
# Non-integer values for these components are not supported and will
# cause comparison issues.
if not all(isinstance(segment, int) for segment in version_tuple[:2]):
raise errors.MediaWikiVersionError(
f'Unknown MediaWiki {".".join(version)}. '
'Major and minor version must be integers.'
)
return version_tuple
default_namespaces = {
0: '', 1: 'Talk', 2: 'User', 3: 'User talk', 4: 'Project',
5: 'Project talk', 6: 'Image', 7: 'Image talk', 8: 'MediaWiki',
9: 'MediaWiki talk', 10: 'Template', 11: 'Template talk', 12: 'Help',
13: 'Help talk', 14: 'Category', 15: 'Category talk',
-1: 'Special', -2: 'Media'
}
def __repr__(self) -> str:
return f"<{self.__class__.__name__} object '{self.host}{self.path}'>"
def get(self, action: str, *args: Tuple[str, Any], **kwargs: Any) -> Dict[str, Any]:
"""Perform a generic API call using GET.
This is just a shorthand for calling api() with http_method='GET'.
All arguments will be passed on.
Args:
action: The MediaWiki API action to be performed.
*args: Tupled key-value pairs to be passed to the `api.php` script
as data. In most cases, it is preferable to pass these as
keyword arguments instead. This can be useful when the
parameter name is a reserved Python keyword (e.g. `from`).
**kwargs: Arguments to be passed to the API call.
Returns:
The raw response from the API call, as a dictionary.
"""
return self.api(action, 'GET', *args, **kwargs)
def post(self, action: str, *args: Tuple[str, Any], **kwargs: Any) -> Dict[str, Any]:
"""Perform a generic API call using POST.
This is just a shorthand for calling api() with http_method='POST'.
All arguments will be passed on.
Args:
action: The MediaWiki API action to be performed.
*args: Tupled key-value pairs to be passed to the `api.php` script
as data. In most cases, it is preferable to pass these as
keyword arguments instead. This can be useful when the
parameter name is a reserved Python keyword (e.g. `from`).
**kwargs: Arguments to be passed to the API call.
Returns:
The raw response from the API call, as a dictionary.
"""
return self.api(action, 'POST', *args, **kwargs)
def api(
self,
action: str,
http_method: str = 'POST',
*args: Tuple[str, Any],
**kwargs: Any
) -> Dict[str, Any]:
"""Perform a generic API call and handle errors.
All arguments will be passed on.
Args:
action: The MediaWiki API action to be performed.
http_method: The HTTP method to use.
*args: Tupled key-value pairs to be passed to the `api.php` script
as data. In most cases, it is preferable to pass these as
keyword arguments instead. This can be useful when the
parameter name is a reserved Python keyword (e.g. `from`).
**kwargs: Arguments to be passed to the API call.
Example:
To get coordinates from the GeoData MediaWiki extension at English Wikipedia:
>>> site = Site('en.wikipedia.org')
>>> result = site.api('query', prop='coordinates', titles='Oslo|Copenhagen')
>>> for page in result['query']['pages'].values():
... if 'coordinates' in page:
... title = page['title']
... lat = page['coordinates'][0]['lat']
... lon = page['coordinates'][0]['lon']
... print(f'{title} {lat} {lon}')
Oslo 59.95 10.75
Copenhagen 55.6761 12.5683
Returns:
The raw response from the API call, as a dictionary.
"""
kwargs.update(args)
# this enables new-style continuation in mediawiki 1.21
# through 1.25, can be dropped when we bump baseline to 1.26
if action == 'query' and 'continue' not in kwargs:
kwargs['continue'] = ''
if action == 'query':
if 'meta' in kwargs:
kwargs['meta'] += '|userinfo'
else:
kwargs['meta'] = 'userinfo'
if 'uiprop' in kwargs:
kwargs['uiprop'] += '|blockinfo|hasmsg'
else:
kwargs['uiprop'] = 'blockinfo|hasmsg'
sleeper = self.sleepers.make()
while True:
info = self.raw_api(action, http_method, **kwargs)
if not info:
info = {}
if self.handle_api_result(info, sleeper=sleeper):
return info
def handle_api_result(
self,
info: Mapping[str, Any],
kwargs: Optional[Mapping[str, Any]] = None,
sleeper: Optional['Sleeper'] = None
) -> bool:
"""Checks the given API response, raising an appropriate exception or sleeping if
necessary.
Args:
info: The API result.
kwargs: Additional arguments to be passed when raising an
:class:`errors.APIError`.
sleeper: A :class:`~sleep.Sleeper` instance to use when sleeping.
Returns:
`False` if the given API response contains an exception, else `True`.
"""
if sleeper is None:
sleeper = self.sleepers.make()
try:
userinfo = info['query']['userinfo']
except KeyError:
userinfo = {}
if 'blockedby' in userinfo:
self.blocked = (userinfo['blockedby'], userinfo.get('blockreason', ''))
else:
self.blocked = False
self.hasmsg = 'messages' in userinfo
if userinfo:
self.logged_in = 'anon' not in userinfo
if 'warnings' in info:
for module, warning in info['warnings'].items():
if '*' in warning:
log.warning(warning['*'])
if 'error' in info:
if info['error'].get('code') in {'internal_api_error_DBConnectionError',
'internal_api_error_DBQueryError'}:
sleeper.sleep()
return False
# cope with https://phabricator.wikimedia.org/T106066
if (
info['error'].get('code') == 'mwoauth-invalid-authorization'
and 'Nonce already used' in info['error'].get('info')
):
log.warning('Retrying due to nonce error, see'
'https://phabricator.wikimedia.org/T106066')
sleeper.sleep()
return False
if 'query' in info['error']:
# Semantic Mediawiki does not follow the standard error format
raise errors.APIError(None, info['error']['query'], kwargs)
if '*' in info['error']:
raise errors.APIError(info['error']['code'],
info['error']['info'], info['error']['*'])
raise errors.APIError(info['error']['code'],
info['error']['info'], kwargs)
return True
@staticmethod
def _query_string(*args: Tuple[str, Any], **kwargs: Any) -> Dict[str, Any]:
kwargs.update(args)
qs1 = [
(k, v) for k, v in kwargs.items() if k not in {'wpEditToken', 'token'}
]
qs2 = [
(k, v) for k, v in kwargs.items() if k in {'wpEditToken', 'token'}
]
return OrderedDict(qs1 + qs2)
def raw_call(
self,
script: str,
data: Mapping[str, Any],
files: Optional[Mapping[str, Union[BinaryIO, Tuple[str, BinaryIO]]]] = None,
retry_on_error: bool = True,
http_method: str = 'POST'
) -> str:
"""
Perform a generic request and return the raw text.
In the event of a network problem, or an HTTP response with status code 5XX,
we'll wait and retry the configured number of times before giving up
if `retry_on_error` is True.
`requests.exceptions.HTTPError` is still raised directly for
HTTP responses with status codes in the 4XX range, and invalid
HTTP responses.
Args:
script: Script name, usually 'api'.
data: Post data
files: Files to upload
retry_on_error: Retry on connection error
http_method: The HTTP method, defaults to 'POST'
Returns:
The raw text response.
Raises:
errors.MaximumRetriesExceeded: The API request failed and the maximum number
of retries was exceeded.
requests.exceptions.HTTPError: Received an invalid HTTP response, or a status
code in the 4xx range.
requests.exceptions.ConnectionError: Encountered an unexpected error while
performing the API request.
requests.exceptions.Timeout: The API request timed out.
"""
headers = {}
if self.compress:
headers['Accept-Encoding'] = 'gzip'
sleeper = self.sleepers.make((script, data))
scheme = self.scheme
host = self.host
if isinstance(host, (list, tuple)): # type: ignore[unreachable]
warnings.warn( # type: ignore[unreachable]
'Specifying host as a tuple is deprecated as of mwclient 0.10.1. '
+ 'Please use the new scheme argument instead.',
DeprecationWarning
)
scheme, host = host
url = f'{scheme}://{host}{self.path}{script}{self.ext}'
while True:
toraise = None # type: Optional[Union[requests.RequestException, str]]
wait_time = 0
args = {'files': files, 'headers': headers} # type: Dict[str, Any]
for k, v in self.requests.items():
args[k] = v
if http_method == 'GET':
args['params'] = data
else:
args['data'] = data
try:
stream = self.connection.request(http_method, url, **args)
if stream.headers.get('x-database-lag'):
wait_time = int(
stream.headers.get('retry-after') # type: ignore[arg-type]
)
log.warning('Database lag exceeds max lag. '
'Waiting for %d seconds', wait_time)
# fall through to the sleep
elif stream.status_code == 200:
return stream.text
elif (
(stream.status_code < 500 or stream.status_code > 599)
and stream.status_code != 429 # 429 Too Many Requests is retryable
):
stream.raise_for_status()
else:
if not retry_on_error:
stream.raise_for_status()
log.warning('Received %d response: %s. Retrying in a moment.',
stream.status_code, stream.text)
toraise = "stream"
# fall through to the sleep
except (
requests.exceptions.ConnectionError,
requests.exceptions.Timeout
) as err:
# In the event of a network problem
# (e.g. DNS failure, refused connection, etc),
# Requests will raise a ConnectionError exception.
if not retry_on_error:
raise
log.warning('Connection error. Retrying in a moment.')
toraise = err
# proceed to the sleep
# all retry paths come here
try:
sleeper.sleep(wait_time)
except errors.MaximumRetriesExceeded:
if toraise == "stream":
stream.raise_for_status()
elif toraise and isinstance(toraise, BaseException):
raise toraise
else:
raise
def raw_api(
self,
action: str,
http_method: str = 'POST',
retry_on_error: bool = True,
*args: Tuple[str, Any],
**kwargs: Any
) -> Dict[str, Any]:
"""Send a call to the API.
Args:
action: The MediaWiki API action to perform.
http_method: The HTTP method to use in the request.
retry_on_error: Whether to retry API call on connection errors.
*args: Tupled key-value pairs to be passed to the `api.php` script
as data. In most cases, it is preferable to pass these as
keyword arguments instead. This can be useful when the
parameter name is a reserved Python keyword (e.g. `from`).
**kwargs: Arguments to be passed to the `api.php` script as data.
Returns:
The API response.
Raises:
errors.APIDisabledError: The MediaWiki API is disabled for this instance.
errors.InvalidResponse: The API response could not be decoded from JSON.
errors.MaximumRetriesExceeded: The API request failed and the maximum number
of retries was exceeded.
requests.exceptions.HTTPError: Received an invalid HTTP response, or a status
code in the 4xx range.
requests.exceptions.ConnectionError: Encountered an unexpected error while
performing the API request.
requests.exceptions.Timeout: The API request timed out.
"""
kwargs['action'] = action
kwargs['format'] = 'json'
data = self._query_string(*args, **kwargs)
res = self.raw_call('api', data, retry_on_error=retry_on_error,
http_method=http_method)
try:
return cast(Dict[str, Any], json.loads(res, object_pairs_hook=OrderedDict))
except ValueError:
if res.startswith('MediaWiki API is not enabled for this site.'):
raise errors.APIDisabledError
raise errors.InvalidResponse(res)
def raw_index(
self,
action: str,
http_method: str = 'POST',
*args: Tuple[str, Any],
**kwargs: Any
) -> str:
"""Sends a call to index.php rather than the API.
Args:
action: The MediaWiki API action to perform.
http_method: The HTTP method to use in the request.
*args: Tupled key-value pairs to be passed to the `index.php`
script as data. In most cases, it is preferable to pass these
as keyword arguments instead. This can be useful when the
parameter name is a reserved Python keyword (e.g. `from`).
**kwargs: Arguments to be passed to the `index.php` script as data.
Returns:
The API response.
Raises:
errors.MaximumRetriesExceeded: The API request failed and the maximum number
of retries was exceeded.
requests.exceptions.HTTPError: Received an invalid HTTP response, or a status
code in the 4xx range.
requests.exceptions.ConnectionError: Encountered an unexpected error while
performing the API request.
requests.exceptions.Timeout: The API request timed out.
"""
kwargs['action'] = action
kwargs['maxlag'] = self.max_lag
data = self._query_string(*args, **kwargs)
return self.raw_call('index', data, http_method=http_method)
def require(
self,
major: int,
minor: int,
revision: Optional[int] = None,
raise_error: bool = True
) -> Optional[bool]:
"""Check whether the current wiki matches the required version.
Args:
major: The required major version.
minor: The required minor version.
revision: The required revision.
raise_error: Whether to throw an error if the version of the current wiki is
below the required version. Defaults to `True`.
Returns:
`False` if the version of the current wiki is below the required version, else
`True`. If `raise_error` is `False` and the version is below the required
version, `None` is returned.
Raises:
errors.MediaWikiVersionError: The current wiki is below the required version
and `raise_error=True`.
RuntimeError: It `raise_error` is `None` and the `version` attribute is unset
This is usually done automatically on construction of the :class:`Site`,
unless `do_init=False` is passed to the constructor. After instantiation,
the :meth:`~Site.site_init` functon can be used to retrieve and set the
`version`.
NotImplementedError: If the `revision` argument was passed. The logic for this
is currently unimplemented.
"""
if self.version is None:
if raise_error is None:
warnings.warn( # type: ignore[unreachable]
'Passing raise_error=None to require is deprecated and will be '
'removed in a future version. Use raise_error=False instead.',
DeprecationWarning
)
return None
elif raise_error is False:
return None
else:
# FIXME: Replace this with a specific error
raise RuntimeError(f'Site {repr(self)} has not yet been initialized')
if revision is None:
if self.version[:2] >= (major, minor):
return True
elif raise_error:
raise errors.MediaWikiVersionError(
f'Requires version {major}.{minor}, '
f'current version is {self.version[0]}.{self.version[1]}')
else:
return False
else:
raise NotImplementedError
# Actions
def email(
self, user: str, text: str, subject: str, cc: bool = False
) -> Dict[str, Any]:
"""
Send email to a specified user on the wiki.
>>> try:
... site.email('SomeUser', 'Some message', 'Some subject')
... except mwclient.errors.NoSpecifiedEmail:
... print('User does not accept email, or has no email address.')
API doc: https://www.mediawiki.org/wiki/API:Email
Args:
user: Username of the recipient
text: Body of the email
subject: Subject of the email
cc: True to send a copy of the email to yourself (default is False)
Returns:
Dictionary of the JSON response
Raises:
NoSpecifiedEmail (mwclient.errors.NoSpecifiedEmail): User doesn't accept email
EmailError (mwclient.errors.EmailError): Other email errors
"""
token = self.get_token('email')
try:
info = self.post('emailuser', target=user, subject=subject,
text=text, ccme=cc, token=token)
except errors.APIError as e:
if e.args[0] == 'noemail':
raise errors.NoSpecifiedEmail(user, e.args[1])
raise errors.EmailError(*e) # type: ignore[misc]
return info
def login(
self,
username: Optional[str] = None,
password: Optional[str] = None,
cookies: Optional[Cookies] = None,
domain: Optional[str] = None
) -> None:
"""
Login to the wiki using a username and bot password. The method returns
nothing if the login was successful, but raises and error if it was not.
If you use mediawiki >= 1.27 and try to login with normal account
(not botpassword account), you should use `clientlogin` instead, because login
action is deprecated since 1.27 with normal account and will stop
working in the near future. See these pages to learn more:
- https://www.mediawiki.org/wiki/API:Login and
- https://www.mediawiki.org/wiki/Manual:Bot_passwords
Note: at least until v1.33.1, botpasswords accounts seem to not have
"userrights" permission. If you need to update user's groups,
this permission is required so you must use `client login`
with a user who has userrights permission (a bureaucrat for eg.).
Args:
username: MediaWiki username
password: MediaWiki password
cookies: Custom cookies to include with the log-in request.
domain: Sends domain name for authentication; used by some MediaWiki plug-ins
like the 'LDAP Authentication' extension.
Raises:
LoginError (mwclient.errors.LoginError): Login failed, the reason can be
obtained from e.code and e.info (where e is the exception object) and
will be one of the API:Login errors. The most common error code is
"Failed", indicating a wrong username or password.
MaximumRetriesExceeded: API call to log in failed and was retried until all
retries were exhausted. This will not occur if the credentials are merely
incorrect. See MaximumRetriesExceeded for possible reasons.
APIError: An API error occurred. Rare, usually indicates an internal server
error.
"""
if username and password:
self.credentials = (username, password, domain)
if cookies:
self.connection.cookies.update(cookies)
if self.credentials:
sleeper = self.sleepers.make()
kwargs = {
'lgname': self.credentials[0],
'lgpassword': self.credentials[1]
}
if self.credentials[2]:
kwargs['lgdomain'] = self.credentials[2]
# Try to login using the scheme for MW 1.27+. If the wiki is read protected,
# it is not possible to get the wiki version upfront using the API, so we just
# have to try. If the attempt fails, we try the old method.
try:
kwargs['lgtoken'] = self.get_token('login')
except (errors.APIError, KeyError):
log.debug('Failed to get login token, MediaWiki is older than 1.27.')
while True:
login = self.post('login', **kwargs)
if login['login']['result'] == 'Success':
break
elif login['login']['result'] == 'NeedToken':
kwargs['lgtoken'] = login['login']['token']
elif login['login']['result'] == 'Throttled':
sleeper.sleep(int(login['login'].get('wait', 5)))
else:
raise errors.LoginError(self, login['login']['result'],
login['login']['reason'])
self.site_init()
def clientlogin(self, cookies: Optional[Cookies] = None, **kwargs: Any) -> Any:
"""
Login to the wiki using a username and password. The method returns
True if it's a success or the returned response if it's a multi-steps
login process you started. In case of failure it raises some Errors.
Example for classic username / password clientlogin request:
>>> try:
... site.clientlogin(username='myusername', password='secret')
... except mwclient.errors.LoginError as e:
... print(f'Could not login to MediaWiki: {e}' )
Args:
cookies: Custom cookies to include with the log-in request.
**kwargs: Custom vars used for clientlogin as:
- loginmergerequestfields
- loginpreservestate
- loginreturnurl,
- logincontinue
- logintoken
- *: additional params depending on the available auth requests.
to log with classic username / password, you need to add
`username` and `password`
See https://www.mediawiki.org/wiki/API:Login#Method_2._clientlogin
Returns:
bool | dict: True if login was successful, or the response if it's a
multi-steps login process you started.
Raises:
LoginError (mwclient.errors.LoginError): Login failed, the reason can be
obtained from e.code and e.info (where e is the exception object) and
will be one of the API:Login errors. The most common error code is
"Failed", indicating a wrong username or password.
MaximumRetriesExceeded: API call to log in failed and was retried until all
retries were exhausted. This will not occur if the credentials are merely
incorrect. See MaximumRetriesExceeded for possible reasons.
APIError: An API error occurred. Rare, usually indicates an internal server
error.
"""
self.require(1, 27)
if cookies:
self.connection.cookies.update(cookies)
if not kwargs:
# TODO: Check if we should raise an error here. It's not clear what the
# expected behavior is when no kwargs are passed. To update the
# cookies, the user can update the connection object directly.
return
if 'logintoken' not in kwargs:
kwargs['logintoken'] = self.get_token('login')
if 'logincontinue' not in kwargs and 'loginreturnurl' not in kwargs:
kwargs['loginreturnurl'] = f'{self.scheme}://{self.host}'
response = self.post('clientlogin', **kwargs)
status = response['clientlogin'].get('status')
if status == 'PASS':
self.site_init()
return True
elif status in ('UI', 'REDIRECT'):
return response['clientlogin']
else:
raise errors.LoginError(self, status, response['clientlogin'].get('message'))
def get_token(
self, type: str, force: bool = False, title: Optional[str] = None
) -> str:
"""Request a MediaWiki access token of the given `type`.
Args:
type: The type of token to request.
force: Force the request of a new token, even if a token of that type has
already been cached.
title: The page title for which to request a token. Only used for MediaWiki
versions below 1.24.
Returns:
A MediaWiki token of the requested `type`.
Raises:
errors.APIError: A token of the given type could not be retrieved.
"""
if self.version is None or self.require(1, 24, raise_error=False):
# The 'csrf' (cross-site request forgery) token introduced in 1.24 replaces
# the majority of older tokens, like edittoken and movetoken.
if type not in {
'watch',
'patrol',
'rollback',
'userrights',
'login',
'createaccount',
}:
type = 'csrf'
if type not in self.tokens:
self.tokens[type] = '0'
if self.tokens.get(type, '0') == '0' or force:
if self.version is None or self.require(1, 24, raise_error=False):
# We use raw_api() rather than api() because api() is adding "userinfo"
# to the query and this raises a readapideniederror if the wiki is read
# protected, and we're trying to fetch a login token.
info = self.raw_api('query', 'GET', meta='tokens', type=type)
self.handle_api_result(info)
# Note that for read protected wikis, we don't know the version when
# fetching the login token. If it's < 1.27, the request below will
# raise a KeyError that we should catch.
self.tokens[type] = info['query']['tokens'][f'{type}token']