nxy/bot/linux.py
jkhsjdhjs d59e170e8b linux: use json kernel.org release feeed
Reading the releases from the json feed is much simpler and it allows us
to drop the dependency on feedparser.
2022-11-08 00:25:05 +00:00

54 lines
2.0 KiB
Python

# -*- coding: utf-8 -*-
import random
import irc3
import requests
from docopt import Dict
from irc3.plugins.command import command
from irc3.utils import IrcString
from . import Plugin
from .utils import re_generator
GNU_LINUX = """I'd Just Like To Interject For A Moment. What you're referring
to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it,
GNU plus Linux. Linux is not an operating system unto itself, but rather
another free component of a fully functioning GNU system made useful by the
GNU corelibs, shell utilities and vital system components comprising a full
OS as defined by POSIX."""
class Linux(Plugin):
KERNEL_FEED = 'https://www.kernel.org/releases.json'
@irc3.event(r'(?i)^:\S+ PRIVMSG (?P<target>\S+) :(?:.* )?(debian|ubuntu|apt|dpkg|flash)(?: .*|$)')
def debillian(self, target: str):
"""Annoying RE trigger for debian with variable count of E."""
if random.randint(0, 3) == 0:
self.bot.privmsg(target, re_generator())
@irc3.event(r'(?i)^:\S+ PRIVMSG (?P<target>\S+) :.*(?<!gnu[/+])linux(?! kernel).*')
def linux(self, target: str):
"""Super annoying, useless 'Stallman is mad' trigger."""
if random.randint(0, 12) == 0:
self.bot.privmsg(target, GNU_LINUX)
@command
def kernel(self, mask: IrcString, target: IrcString, args: Dict):
"""Get Linux kernel releases
%%kernel
"""
try:
res = requests.get(self.KERNEL_FEED, timeout=10).json()
except requests.exceptions.RequestException:
return '\x02[Kernel]\x02 Error fetching kernel.org releases'
# Make list of releases
releases = []
for release in res['releases']:
releases.append('\x02{}\x02 ({}{})'.format(release['version'], release['moniker'],
', \x1DEOL\x1D' if release['iseol'] else ''))
return '\x02[Kernel]\x02 {}'.format(', '.join(releases))