45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
# Terminator by Chris Jones <cmsj@tenshu.net?
|
|
# GPL v2 only
|
|
"""url_handlers.py - Default plugins for URL handling"""
|
|
import re
|
|
import plugin
|
|
|
|
# Every plugin you want Terminator to load *must* be listed in 'available'
|
|
available = ['LaunchpadURLHandler', 'APTURLHandler']
|
|
|
|
class URLHandler(plugin.Plugin):
|
|
"""Base class for URL handlers"""
|
|
capabilities = ['url_handler']
|
|
handler_name = None
|
|
match = None
|
|
|
|
def callback(self, url):
|
|
"""Callback to transform the enclosed URL"""
|
|
raise NotImplementedError
|
|
|
|
class LaunchpadURLHandler(URLHandler):
|
|
"""Launchpad URL handler. If the URL looks like a Launchpad changelog
|
|
closure entry... 'LP: #12345' then it should be transformed into a
|
|
Launchpad URL"""
|
|
capabilities = ['url_handler']
|
|
handler_name = 'launchpad'
|
|
match = '\\bLP:? #?[0-9]+\\b'
|
|
|
|
def callback(self, url):
|
|
"""Look for the number in the supplied string and return it as a URL"""
|
|
for item in re.findall(r'[0-9]+', url):
|
|
url = 'https://bugs.launchpad.net/bugs/%s' % item
|
|
return(url)
|
|
|
|
class APTURLHandler(URLHandler):
|
|
"""APT URL handler. If there is a URL that looks like an apturl, handle
|
|
it appropriately"""
|
|
capabilities = ['url_handler']
|
|
handler_hane = 'apturl'
|
|
match = '\\bapt:.*\\b'
|
|
|
|
def callback(self, url):
|
|
"""Actually we don't need to do anything for this to work"""
|
|
return(url)
|
|
|