blob: 511dcec5d66429ee29451d8bd6d839403c7a3721 [file] [log] [blame]
Guido van Rossum54f22ed2000-02-04 15:10:34 +00001"""Convert a NT pathname to a file URL and vice versa."""
Guido van Rossum746ea351996-06-26 19:47:56 +00002
3def url2pathname(url):
Georg Brandlc0b24732005-12-26 22:53:56 +00004 """OS-specific conversion from a relative URL of the 'file' scheme
5 to a file system path; not recommended for general use."""
6 # e.g.
7 # ///C|/foo/bar/spam.foo
8 # becomes
9 # C:\foo\bar\spam.foo
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000010 import string, urllib.parse
Georg Brandl07f159d2005-12-15 21:59:00 +000011 # Windows itself uses ":" even in URLs.
12 url = url.replace(':', '|')
Tim Peters2344fae2001-01-15 00:50:52 +000013 if not '|' in url:
14 # No drive specifier, just convert slashes
15 if url[:4] == '////':
16 # path is something like ////host/path/on/remote/host
17 # convert this to \\host\path\on\remote\host
18 # (notice halving of slashes at the start of the path)
19 url = url[2:]
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000020 components = url.split('/')
Tim Peters2344fae2001-01-15 00:50:52 +000021 # make sure not to convert quoted slashes :-)
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000022 return urllib.parse.unquote('\\'.join(components))
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000023 comp = url.split('|')
Fred Drake27eebb82001-07-20 18:52:02 +000024 if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
Tim Peters2344fae2001-01-15 00:50:52 +000025 error = 'Bad URL: ' + url
Collin Winterce36ad82007-08-30 01:19:48 +000026 raise IOError(error)
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000027 drive = comp[0][-1].upper()
28 components = comp[1].split('/')
Tim Peters2344fae2001-01-15 00:50:52 +000029 path = drive + ':'
Senthil Kumaran2d2ea1b2011-04-14 13:16:30 +080030 for comp in components:
Tim Peters2344fae2001-01-15 00:50:52 +000031 if comp:
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000032 path = path + '\\' + urllib.parse.unquote(comp)
Senthil Kumaran2d2ea1b2011-04-14 13:16:30 +080033 # Issue #11474 - handing url such as |c/|
34 if path.endswith(':') and url.endswith('/'):
35 path += '\\'
Tim Peters2344fae2001-01-15 00:50:52 +000036 return path
Guido van Rossum746ea351996-06-26 19:47:56 +000037
38def pathname2url(p):
Georg Brandlc0b24732005-12-26 22:53:56 +000039 """OS-specific conversion from a file system path to a relative URL
40 of the 'file' scheme; not recommended for general use."""
41 # e.g.
42 # C:\foo\bar\spam.foo
43 # becomes
44 # ///C|/foo/bar/spam.foo
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000045 import urllib.parse
Tim Peters2344fae2001-01-15 00:50:52 +000046 if not ':' in p:
47 # No drive specifier, just convert slashes and quote the name
48 if p[:2] == '\\\\':
49 # path is something like \\host\path\on\remote\host
50 # convert this to ////host/path/on/remote/host
51 # (notice doubling of slashes at the start of the path)
52 p = '\\\\' + p
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000053 components = p.split('\\')
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000054 return urllib.parse.quote('/'.join(components))
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000055 comp = p.split(':')
Tim Peters2344fae2001-01-15 00:50:52 +000056 if len(comp) != 2 or len(comp[0]) > 1:
57 error = 'Bad path: ' + p
Collin Winterce36ad82007-08-30 01:19:48 +000058 raise IOError(error)
Guido van Rossum746ea351996-06-26 19:47:56 +000059
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000060 drive = urllib.parse.quote(comp[0].upper())
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000061 components = comp[1].split('\\')
Senthil Kumaran690ce9b2009-05-05 18:41:13 +000062 path = '///' + drive + ':'
Tim Peters2344fae2001-01-15 00:50:52 +000063 for comp in components:
64 if comp:
Amaury Forgeot d'Arcc80902e2008-06-18 22:38:24 +000065 path = path + '/' + urllib.parse.quote(comp)
Tim Peters2344fae2001-01-15 00:50:52 +000066 return path