blob: e7bbc853c078675c58832e34ec3a4f8df26a755d [file] [log] [blame]
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001"""An NNTP client class based on:
2- RFC 977: Network News Transfer Protocol
3- RFC 2980: Common NNTP Extensions
4- RFC 3977: Network News Transfer Protocol (version 2)
Guido van Rossumc629d341992-11-05 10:43:02 +00005
Guido van Rossum54f22ed2000-02-04 15:10:34 +00006Example:
Guido van Rossumc629d341992-11-05 10:43:02 +00007
Guido van Rossum54f22ed2000-02-04 15:10:34 +00008>>> from nntplib import NNTP
9>>> s = NNTP('news')
10>>> resp, count, first, last, name = s.group('comp.lang.python')
Guido van Rossum7131f842007-02-09 20:13:25 +000011>>> print('Group', name, 'has', count, 'articles, range', first, 'to', last)
Guido van Rossum54f22ed2000-02-04 15:10:34 +000012Group comp.lang.python has 51 articles, range 5770 to 5821
Christian Heimes933238a2008-11-05 19:44:21 +000013>>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last))
Guido van Rossum54f22ed2000-02-04 15:10:34 +000014>>> resp = s.quit()
15>>>
Guido van Rossumc629d341992-11-05 10:43:02 +000016
Guido van Rossum54f22ed2000-02-04 15:10:34 +000017Here 'resp' is the server response line.
18Error responses are turned into exceptions.
19
20To post an article from a file:
Christian Heimes933238a2008-11-05 19:44:21 +000021>>> f = open(filename, 'rb') # file containing article, including header
Guido van Rossum54f22ed2000-02-04 15:10:34 +000022>>> resp = s.post(f)
23>>>
24
25For descriptions of all methods, read the comments in the code below.
26Note that all arguments and return values representing article numbers
27are strings, not numbers, since they are rarely used for calculations.
28"""
29
30# RFC 977 by Brian Kantor and Phil Lapsley.
31# xover, xgtitle, xpath, date methods by Kevan Heydon
Guido van Rossum8421c4e1995-09-22 00:52:38 +000032
Antoine Pitrou69ab9512010-09-29 15:03:40 +000033# Incompatible changes from the 2.x nntplib:
34# - all commands are encoded as UTF-8 data (using the "surrogateescape"
35# error handler), except for raw message data (POST, IHAVE)
36# - all responses are decoded as UTF-8 data (using the "surrogateescape"
37# error handler), except for raw message data (ARTICLE, HEAD, BODY)
38# - the `file` argument to various methods is keyword-only
39#
40# - NNTP.date() returns a datetime object
41# - NNTP.newgroups() and NNTP.newnews() take a datetime (or date) object,
42# rather than a pair of (date, time) strings.
43# - NNTP.newgroups() and NNTP.list() return a list of GroupInfo named tuples
44# - NNTP.descriptions() returns a dict mapping group names to descriptions
45# - NNTP.xover() returns a list of dicts mapping field names (header or metadata)
46# to field values; each dict representing a message overview.
47# - NNTP.article(), NNTP.head() and NNTP.body() return a (response, ArticleInfo)
48# tuple.
49# - the "internal" methods have been marked private (they now start with
50# an underscore)
51
52# Other changes from the 2.x/3.1 nntplib:
53# - automatic querying of capabilities at connect
54# - New method NNTP.getcapabilities()
55# - New method NNTP.over()
56# - New helper function decode_header()
57# - NNTP.post() and NNTP.ihave() accept file objects, bytes-like objects and
58# arbitrary iterables yielding lines.
59# - An extensive test suite :-)
60
61# TODO:
62# - return structured data (GroupInfo etc.) everywhere
63# - support HDR
Guido van Rossumc629d341992-11-05 10:43:02 +000064
65# Imports
Guido van Rossum9694fca1997-10-22 21:00:49 +000066import re
Guido van Rossumc629d341992-11-05 10:43:02 +000067import socket
Antoine Pitrou69ab9512010-09-29 15:03:40 +000068import collections
69import datetime
70import warnings
Steve Dower60419a72019-06-24 08:42:54 -070071import sys
Guido van Rossumc629d341992-11-05 10:43:02 +000072
Antoine Pitrou1cb121e2010-11-09 18:54:37 +000073try:
74 import ssl
Brett Cannoncd171c82013-07-04 17:43:24 -040075except ImportError:
Antoine Pitrou1cb121e2010-11-09 18:54:37 +000076 _have_ssl = False
77else:
78 _have_ssl = True
79
Antoine Pitrou69ab9512010-09-29 15:03:40 +000080from email.header import decode_header as _email_decode_header
81from socket import _GLOBAL_DEFAULT_TIMEOUT
82
83__all__ = ["NNTP",
Berker Peksag96756b62014-09-20 08:53:05 +030084 "NNTPError", "NNTPReplyError", "NNTPTemporaryError",
85 "NNTPPermanentError", "NNTPProtocolError", "NNTPDataError",
Antoine Pitrou69ab9512010-09-29 15:03:40 +000086 "decode_header",
87 ]
Tim Peters2344fae2001-01-15 00:50:52 +000088
Georg Brandl28e78412013-10-27 07:29:47 +010089# maximal line length when calling readline(). This is to prevent
Berker Peksag740c7302014-07-09 20:15:28 +030090# reading arbitrary length lines. RFC 3977 limits NNTP line length to
Georg Brandl28e78412013-10-27 07:29:47 +010091# 512 characters, including CRLF. We have selected 2048 just to be on
92# the safe side.
93_MAXLINE = 2048
94
95
Barry Warsaw9dd78722000-02-10 20:25:53 +000096# Exceptions raised when an error or invalid response is received
97class NNTPError(Exception):
Tim Peters2344fae2001-01-15 00:50:52 +000098 """Base class for all nntplib exceptions"""
99 def __init__(self, *args):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000100 Exception.__init__(self, *args)
Tim Peters2344fae2001-01-15 00:50:52 +0000101 try:
102 self.response = args[0]
103 except IndexError:
104 self.response = 'No response given'
Barry Warsaw9dd78722000-02-10 20:25:53 +0000105
106class NNTPReplyError(NNTPError):
Tim Peters2344fae2001-01-15 00:50:52 +0000107 """Unexpected [123]xx reply"""
108 pass
Barry Warsaw9dd78722000-02-10 20:25:53 +0000109
110class NNTPTemporaryError(NNTPError):
Tim Peters2344fae2001-01-15 00:50:52 +0000111 """4xx errors"""
112 pass
Barry Warsaw9dd78722000-02-10 20:25:53 +0000113
114class NNTPPermanentError(NNTPError):
Tim Peters2344fae2001-01-15 00:50:52 +0000115 """5xx errors"""
116 pass
Barry Warsaw9dd78722000-02-10 20:25:53 +0000117
118class NNTPProtocolError(NNTPError):
Tim Peters2344fae2001-01-15 00:50:52 +0000119 """Response does not begin with [1-5]"""
120 pass
Barry Warsaw9dd78722000-02-10 20:25:53 +0000121
122class NNTPDataError(NNTPError):
Tim Peters2344fae2001-01-15 00:50:52 +0000123 """Error in response data"""
124 pass
Barry Warsaw9dd78722000-02-10 20:25:53 +0000125
Tim Peters2344fae2001-01-15 00:50:52 +0000126
Guido van Rossumc629d341992-11-05 10:43:02 +0000127# Standard port used by NNTP servers
128NNTP_PORT = 119
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000129NNTP_SSL_PORT = 563
Guido van Rossumc629d341992-11-05 10:43:02 +0000130
131# Response numbers that are followed by additional text (e.g. article)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000132_LONGRESP = {
133 '100', # HELP
134 '101', # CAPABILITIES
135 '211', # LISTGROUP (also not multi-line with GROUP)
136 '215', # LIST
137 '220', # ARTICLE
138 '221', # HEAD, XHDR
139 '222', # BODY
140 '224', # OVER, XOVER
141 '225', # HDR
142 '230', # NEWNEWS
143 '231', # NEWGROUPS
144 '282', # XGTITLE
145}
Guido van Rossumc629d341992-11-05 10:43:02 +0000146
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000147# Default decoded value for LIST OVERVIEW.FMT if not supported
148_DEFAULT_OVERVIEW_FMT = [
149 "subject", "from", "date", "message-id", "references", ":bytes", ":lines"]
150
151# Alternative names allowed in LIST OVERVIEW.FMT response
152_OVERVIEW_FMT_ALTERNATIVES = {
153 'bytes': ':bytes',
154 'lines': ':lines',
155}
Guido van Rossumc629d341992-11-05 10:43:02 +0000156
157# Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000158_CRLF = b'\r\n'
159
160GroupInfo = collections.namedtuple('GroupInfo',
161 ['group', 'last', 'first', 'flag'])
162
163ArticleInfo = collections.namedtuple('ArticleInfo',
164 ['number', 'message_id', 'lines'])
Guido van Rossumc629d341992-11-05 10:43:02 +0000165
166
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000167# Helper function(s)
168def decode_header(header_str):
Martin Panter6245cb32016-04-15 02:14:19 +0000169 """Takes a unicode string representing a munged header value
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000170 and decodes it as a (possibly non-ASCII) readable value."""
171 parts = []
172 for v, enc in _email_decode_header(header_str):
173 if isinstance(v, bytes):
174 parts.append(v.decode(enc or 'ascii'))
175 else:
176 parts.append(v)
R David Murray07ea53c2012-06-02 17:56:49 -0400177 return ''.join(parts)
Tim Peters2344fae2001-01-15 00:50:52 +0000178
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000179def _parse_overview_fmt(lines):
180 """Parse a list of string representing the response to LIST OVERVIEW.FMT
181 and return a list of header/metadata names.
182 Raises NNTPDataError if the response is not compliant
183 (cf. RFC 3977, section 8.4)."""
184 fmt = []
185 for line in lines:
186 if line[0] == ':':
187 # Metadata name (e.g. ":bytes")
188 name, _, suffix = line[1:].partition(':')
189 name = ':' + name
190 else:
191 # Header name (e.g. "Subject:" or "Xref:full")
192 name, _, suffix = line.partition(':')
193 name = name.lower()
194 name = _OVERVIEW_FMT_ALTERNATIVES.get(name, name)
195 # Should we do something with the suffix?
196 fmt.append(name)
197 defaults = _DEFAULT_OVERVIEW_FMT
198 if len(fmt) < len(defaults):
199 raise NNTPDataError("LIST OVERVIEW.FMT response too short")
200 if fmt[:len(defaults)] != defaults:
201 raise NNTPDataError("LIST OVERVIEW.FMT redefines default fields")
202 return fmt
203
204def _parse_overview(lines, fmt, data_process_func=None):
Martin Panter7462b6492015-11-02 03:37:02 +0000205 """Parse the response to an OVER or XOVER command according to the
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000206 overview format `fmt`."""
207 n_defaults = len(_DEFAULT_OVERVIEW_FMT)
208 overview = []
209 for line in lines:
210 fields = {}
211 article_number, *tokens = line.split('\t')
212 article_number = int(article_number)
213 for i, token in enumerate(tokens):
214 if i >= len(fmt):
215 # XXX should we raise an error? Some servers might not
216 # support LIST OVERVIEW.FMT and still return additional
217 # headers.
218 continue
219 field_name = fmt[i]
220 is_metadata = field_name.startswith(':')
221 if i >= n_defaults and not is_metadata:
222 # Non-default header names are included in full in the response
Antoine Pitrou4103bc02010-11-03 18:18:43 +0000223 # (unless the field is totally empty)
224 h = field_name + ": "
225 if token and token[:len(h)].lower() != h:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000226 raise NNTPDataError("OVER/XOVER response doesn't include "
227 "names of additional headers")
Antoine Pitrou4103bc02010-11-03 18:18:43 +0000228 token = token[len(h):] if token else None
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000229 fields[fmt[i]] = token
230 overview.append((article_number, fields))
231 return overview
232
233def _parse_datetime(date_str, time_str=None):
234 """Parse a pair of (date, time) strings, and return a datetime object.
235 If only the date is given, it is assumed to be date and time
236 concatenated together (e.g. response to the DATE command).
237 """
238 if time_str is None:
239 time_str = date_str[-6:]
240 date_str = date_str[:-6]
241 hours = int(time_str[:2])
242 minutes = int(time_str[2:4])
243 seconds = int(time_str[4:])
244 year = int(date_str[:-4])
245 month = int(date_str[-4:-2])
246 day = int(date_str[-2:])
247 # RFC 3977 doesn't say how to interpret 2-char years. Assume that
248 # there are no dates before 1970 on Usenet.
249 if year < 70:
250 year += 2000
251 elif year < 100:
252 year += 1900
253 return datetime.datetime(year, month, day, hours, minutes, seconds)
254
255def _unparse_datetime(dt, legacy=False):
256 """Format a date or datetime object as a pair of (date, time) strings
257 in the format required by the NEWNEWS and NEWGROUPS commands. If a
258 date object is passed, the time is assumed to be midnight (00h00).
259
260 The returned representation depends on the legacy flag:
261 * if legacy is False (the default):
262 date has the YYYYMMDD format and time the HHMMSS format
263 * if legacy is True:
264 date has the YYMMDD format and time the HHMMSS format.
265 RFC 3977 compliant servers should understand both formats; therefore,
266 legacy is only needed when talking to old servers.
267 """
268 if not isinstance(dt, datetime.datetime):
269 time_str = "000000"
270 else:
271 time_str = "{0.hour:02d}{0.minute:02d}{0.second:02d}".format(dt)
272 y = dt.year
273 if legacy:
274 y = y % 100
275 date_str = "{0:02d}{1.month:02d}{1.day:02d}".format(y, dt)
276 else:
277 date_str = "{0:04d}{1.month:02d}{1.day:02d}".format(y, dt)
278 return date_str, time_str
279
280
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000281if _have_ssl:
282
Christian Heimes216d4632013-12-02 20:20:11 +0100283 def _encrypt_on(sock, context, hostname):
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000284 """Wrap a socket in SSL/TLS. Arguments:
285 - sock: Socket to wrap
286 - context: SSL context to use for the encrypted connection
287 Returns:
288 - sock: New, encrypted socket.
289 """
290 # Generate a default SSL context if none was passed.
291 if context is None:
Christian Heimes67986f92013-11-23 22:43:47 +0100292 context = ssl._create_stdlib_context()
Benjamin Peterson7243b572014-11-23 17:04:34 -0600293 return context.wrap_socket(sock, server_hostname=hostname)
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000294
295
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000296# The classes themselves
297class _NNTPBase:
298 # UTF-8 is the character set for all NNTP commands and responses: they
299 # are automatically encoded (when sending) and decoded (and receiving)
300 # by this class.
301 # However, some multi-line data blocks can contain arbitrary bytes (for
302 # example, latin-1 or utf-16 data in the body of a message). Commands
303 # taking (POST, IHAVE) or returning (HEAD, BODY, ARTICLE) raw message
304 # data will therefore only accept and produce bytes objects.
305 # Furthermore, since there could be non-compliant servers out there,
306 # we use 'surrogateescape' as the error handler for fault tolerance
307 # and easy round-tripping. This could be useful for some applications
308 # (e.g. NNTP gateways).
309
310 encoding = 'utf-8'
311 errors = 'surrogateescape'
312
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000313 def __init__(self, file, host,
314 readermode=None, timeout=_GLOBAL_DEFAULT_TIMEOUT):
Tim Peters2344fae2001-01-15 00:50:52 +0000315 """Initialize an instance. Arguments:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000316 - file: file-like object (open for read/write in binary mode)
Antoine Pitrou859c4ef2010-11-09 18:58:42 +0000317 - host: hostname of the server
Tim Peters2344fae2001-01-15 00:50:52 +0000318 - readermode: if true, send 'mode reader' command after
319 connecting.
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000320 - timeout: timeout (in seconds) used for socket connections
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000321
Tim Peters2344fae2001-01-15 00:50:52 +0000322 readermode is sometimes necessary if you are connecting to an
323 NNTP server on the local machine and intend to call
Ezio Melotti42da6632011-03-15 05:18:48 +0200324 reader-specific commands, such as `group'. If you get
Tim Peters2344fae2001-01-15 00:50:52 +0000325 unexpected NNTPPermanentErrors, you might need to set
326 readermode.
327 """
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000328 self.host = host
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000329 self.file = file
Tim Peters2344fae2001-01-15 00:50:52 +0000330 self.debugging = 0
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000331 self.welcome = self._getresp()
Tim Petersdfb673b2001-01-16 07:12:46 +0000332
Antoine Pitrou71135622012-02-14 23:29:34 +0100333 # Inquire about capabilities (RFC 3977).
334 self._caps = None
335 self.getcapabilities()
336
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000337 # 'MODE READER' is sometimes necessary to enable 'reader' mode.
338 # However, the order in which 'MODE READER' and 'AUTHINFO' need to
339 # arrive differs between some NNTP servers. If _setreadermode() fails
340 # with an authorization failed error, it will set this to True;
341 # the login() routine will interpret that as a request to try again
342 # after performing its normal function.
Antoine Pitrou71135622012-02-14 23:29:34 +0100343 # Enable only if we're not already in READER mode anyway.
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000344 self.readermode_afterauth = False
Antoine Pitrou71135622012-02-14 23:29:34 +0100345 if readermode and 'READER' not in self._caps:
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000346 self._setreadermode()
Antoine Pitrou71135622012-02-14 23:29:34 +0100347 if not self.readermode_afterauth:
348 # Capabilities might have changed after MODE READER
349 self._caps = None
350 self.getcapabilities()
Tim Petersdfb673b2001-01-16 07:12:46 +0000351
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000352 # RFC 4642 2.2.2: Both the client and the server MUST know if there is
353 # a TLS session active. A client MUST NOT attempt to start a TLS
354 # session if a TLS session is already active.
355 self.tls_on = False
356
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000357 # Log in and encryption setup order is left to subclasses.
358 self.authenticated = False
Guido van Rossumc629d341992-11-05 10:43:02 +0000359
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000360 def __enter__(self):
361 return self
362
363 def __exit__(self, *args):
364 is_connected = lambda: hasattr(self, "file")
365 if is_connected():
366 try:
367 self.quit()
Andrew Svetlov0832af62012-12-18 23:10:48 +0200368 except (OSError, EOFError):
Giampaolo Rodolà424298a2011-03-03 18:34:06 +0000369 pass
370 finally:
371 if is_connected():
372 self._close()
373
Tim Peters2344fae2001-01-15 00:50:52 +0000374 def getwelcome(self):
375 """Get the welcome message from the server
376 (this is read and squirreled away by __init__()).
377 If the response code is 200, posting is allowed;
378 if it 201, posting is not allowed."""
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000379
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000380 if self.debugging: print('*welcome*', repr(self.welcome))
Tim Peters2344fae2001-01-15 00:50:52 +0000381 return self.welcome
Guido van Rossumc629d341992-11-05 10:43:02 +0000382
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000383 def getcapabilities(self):
384 """Get the server capabilities, as read by __init__().
385 If the CAPABILITIES command is not supported, an empty dict is
386 returned."""
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000387 if self._caps is None:
388 self.nntp_version = 1
389 self.nntp_implementation = None
390 try:
391 resp, caps = self.capabilities()
Antoine Pitrou54411c12012-02-12 19:14:17 +0100392 except (NNTPPermanentError, NNTPTemporaryError):
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000393 # Server doesn't support capabilities
394 self._caps = {}
395 else:
396 self._caps = caps
397 if 'VERSION' in caps:
398 # The server can advertise several supported versions,
399 # choose the highest.
400 self.nntp_version = max(map(int, caps['VERSION']))
401 if 'IMPLEMENTATION' in caps:
402 self.nntp_implementation = ' '.join(caps['IMPLEMENTATION'])
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000403 return self._caps
404
Tim Peters2344fae2001-01-15 00:50:52 +0000405 def set_debuglevel(self, level):
406 """Set the debugging level. Argument 'level' means:
407 0: no debugging output (default)
408 1: print commands and responses but not body text etc.
409 2: also print raw lines read and sent before stripping CR/LF"""
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000410
Tim Peters2344fae2001-01-15 00:50:52 +0000411 self.debugging = level
412 debug = set_debuglevel
Guido van Rossumc629d341992-11-05 10:43:02 +0000413
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000414 def _putline(self, line):
415 """Internal: send one line to the server, appending CRLF.
416 The `line` must be a bytes-like object."""
Steve Dower60419a72019-06-24 08:42:54 -0700417 sys.audit("nntplib.NNTP.putline", self, line)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000418 line = line + _CRLF
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000419 if self.debugging > 1: print('*put*', repr(line))
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000420 self.file.write(line)
421 self.file.flush()
Guido van Rossumc629d341992-11-05 10:43:02 +0000422
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000423 def _putcmd(self, line):
424 """Internal: send one command to the server (through _putline()).
Martin Panter6245cb32016-04-15 02:14:19 +0000425 The `line` must be a unicode string."""
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000426 if self.debugging: print('*cmd*', repr(line))
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000427 line = line.encode(self.encoding, self.errors)
428 self._putline(line)
Guido van Rossumc629d341992-11-05 10:43:02 +0000429
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000430 def _getline(self, strip_crlf=True):
431 """Internal: return one line from the server, stripping _CRLF.
432 Raise EOFError if the connection is closed.
433 Returns a bytes object."""
Georg Brandl28e78412013-10-27 07:29:47 +0100434 line = self.file.readline(_MAXLINE +1)
435 if len(line) > _MAXLINE:
436 raise NNTPDataError('line too long')
Tim Peters2344fae2001-01-15 00:50:52 +0000437 if self.debugging > 1:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000438 print('*get*', repr(line))
Tim Peters2344fae2001-01-15 00:50:52 +0000439 if not line: raise EOFError
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000440 if strip_crlf:
441 if line[-2:] == _CRLF:
442 line = line[:-2]
443 elif line[-1:] in _CRLF:
444 line = line[:-1]
Tim Peters2344fae2001-01-15 00:50:52 +0000445 return line
Guido van Rossumc629d341992-11-05 10:43:02 +0000446
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000447 def _getresp(self):
Tim Peters2344fae2001-01-15 00:50:52 +0000448 """Internal: get a response from the server.
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000449 Raise various errors if the response indicates an error.
Martin Panter6245cb32016-04-15 02:14:19 +0000450 Returns a unicode string."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000451 resp = self._getline()
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000452 if self.debugging: print('*resp*', repr(resp))
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000453 resp = resp.decode(self.encoding, self.errors)
Tim Peters2344fae2001-01-15 00:50:52 +0000454 c = resp[:1]
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000455 if c == '4':
Tim Peters2344fae2001-01-15 00:50:52 +0000456 raise NNTPTemporaryError(resp)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000457 if c == '5':
Tim Peters2344fae2001-01-15 00:50:52 +0000458 raise NNTPPermanentError(resp)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000459 if c not in '123':
Tim Peters2344fae2001-01-15 00:50:52 +0000460 raise NNTPProtocolError(resp)
461 return resp
Guido van Rossumc629d341992-11-05 10:43:02 +0000462
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000463 def _getlongresp(self, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000464 """Internal: get a response plus following text from the server.
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000465 Raise various errors if the response indicates an error.
466
Martin Panter6245cb32016-04-15 02:14:19 +0000467 Returns a (response, lines) tuple where `response` is a unicode
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000468 string and `lines` is a list of bytes objects.
469 If `file` is a file-like object, it must be open in binary mode.
470 """
Guido van Rossumd1d584f2001-10-01 13:46:55 +0000471
472 openedFile = None
473 try:
474 # If a string was passed then open a file with that name
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000475 if isinstance(file, (str, bytes)):
476 openedFile = file = open(file, "wb")
Guido van Rossumd1d584f2001-10-01 13:46:55 +0000477
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000478 resp = self._getresp()
479 if resp[:3] not in _LONGRESP:
Guido van Rossumd1d584f2001-10-01 13:46:55 +0000480 raise NNTPReplyError(resp)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000481
482 lines = []
483 if file is not None:
484 # XXX lines = None instead?
485 terminators = (b'.' + _CRLF, b'.\n')
486 while 1:
487 line = self._getline(False)
488 if line in terminators:
489 break
490 if line.startswith(b'..'):
491 line = line[1:]
492 file.write(line)
493 else:
494 terminator = b'.'
495 while 1:
496 line = self._getline()
497 if line == terminator:
498 break
499 if line.startswith(b'..'):
500 line = line[1:]
501 lines.append(line)
Guido van Rossumd1d584f2001-10-01 13:46:55 +0000502 finally:
503 # If this method created the file, then it must close it
504 if openedFile:
505 openedFile.close()
506
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000507 return resp, lines
Guido van Rossumc629d341992-11-05 10:43:02 +0000508
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000509 def _shortcmd(self, line):
510 """Internal: send a command and get the response.
511 Same return value as _getresp()."""
512 self._putcmd(line)
513 return self._getresp()
Guido van Rossumc629d341992-11-05 10:43:02 +0000514
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000515 def _longcmd(self, line, file=None):
516 """Internal: send a command and get the response plus following text.
517 Same return value as _getlongresp()."""
518 self._putcmd(line)
519 return self._getlongresp(file)
Guido van Rossumc629d341992-11-05 10:43:02 +0000520
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000521 def _longcmdstring(self, line, file=None):
522 """Internal: send a command and get the response plus following text.
523 Same as _longcmd() and _getlongresp(), except that the returned `lines`
524 are unicode strings rather than bytes objects.
525 """
526 self._putcmd(line)
527 resp, list = self._getlongresp(file)
528 return resp, [line.decode(self.encoding, self.errors)
529 for line in list]
530
531 def _getoverviewfmt(self):
532 """Internal: get the overview format. Queries the server if not
533 already done, else returns the cached value."""
534 try:
535 return self._cachedoverviewfmt
536 except AttributeError:
537 pass
538 try:
539 resp, lines = self._longcmdstring("LIST OVERVIEW.FMT")
540 except NNTPPermanentError:
541 # Not supported by server?
542 fmt = _DEFAULT_OVERVIEW_FMT[:]
543 else:
544 fmt = _parse_overview_fmt(lines)
545 self._cachedoverviewfmt = fmt
546 return fmt
547
548 def _grouplist(self, lines):
549 # Parse lines into "group last first flag"
550 return [GroupInfo(*line.split()) for line in lines]
551
552 def capabilities(self):
553 """Process a CAPABILITIES command. Not supported by all servers.
Tim Peters2344fae2001-01-15 00:50:52 +0000554 Return:
555 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000556 - caps: a dictionary mapping capability names to lists of tokens
557 (for example {'VERSION': ['2'], 'OVER': [], LIST: ['ACTIVE', 'HEADERS'] })
558 """
559 caps = {}
560 resp, lines = self._longcmdstring("CAPABILITIES")
561 for line in lines:
562 name, *tokens = line.split()
563 caps[name] = tokens
564 return resp, caps
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000565
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000566 def newgroups(self, date, *, file=None):
567 """Process a NEWGROUPS command. Arguments:
568 - date: a date or datetime object
569 Return:
570 - resp: server response if successful
571 - list: list of newsgroup names
572 """
573 if not isinstance(date, (datetime.date, datetime.date)):
574 raise TypeError(
575 "the date parameter must be a date or datetime object, "
576 "not '{:40}'".format(date.__class__.__name__))
577 date_str, time_str = _unparse_datetime(date, self.nntp_version < 2)
578 cmd = 'NEWGROUPS {0} {1}'.format(date_str, time_str)
579 resp, lines = self._longcmdstring(cmd, file)
580 return resp, self._grouplist(lines)
Guido van Rossumc629d341992-11-05 10:43:02 +0000581
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000582 def newnews(self, group, date, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000583 """Process a NEWNEWS command. Arguments:
584 - group: group name or '*'
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000585 - date: a date or datetime object
Tim Peters2344fae2001-01-15 00:50:52 +0000586 Return:
587 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000588 - list: list of message ids
589 """
590 if not isinstance(date, (datetime.date, datetime.date)):
591 raise TypeError(
592 "the date parameter must be a date or datetime object, "
593 "not '{:40}'".format(date.__class__.__name__))
594 date_str, time_str = _unparse_datetime(date, self.nntp_version < 2)
595 cmd = 'NEWNEWS {0} {1} {2}'.format(group, date_str, time_str)
596 return self._longcmdstring(cmd, file)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000597
Antoine Pitrou08eeada2010-11-04 21:36:15 +0000598 def list(self, group_pattern=None, *, file=None):
599 """Process a LIST or LIST ACTIVE command. Arguments:
600 - group_pattern: a pattern indicating which groups to query
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000601 - file: Filename string or file object to store the result in
602 Returns:
Tim Peters2344fae2001-01-15 00:50:52 +0000603 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000604 - list: list of (group, last, first, flag) (strings)
605 """
Antoine Pitrou08eeada2010-11-04 21:36:15 +0000606 if group_pattern is not None:
607 command = 'LIST ACTIVE ' + group_pattern
608 else:
609 command = 'LIST'
610 resp, lines = self._longcmdstring(command, file)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000611 return resp, self._grouplist(lines)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000612
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000613 def _getdescriptions(self, group_pattern, return_all):
614 line_pat = re.compile('^(?P<group>[^ \t]+)[ \t]+(.*)$')
615 # Try the more std (acc. to RFC2980) LIST NEWSGROUPS first
616 resp, lines = self._longcmdstring('LIST NEWSGROUPS ' + group_pattern)
617 if not resp.startswith('215'):
618 # Now the deprecated XGTITLE. This either raises an error
619 # or succeeds with the same output structure as LIST
620 # NEWSGROUPS.
621 resp, lines = self._longcmdstring('XGTITLE ' + group_pattern)
622 groups = {}
623 for raw_line in lines:
624 match = line_pat.search(raw_line.strip())
625 if match:
626 name, desc = match.group(1, 2)
627 if not return_all:
628 return desc
629 groups[name] = desc
630 if return_all:
631 return resp, groups
632 else:
633 # Nothing found
634 return ''
Guido van Rossumc629d341992-11-05 10:43:02 +0000635
Martin v. Löwiscc0f9322004-07-26 12:40:50 +0000636 def description(self, group):
Martin v. Löwiscc0f9322004-07-26 12:40:50 +0000637 """Get a description for a single group. If more than one
638 group matches ('group' is a pattern), return the first. If no
639 group matches, return an empty string.
640
641 This elides the response code from the server, since it can
642 only be '215' or '285' (for xgtitle) anyway. If the response
643 code is needed, use the 'descriptions' method.
644
645 NOTE: This neither checks for a wildcard in 'group' nor does
646 it check whether the group actually exists."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000647 return self._getdescriptions(group, False)
Martin v. Löwiscc0f9322004-07-26 12:40:50 +0000648
649 def descriptions(self, group_pattern):
650 """Get descriptions for a range of groups."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000651 return self._getdescriptions(group_pattern, True)
Martin v. Löwiscc0f9322004-07-26 12:40:50 +0000652
Tim Peters2344fae2001-01-15 00:50:52 +0000653 def group(self, name):
654 """Process a GROUP command. Argument:
655 - group: the group name
656 Returns:
657 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000658 - count: number of articles
659 - first: first article number
660 - last: last article number
661 - name: the group name
662 """
663 resp = self._shortcmd('GROUP ' + name)
664 if not resp.startswith('211'):
Tim Peters2344fae2001-01-15 00:50:52 +0000665 raise NNTPReplyError(resp)
Eric S. Raymondb9c24fb2001-02-09 07:02:17 +0000666 words = resp.split()
Tim Peters2344fae2001-01-15 00:50:52 +0000667 count = first = last = 0
668 n = len(words)
669 if n > 1:
670 count = words[1]
671 if n > 2:
672 first = words[2]
673 if n > 3:
674 last = words[3]
675 if n > 4:
Eric S. Raymondb9c24fb2001-02-09 07:02:17 +0000676 name = words[4].lower()
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000677 return resp, int(count), int(first), int(last), name
Guido van Rossumc629d341992-11-05 10:43:02 +0000678
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000679 def help(self, *, file=None):
680 """Process a HELP command. Argument:
681 - file: Filename string or file object to store the result in
Tim Peters2344fae2001-01-15 00:50:52 +0000682 Returns:
683 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000684 - list: list of strings returned by the server in response to the
685 HELP command
686 """
687 return self._longcmdstring('HELP', file)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000688
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000689 def _statparse(self, resp):
690 """Internal: parse the response line of a STAT, NEXT, LAST,
691 ARTICLE, HEAD or BODY command."""
692 if not resp.startswith('22'):
693 raise NNTPReplyError(resp)
694 words = resp.split()
695 art_num = int(words[1])
696 message_id = words[2]
697 return resp, art_num, message_id
698
699 def _statcmd(self, line):
700 """Internal: process a STAT, NEXT or LAST command."""
701 resp = self._shortcmd(line)
702 return self._statparse(resp)
703
704 def stat(self, message_spec=None):
705 """Process a STAT command. Argument:
706 - message_spec: article number or message id (if not specified,
707 the current article is selected)
708 Returns:
709 - resp: server response if successful
710 - art_num: the article number
711 - message_id: the message id
712 """
713 if message_spec:
714 return self._statcmd('STAT {0}'.format(message_spec))
715 else:
716 return self._statcmd('STAT')
Guido van Rossumc629d341992-11-05 10:43:02 +0000717
Tim Peters2344fae2001-01-15 00:50:52 +0000718 def next(self):
719 """Process a NEXT command. No arguments. Return as for STAT."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000720 return self._statcmd('NEXT')
Guido van Rossumc629d341992-11-05 10:43:02 +0000721
Tim Peters2344fae2001-01-15 00:50:52 +0000722 def last(self):
723 """Process a LAST command. No arguments. Return as for STAT."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000724 return self._statcmd('LAST')
Guido van Rossumc629d341992-11-05 10:43:02 +0000725
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000726 def _artcmd(self, line, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000727 """Internal: process a HEAD, BODY or ARTICLE command."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000728 resp, lines = self._longcmd(line, file)
729 resp, art_num, message_id = self._statparse(resp)
730 return resp, ArticleInfo(art_num, message_id, lines)
Guido van Rossumc629d341992-11-05 10:43:02 +0000731
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000732 def head(self, message_spec=None, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000733 """Process a HEAD command. Argument:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000734 - message_spec: article number or message id
735 - file: filename string or file object to store the headers in
Tim Peters2344fae2001-01-15 00:50:52 +0000736 Returns:
737 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000738 - ArticleInfo: (article number, message id, list of header lines)
739 """
740 if message_spec is not None:
741 cmd = 'HEAD {0}'.format(message_spec)
742 else:
743 cmd = 'HEAD'
744 return self._artcmd(cmd, file)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000745
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000746 def body(self, message_spec=None, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000747 """Process a BODY command. Argument:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000748 - message_spec: article number or message id
749 - file: filename string or file object to store the body in
Tim Peters2344fae2001-01-15 00:50:52 +0000750 Returns:
751 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000752 - ArticleInfo: (article number, message id, list of body lines)
753 """
754 if message_spec is not None:
755 cmd = 'BODY {0}'.format(message_spec)
756 else:
757 cmd = 'BODY'
758 return self._artcmd(cmd, file)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000759
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000760 def article(self, message_spec=None, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000761 """Process an ARTICLE command. Argument:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000762 - message_spec: article number or message id
763 - file: filename string or file object to store the article in
Tim Peters2344fae2001-01-15 00:50:52 +0000764 Returns:
765 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000766 - ArticleInfo: (article number, message id, list of article lines)
767 """
768 if message_spec is not None:
769 cmd = 'ARTICLE {0}'.format(message_spec)
770 else:
771 cmd = 'ARTICLE'
772 return self._artcmd(cmd, file)
Guido van Rossumc629d341992-11-05 10:43:02 +0000773
Tim Peters2344fae2001-01-15 00:50:52 +0000774 def slave(self):
775 """Process a SLAVE command. Returns:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000776 - resp: server response if successful
777 """
778 return self._shortcmd('SLAVE')
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000779
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000780 def xhdr(self, hdr, str, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000781 """Process an XHDR command (optional server extension). Arguments:
782 - hdr: the header type (e.g. 'subject')
783 - str: an article nr, a message id, or a range nr1-nr2
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000784 - file: Filename string or file object to store the result in
Tim Peters2344fae2001-01-15 00:50:52 +0000785 Returns:
786 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000787 - list: list of (nr, value) strings
788 """
789 pat = re.compile('^([0-9]+) ?(.*)\n?')
790 resp, lines = self._longcmdstring('XHDR {0} {1}'.format(hdr, str), file)
791 def remove_number(line):
Tim Peters2344fae2001-01-15 00:50:52 +0000792 m = pat.match(line)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000793 return m.group(1, 2) if m else line
794 return resp, [remove_number(line) for line in lines]
Guido van Rossumc629d341992-11-05 10:43:02 +0000795
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000796 def xover(self, start, end, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000797 """Process an XOVER command (optional server extension) Arguments:
798 - start: start of range
799 - end: end of range
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000800 - file: Filename string or file object to store the result in
Tim Peters2344fae2001-01-15 00:50:52 +0000801 Returns:
802 - resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000803 - list: list of dicts containing the response fields
804 """
805 resp, lines = self._longcmdstring('XOVER {0}-{1}'.format(start, end),
806 file)
807 fmt = self._getoverviewfmt()
808 return resp, _parse_overview(lines, fmt)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000809
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000810 def over(self, message_spec, *, file=None):
811 """Process an OVER command. If the command isn't supported, fall
812 back to XOVER. Arguments:
813 - message_spec:
814 - either a message id, indicating the article to fetch
815 information about
816 - or a (start, end) tuple, indicating a range of article numbers;
817 if end is None, information up to the newest message will be
818 retrieved
819 - or None, indicating the current article number must be used
820 - file: Filename string or file object to store the result in
821 Returns:
822 - resp: server response if successful
823 - list: list of dicts containing the response fields
Guido van Rossum8421c4e1995-09-22 00:52:38 +0000824
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000825 NOTE: the "message id" form isn't supported by XOVER
826 """
827 cmd = 'OVER' if 'OVER' in self._caps else 'XOVER'
828 if isinstance(message_spec, (tuple, list)):
829 start, end = message_spec
830 cmd += ' {0}-{1}'.format(start, end or '')
831 elif message_spec is not None:
832 cmd = cmd + ' ' + message_spec
833 resp, lines = self._longcmdstring(cmd, file)
834 fmt = self._getoverviewfmt()
835 return resp, _parse_overview(lines, fmt)
836
837 def xgtitle(self, group, *, file=None):
Tim Peters2344fae2001-01-15 00:50:52 +0000838 """Process an XGTITLE command (optional server extension) Arguments:
839 - group: group name wildcard (i.e. news.*)
840 Returns:
841 - resp: server response if successful
842 - list: list of (name,title) strings"""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000843 warnings.warn("The XGTITLE extension is not actively used, "
844 "use descriptions() instead",
Florent Xicluna67317752011-12-10 11:07:42 +0100845 DeprecationWarning, 2)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000846 line_pat = re.compile('^([^ \t]+)[ \t]+(.*)$')
847 resp, raw_lines = self._longcmdstring('XGTITLE ' + group, file)
Tim Peters2344fae2001-01-15 00:50:52 +0000848 lines = []
849 for raw_line in raw_lines:
Eric S. Raymondb9c24fb2001-02-09 07:02:17 +0000850 match = line_pat.search(raw_line.strip())
Tim Peters2344fae2001-01-15 00:50:52 +0000851 if match:
852 lines.append(match.group(1, 2))
853 return resp, lines
Guido van Rossum8421c4e1995-09-22 00:52:38 +0000854
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000855 def xpath(self, id):
Tim Peters2344fae2001-01-15 00:50:52 +0000856 """Process an XPATH command (optional server extension) Arguments:
857 - id: Message id of article
858 Returns:
859 resp: server response if successful
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000860 path: directory path to article
861 """
862 warnings.warn("The XPATH extension is not actively used",
Florent Xicluna67317752011-12-10 11:07:42 +0100863 DeprecationWarning, 2)
Guido van Rossum54f22ed2000-02-04 15:10:34 +0000864
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000865 resp = self._shortcmd('XPATH {0}'.format(id))
866 if not resp.startswith('223'):
Tim Peters2344fae2001-01-15 00:50:52 +0000867 raise NNTPReplyError(resp)
868 try:
Eric S. Raymondb9c24fb2001-02-09 07:02:17 +0000869 [resp_num, path] = resp.split()
Tim Peters2344fae2001-01-15 00:50:52 +0000870 except ValueError:
Serhiy Storchaka5affd232017-04-05 09:37:24 +0300871 raise NNTPReplyError(resp) from None
Tim Peters2344fae2001-01-15 00:50:52 +0000872 else:
873 return resp, path
Guido van Rossum8421c4e1995-09-22 00:52:38 +0000874
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000875 def date(self):
876 """Process the DATE command.
Tim Peters2344fae2001-01-15 00:50:52 +0000877 Returns:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000878 - resp: server response if successful
879 - date: datetime object
880 """
881 resp = self._shortcmd("DATE")
882 if not resp.startswith('111'):
Tim Peters2344fae2001-01-15 00:50:52 +0000883 raise NNTPReplyError(resp)
Eric S. Raymondb9c24fb2001-02-09 07:02:17 +0000884 elem = resp.split()
Tim Peters2344fae2001-01-15 00:50:52 +0000885 if len(elem) != 2:
886 raise NNTPDataError(resp)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000887 date = elem[1]
888 if len(date) != 14:
Tim Peters2344fae2001-01-15 00:50:52 +0000889 raise NNTPDataError(resp)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000890 return resp, _parse_datetime(date, None)
Guido van Rossum8421c4e1995-09-22 00:52:38 +0000891
Christian Heimes933238a2008-11-05 19:44:21 +0000892 def _post(self, command, f):
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000893 resp = self._shortcmd(command)
894 # Raises a specific exception if posting is not allowed
895 if not resp.startswith('3'):
Christian Heimes933238a2008-11-05 19:44:21 +0000896 raise NNTPReplyError(resp)
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000897 if isinstance(f, (bytes, bytearray)):
898 f = f.splitlines()
899 # We don't use _putline() because:
900 # - we don't want additional CRLF if the file or iterable is already
901 # in the right format
902 # - we don't want a spurious flush() after each line is written
903 for line in f:
904 if not line.endswith(_CRLF):
905 line = line.rstrip(b"\r\n") + _CRLF
Christian Heimes933238a2008-11-05 19:44:21 +0000906 if line.startswith(b'.'):
907 line = b'.' + line
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000908 self.file.write(line)
909 self.file.write(b".\r\n")
910 self.file.flush()
911 return self._getresp()
Guido van Rossum8421c4e1995-09-22 00:52:38 +0000912
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000913 def post(self, data):
Tim Peters2344fae2001-01-15 00:50:52 +0000914 """Process a POST command. Arguments:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000915 - data: bytes object, iterable or file containing the article
Tim Peters2344fae2001-01-15 00:50:52 +0000916 Returns:
917 - resp: server response if successful"""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000918 return self._post('POST', data)
Guido van Rossumc629d341992-11-05 10:43:02 +0000919
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000920 def ihave(self, message_id, data):
Tim Peters2344fae2001-01-15 00:50:52 +0000921 """Process an IHAVE command. Arguments:
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000922 - message_id: message-id of the article
923 - data: file containing the article
Tim Peters2344fae2001-01-15 00:50:52 +0000924 Returns:
925 - resp: server response if successful
926 Note that if the server refuses the article an exception is raised."""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000927 return self._post('IHAVE {0}'.format(message_id), data)
928
929 def _close(self):
930 self.file.close()
931 del self.file
Guido van Rossumc629d341992-11-05 10:43:02 +0000932
Tim Peters2344fae2001-01-15 00:50:52 +0000933 def quit(self):
934 """Process a QUIT command and close the socket. Returns:
935 - resp: server response if successful"""
Antoine Pitrou69ab9512010-09-29 15:03:40 +0000936 try:
937 resp = self._shortcmd('QUIT')
938 finally:
939 self._close()
Tim Peters2344fae2001-01-15 00:50:52 +0000940 return resp
Guido van Rossume2ed9df1997-08-26 23:26:18 +0000941
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000942 def login(self, user=None, password=None, usenetrc=True):
943 if self.authenticated:
944 raise ValueError("Already logged in.")
945 if not user and not usenetrc:
946 raise ValueError(
947 "At least one of `user` and `usenetrc` must be specified")
948 # If no login/password was specified but netrc was requested,
949 # try to get them from ~/.netrc
950 # Presume that if .netrc has an entry, NNRP authentication is required.
951 try:
952 if usenetrc and not user:
953 import netrc
954 credentials = netrc.netrc()
955 auth = credentials.authenticators(self.host)
956 if auth:
957 user = auth[0]
958 password = auth[2]
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200959 except OSError:
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000960 pass
961 # Perform NNTP authentication if needed.
962 if not user:
963 return
964 resp = self._shortcmd('authinfo user ' + user)
965 if resp.startswith('381'):
966 if not password:
967 raise NNTPReplyError(resp)
968 else:
969 resp = self._shortcmd('authinfo pass ' + password)
970 if not resp.startswith('281'):
971 raise NNTPPermanentError(resp)
Antoine Pitrou54411c12012-02-12 19:14:17 +0100972 # Capabilities might have changed after login
973 self._caps = None
974 self.getcapabilities()
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000975 # Attempt to send mode reader if it was requested after login.
Antoine Pitrou71135622012-02-14 23:29:34 +0100976 # Only do so if we're not in reader mode already.
977 if self.readermode_afterauth and 'READER' not in self._caps:
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000978 self._setreadermode()
Antoine Pitrou71135622012-02-14 23:29:34 +0100979 # Capabilities might have changed after MODE READER
980 self._caps = None
981 self.getcapabilities()
Antoine Pitrou1cb121e2010-11-09 18:54:37 +0000982
983 def _setreadermode(self):
984 try:
985 self.welcome = self._shortcmd('mode reader')
986 except NNTPPermanentError:
987 # Error 5xx, probably 'not implemented'
988 pass
989 except NNTPTemporaryError as e:
990 if e.response.startswith('480'):
991 # Need authorization before 'mode reader'
992 self.readermode_afterauth = True
993 else:
994 raise
995
996 if _have_ssl:
997 def starttls(self, context=None):
998 """Process a STARTTLS command. Arguments:
999 - context: SSL context to use for the encrypted connection
1000 """
1001 # Per RFC 4642, STARTTLS MUST NOT be sent after authentication or if
1002 # a TLS session already exists.
1003 if self.tls_on:
1004 raise ValueError("TLS is already enabled.")
1005 if self.authenticated:
1006 raise ValueError("TLS cannot be started after authentication.")
1007 resp = self._shortcmd('STARTTLS')
1008 if resp.startswith('382'):
1009 self.file.close()
Christian Heimes216d4632013-12-02 20:20:11 +01001010 self.sock = _encrypt_on(self.sock, context, self.host)
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001011 self.file = self.sock.makefile("rwb")
1012 self.tls_on = True
1013 # Capabilities may change after TLS starts up, so ask for them
1014 # again.
1015 self._caps = None
1016 self.getcapabilities()
1017 else:
1018 raise NNTPError("TLS failed to start.")
1019
Guido van Rossume2ed9df1997-08-26 23:26:18 +00001020
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001021class NNTP(_NNTPBase):
1022
1023 def __init__(self, host, port=NNTP_PORT, user=None, password=None,
Antoine Pitrou859c4ef2010-11-09 18:58:42 +00001024 readermode=None, usenetrc=False,
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001025 timeout=_GLOBAL_DEFAULT_TIMEOUT):
1026 """Initialize an instance. Arguments:
1027 - host: hostname to connect to
1028 - port: port to connect to (default the standard NNTP port)
1029 - user: username to authenticate with
1030 - password: password to use with username
1031 - readermode: if true, send 'mode reader' command after
1032 connecting.
1033 - usenetrc: allow loading username and password from ~/.netrc file
1034 if not specified explicitly
1035 - timeout: timeout (in seconds) used for socket connections
1036
1037 readermode is sometimes necessary if you are connecting to an
1038 NNTP server on the local machine and intend to call
Ezio Melotti4969f702011-03-15 05:59:46 +02001039 reader-specific commands, such as `group'. If you get
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001040 unexpected NNTPPermanentErrors, you might need to set
1041 readermode.
1042 """
1043 self.host = host
1044 self.port = port
Steve Dower60419a72019-06-24 08:42:54 -07001045 sys.audit("nntplib.NNTP", self, host, port)
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001046 self.sock = socket.create_connection((host, port), timeout)
Serhiy Storchaka52027c32015-03-21 09:40:26 +02001047 file = None
1048 try:
1049 file = self.sock.makefile("rwb")
1050 _NNTPBase.__init__(self, file, host,
1051 readermode, timeout)
1052 if user or usenetrc:
1053 self.login(user, password, usenetrc)
1054 except:
1055 if file:
1056 file.close()
1057 self.sock.close()
1058 raise
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001059
1060 def _close(self):
1061 try:
1062 _NNTPBase._close(self)
1063 finally:
1064 self.sock.close()
1065
1066
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001067if _have_ssl:
1068 class NNTP_SSL(_NNTPBase):
1069
1070 def __init__(self, host, port=NNTP_SSL_PORT,
1071 user=None, password=None, ssl_context=None,
Antoine Pitrou859c4ef2010-11-09 18:58:42 +00001072 readermode=None, usenetrc=False,
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001073 timeout=_GLOBAL_DEFAULT_TIMEOUT):
1074 """This works identically to NNTP.__init__, except for the change
1075 in default port and the `ssl_context` argument for SSL connections.
1076 """
Steve Dower60419a72019-06-24 08:42:54 -07001077 sys.audit("nntplib.NNTP", self, host, port)
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001078 self.sock = socket.create_connection((host, port), timeout)
Serhiy Storchaka52027c32015-03-21 09:40:26 +02001079 file = None
1080 try:
1081 self.sock = _encrypt_on(self.sock, ssl_context, host)
1082 file = self.sock.makefile("rwb")
1083 _NNTPBase.__init__(self, file, host,
1084 readermode=readermode, timeout=timeout)
1085 if user or usenetrc:
1086 self.login(user, password, usenetrc)
1087 except:
1088 if file:
1089 file.close()
1090 self.sock.close()
1091 raise
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001092
1093 def _close(self):
1094 try:
1095 _NNTPBase._close(self)
1096 finally:
1097 self.sock.close()
1098
1099 __all__.append("NNTP_SSL")
1100
1101
Neal Norwitzef679562002-11-14 02:19:44 +00001102# Test retrieval when run as a script.
Eric S. Raymondb2db5872002-11-13 23:05:35 +00001103if __name__ == '__main__':
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001104 import argparse
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001105
1106 parser = argparse.ArgumentParser(description="""\
1107 nntplib built-in demo - display the latest articles in a newsgroup""")
1108 parser.add_argument('-g', '--group', default='gmane.comp.python.general',
1109 help='group to fetch messages from (default: %(default)s)')
1110 parser.add_argument('-s', '--server', default='news.gmane.org',
1111 help='NNTP server hostname (default: %(default)s)')
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001112 parser.add_argument('-p', '--port', default=-1, type=int,
1113 help='NNTP port number (default: %s / %s)' % (NNTP_PORT, NNTP_SSL_PORT))
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001114 parser.add_argument('-n', '--nb-articles', default=10, type=int,
1115 help='number of articles to fetch (default: %(default)s)')
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001116 parser.add_argument('-S', '--ssl', action='store_true', default=False,
1117 help='use NNTP over SSL')
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001118 args = parser.parse_args()
1119
Antoine Pitrou1cb121e2010-11-09 18:54:37 +00001120 port = args.port
1121 if not args.ssl:
1122 if port == -1:
1123 port = NNTP_PORT
1124 s = NNTP(host=args.server, port=port)
1125 else:
1126 if port == -1:
1127 port = NNTP_SSL_PORT
1128 s = NNTP_SSL(host=args.server, port=port)
1129
1130 caps = s.getcapabilities()
1131 if 'STARTTLS' in caps:
1132 s.starttls()
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001133 resp, count, first, last, name = s.group(args.group)
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001134 print('Group', name, 'has', count, 'articles, range', first, 'to', last)
Antoine Pitrou69ab9512010-09-29 15:03:40 +00001135
1136 def cut(s, lim):
1137 if len(s) > lim:
1138 s = s[:lim - 4] + "..."
1139 return s
1140
1141 first = str(int(last) - args.nb_articles + 1)
1142 resp, overviews = s.xover(first, last)
1143 for artnum, over in overviews:
1144 author = decode_header(over['from']).split('<', 1)[0]
1145 subject = decode_header(over['subject'])
1146 lines = int(over[':lines'])
1147 print("{:7} {:20} {:42} ({})".format(
1148 artnum, cut(author, 20), cut(subject, 42), lines)
1149 )
1150
1151 s.quit()