summaryrefslogtreecommitdiffstats
path: root/Lib/urlopen.py
blob: c24b3f94faaa814898cc5f14804de755ade25eae (plain)
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
# Open an arbitrary URL
#
# See the following document for a tentative description of URLs:
#     Uniform Resource Locators              Tim Berners-Lee
#     INTERNET DRAFT                                    CERN
#     IETF URL Working Group                    14 July 1993
#     draft-ietf-uri-url-01.txt
#
# The object returned by urlopen() will differ per protocol.
# All you know is that is has methods read(), fileno(), close() and info().
# The read(), fileno() and close() methods work like those of open files.
# The info() method returns an rfc822.Message object which can be
# used to query various info about the object, if available.
# (rfc822.Message objects are queried with the getheader() method.)

import socket
import regex
import regsub
import string
import rfc822
import ftplib


# External interface -- use urlopen(file) as if it were open(file, 'r')
def urlopen(url):
	url = string.strip(url)
	if url[:1] == '<' and url[-1:] == '>': url = string.strip(url[1:-1])
	if url[:4] == 'URL:': url = string.strip(url[4:])
	type, url = splittype(url)
	if not type: type = 'file'
	type = regsub.gsub('-', '_', type)
	try:
		func = eval('open_' + type)
	except NameError:
		raise IOError, ('url error', 'unknown url type', type)
	try:
		return func(url)
	except socket.error, msg:
		raise IOError, ('socket error', msg)


# Each routine of the form open_<type> knows how to open that type of URL

# Use HTTP protocol
def open_http(url):
	import httplib
	host, selector = splithost(url)
	h = httplib.HTTP(host)
	h.putrequest('GET', selector)
	errcode, errmsg, headers = h.getreply()
	if errcode == 200: return makefile(h.getfile(), headers)
	else: raise IOError, ('http error', errcode, errmsg, headers)

# Empty rfc822.Message object
noheaders = rfc822.Message(open('/dev/null', 'r'))
noheaders.fp.close()			# Recycle file descriptor

# Use Gopher protocol
def open_gopher(url):
	import gopherlib
	host, selector = splithost(url)
	type, selector = splitgophertype(selector)
	selector, query = splitquery(selector)
	if query: fp = gopherlib.send_query(selector, query, host)
	else: fp = gopherlib.send_selector(selector, host)
	return makefile(fp, noheaders)

# Use local file or FTP depending on form of URL
localhost = socket.gethostbyname('localhost')
thishost = socket.gethostbyname(socket.gethostname())
def open_file(url):
	host, file = splithost(url)
	if not host: return makefile(open(file, 'r'), noheaders)
	host, port = splitport(host)
	if not port and socket.gethostbyname(host) in (localhost, thishost):
		try: fp = open(file, 'r')
		except IOError: fp = None
		if fp: return makefile(fp, noheaders)
	return open_ftp(url)

# Use FTP protocol
ftpcache = {}
ftperrors = (ftplib.error_reply,
	     ftplib.error_temp,
	     ftplib.error_perm,
	     ftplib.error_proto)
def open_ftp(url):
	host, file = splithost(url)
	host, port = splitport(host)
	host = socket.gethostbyname(host)
	if not port: port = ftplib.FTP_PORT
	key = (host, port)
	try:
		if not ftpcache.has_key(key):
			ftpcache[key] = ftpwrapper(host, port)
		return makefile(ftpcache[key].retrfile(file), noheaders)
	except ftperrors, msg:
		raise IOError, ('ftp error', msg)


# Utility classes

# Class used to add an info() method to a file object
class makefile:
	def __init__(self, fp, headers):
		self.fp = fp
		self.headers = headers
		self.read = self.fp.read
		self.fileno = self.fp.fileno
		self.close = self.fp.close
	def info(self):
		return self.headers

# Class used by open_ftp() for cache of open FTP connections
class ftpwrapper:
	def __init__(self, host, port):
		self.host = host
		self.port = port
		self.init()
	def init(self):
		self.ftp = ftplib.FTP()
		self.ftp.connect(self.host, self.port)
		self.ftp.login()
	def retrfile(self, file):
		try:
			self.ftp.voidcmd('TYPE I')
		except ftplib.all_errors:
			self.init()
			self.ftp.voidcmd('TYPE I')
		conn = None
		if file:
			try:
				cmd = 'RETR ' + file
				conn = self.ftp.transfercmd(cmd)
			except ftplib.error_perm, reason:
				if reason[:3] != '550':
					raise IOError, ('ftp error', reason)
		if not conn:
			# Try a directory listing
			if file: cmd = 'NLST ' + file
			else: cmd = 'NLST'
			conn = self.ftp.transfercmd(cmd)
		return fakefile(self.ftp, conn)

# Class used by ftpwrapper to handle response when transfer is complete
class fakefile:
	def __init__(self, ftp, conn):
		self.ftp = ftp
		self.conn = conn
		self.fp = self.conn.makefile('r')
		self.read = self.fp.read
		self.fileno = self.fp.fileno
	def __del__(self):
		self.close()
	def close(self):
		self.conn = None
		self.fp = None
		self.read = None
		if self.ftp: self.ftp.voidresp()
		self.ftp = None


# Utilities to split url parts into components:
# splittype('type:opaquestring') --> 'type', 'opaquestring'
# splithost('//host[:port]/path') --> 'host[:port]', '/path'
# splitport('host:port') --> 'host', 'port'
# splitquery('/path?query') --> '/path', 'query'
# splittag('/path#tag') --> '/path', 'tag'
# splitgophertype('/Xselector') --> 'X', 'selector'

typeprog = regex.compile('^\([^/:]+\):\(.*\)$')
def splittype(url):
	if typeprog.match(url) >= 0: return typeprog.group(1, 2)
	return None, url

hostprog = regex.compile('^//\([^/]+\)\(.*\)$')
def splithost(url):
	if hostprog.match(url) >= 0: return hostprog.group(1, 2)
	return None, url

portprog = regex.compile('^\(.*\):\([0-9]+\)$')
def splitport(host):
	if portprog.match(host) >= 0: return portprog.group(1, 2)
	return host, None

queryprog = regex.compile('^\(.*\)\?\([^?]*\)$')
def splitquery(url):
	if queryprog.match(url) >= 0: return queryprog.group(1, 2)
	return url, None

tagprog = regex.compile('^\(.*\)#\([^#]*\)$')
def splittag(url):
	if tagprog.match(url) >= 0: return tagprog.group(1, 2)
	return url, None

def splitgophertype(selector):
	if selector[:1] == '/' and selector[1:2]:
		return selector[1], selector[2:]
	return None, selector


# Test program
def test():
	import sys
	args = sys.argv[1:]
	if not args:
		args = [
			'/etc/passwd',
			'file:/etc/passwd',
			'file://localhost/etc/passwd',
			'ftp://ftp.cwi.nl/etc/passwd',
			'gopher://gopher.cwi.nl/11/',
			'http://www.cwi.nl/index.html',
			]
	for arg in args:
		print '-'*10, arg, '-'*10
		print regsub.gsub('\r', '', urlopen(arg).read())
	print '-'*40

# Run test program when run as a script
if __name__ == '__main__':
	test()