1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00
royalnet/royalpack/commands/ship.py

60 lines
1.7 KiB
Python
Raw Normal View History

# Special imports
from __future__ import annotations
import royalnet.royaltyping as t
# External imports
import royalnet.engineer as engi
import logging
import re
# Internal imports
# from . import something
# Special global objects
log = logging.getLogger(__name__)
# Code
@engi.PartialCommand.new(syntax=r"(?P<first>[A-Za-z]+)[\s+&]+(?P<second>[A-Za-z]+)")
2021-01-10 18:40:06 +00:00
async def ship(*, _sentry: engi.Sentry, _msg: engi.Message, first: str, second: str, **__):
"""
Ship two names together! 💞
"""
log.info(f"Shipping: {first!r} + {second!r}")
# Convert the names to lowercase
first = first.lower()
second = second.lower()
log.debug(f"Lowercased: {first!r} + {second!r}")
# Get all letters until the first vowel, included
first_match = re.search(r"^[A-Za-z][^aeiouAEIOU]*[aeiouAEIOU]?", first)
# Get all letters from the second to last vowel, excluded
second_match = re.search(r"[^aeiouAEIOU]*[aeiouAEIOU]?[A-Za-z]$", second)
log.debug(f"Matches: {first_match!r} + {second_match!r}")
# Get the matched characters if the matches were successful, or cut the names in half if they weren't
first_crop = first_match.group(0) if first_match else first[:(len(first) // 2)]
second_crop = second_match.group(0) if second_match else second[(len(second) // 2):]
log.debug(f"Cropped: {first_crop!r} + {second_crop!r}")
# Combine the two parts
combined = f"{first_crop}{second_crop}"
log.info(f"Combined: {combined!r}")
# Send the message to the chat
log.debug(f"Sending ship to the chat...")
2021-04-03 16:43:34 +00:00
await _msg.reply(
text=f"💞 {first.capitalize()} + {second.capitalize()} = {combined.capitalize()}"
)
# Objects exported by this module
__all__ = (
"ship",
)