mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-22 08:50:24 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@926 e7d03fd6-7b0d-0410-9947-9c21f3af8025
147 lines
4.8 KiB
Python
147 lines
4.8 KiB
Python
"""Handle local file: links"""
|
|
# Copyright (C) 2000-2003 Bastian Kleineidam
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
import re, os, urlparse
|
|
from linkcheck import extensions
|
|
from UrlData import UrlData, ExcList
|
|
|
|
# OSError is thrown on Windows when a file is not found
|
|
ExcList.append(OSError)
|
|
|
|
# if file extension was fruitless, look at the content
|
|
contents = {
|
|
"html": re.compile(r'(?i)<html>.*</html>'),
|
|
"opera" : re.compile(r'Opera Hotlist'),
|
|
# "text" : re.compile(r'[\w\s]+'),
|
|
}
|
|
|
|
_schemes = r"""(
|
|
acap # application configuration access protocol
|
|
|afs # Andrew File System global file names
|
|
|cid # content identifier
|
|
|data # data
|
|
|dav # dav
|
|
|fax # fax
|
|
|imap # internet message access protocol
|
|
|ldap # Lightweight Directory Access Protocol
|
|
|mailserver # Access to data available from mail servers
|
|
|mid # message identifier
|
|
|modem # modem
|
|
|nfs # network file system protocol
|
|
|opaquelocktoken # opaquelocktoken
|
|
|pop # Post Office Protocol v3
|
|
|prospero # Prospero Directory Service
|
|
|rtsp # real time streaming protocol
|
|
|service # service location
|
|
|sip # session initiation protocol
|
|
|tel # telephone
|
|
|tip # Transaction Internet Protocol
|
|
|tn3270 # Interactive 3270 emulation sessions
|
|
|vemmi # versatile multimedia interface
|
|
|wais # Wide Area Information Servers
|
|
|z39\.50r # Z39.50 Retrieval
|
|
|z39\.50s # Z39.50 Session
|
|
|chrome # Mozilla specific
|
|
|find # Mozilla specific
|
|
|clsid # Microsoft specific
|
|
|javascript # JavaScript
|
|
|isbn # ISBN (int. book numbers)
|
|
|https? # HTTP/HTTPS
|
|
|ftp # FTP
|
|
|file # local file
|
|
|telnet # telnet
|
|
|mailto # mailto
|
|
|gopher # gopher
|
|
|s?news # news
|
|
|nntp # news
|
|
)"""
|
|
|
|
|
|
class FileUrlData (UrlData):
|
|
"Url link with file scheme"
|
|
|
|
def __init__ (self,
|
|
urlName,
|
|
config,
|
|
recursionLevel,
|
|
parentName = None,
|
|
baseRef = None, line=0, column=0, name=""):
|
|
UrlData.__init__(self,
|
|
urlName,
|
|
config,
|
|
recursionLevel,
|
|
parentName=parentName,
|
|
baseRef=baseRef, line=line, column=column, name=name)
|
|
if not parentName and not baseRef and \
|
|
not re.compile("^file:").search(self.urlName):
|
|
self.urlName = os.path.expanduser(self.urlName)
|
|
winre = re.compile("^[a-zA-Z]:")
|
|
if winre.search(self.urlName):
|
|
self.adjustWinPath()
|
|
else:
|
|
if self.urlName[0:1] != "/":
|
|
self.urlName = os.getcwd()+"/"+self.urlName
|
|
if winre.search(self.urlName):
|
|
self.adjustWinPath()
|
|
self.urlName = "file://"+self.urlName.replace("\\", "/")
|
|
|
|
|
|
def buildUrl (self):
|
|
UrlData.buildUrl(self)
|
|
# ignore query and fragment url parts for filesystem urls
|
|
self.urlparts[3] = self.urlparts[4] = ''
|
|
self.url = urlparse.urlunsplit(self.urlparts)
|
|
|
|
|
|
def getCacheKey (self):
|
|
# the host in urlparts is lowercase()d
|
|
if self.urlparts:
|
|
self.urlparts[4] = self.anchor
|
|
key = urlparse.urlunsplit(self.urlparts)
|
|
self.urlparts[4] = ''
|
|
return key
|
|
return None
|
|
|
|
|
|
def adjustWinPath (self):
|
|
"c:\\windows ==> /c|\\windows"
|
|
self.urlName = "/"+self.urlName[0]+"|"+self.urlName[2:]
|
|
|
|
|
|
def isHtml (self):
|
|
# guess by extension
|
|
for ro in extensions.values():
|
|
if ro.search(self.url):
|
|
return 1
|
|
# try to read content (can fail, so catch error)
|
|
try:
|
|
for ro in contents.values():
|
|
if ro.search(self.getContent()[:20]):
|
|
return 1
|
|
except IOError:
|
|
pass
|
|
return None
|
|
|
|
|
|
def parseUrl (self):
|
|
for key,ro in extensions.items():
|
|
if ro.search(self.url):
|
|
return getattr(self, "parse_"+key)()
|
|
for key,ro in contents.items():
|
|
if ro.search(self.getContent()[:20]):
|
|
return getattr(self, "parse_"+key)()
|
|
return None
|