limnoria-wfg/plugin.py

74 lines
3.1 KiB
Python
Raw Permalink Normal View History

2024-08-21 22:08:36 +02:00
# Copyright (c) 2014, scythetwirler
# Copyright (c) 2024, Stanislas Daniel Claude Dolcini
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import re
import urllib.request
import supybot.callbacks as callbacks
from supybot import ircmsgs
2024-09-08 21:25:46 +02:00
2024-08-21 22:08:36 +02:00
class wfg(callbacks.Plugin):
"""This plugin contains random, vaguely WFG-related commands of questionable utility."""
def __init__(self, irc):
self.__parent = super(wfg, self)
self.__parent.__init__(irc)
self.ticket_pattern = re.compile(r"(?:^|\W)#(\d+)")
2024-09-09 06:58:28 +02:00
self.title_pattern = re.compile(r"\s-\s0ad\s-\s*Wildfire Games\s*$")
2024-08-21 22:08:36 +02:00
def doPrivmsg(self, irc, msg):
channel = msg.args[0]
payload = msg.args[1]
channels = self.registryValue('channels')
if channels and channel not in channels:
return
2024-09-08 21:25:46 +02:00
ticket_url = self.registryValue('ticketUrl')
for ticket_number in sorted(set(self.ticket_pattern.findall(payload))):
url = f'{ticket_url.rstrip("/")}/{ticket_number}'
self.log.info(f'Fetching title for {url}')
# Fetch the title of the ticket page
try:
response = urllib.request.urlopen(url)
html = response.read().decode()
except Exception:
return
2024-08-21 22:08:36 +02:00
title_match = re.search(r"<title>(.*)</title>", html)
title = title_match[1].strip() if title_match else "No title found"
# Clean up the title if necessary
title = self.title_pattern.sub('', title)
2024-09-09 06:58:28 +02:00
response = f'{title}{response.url}'
irc.queueMsg(ircmsgs.privmsg(channel, response))
2024-08-21 22:08:36 +02:00
Class = wfg