1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
# localslackirc
# Copyright (C) 2022 Salvo "LtWorf" Tomaselli
#
# localslackirc 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 3 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, see <http://www.gnu.org/licenses/>.
#
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
from enum import Enum
from typing import Iterable, NamedTuple, Optional
try:
from emoji import emojize # type: ignore
except ModuleNotFoundError:
def emojize(string:str, use_aliases:bool=False, delimiters: tuple[str,str]=(':', ':')) -> str: # type: ignore
return string
SLACK_SUBSTITUTIONS = [
('&', '&'),
('>', '>'),
('<', '<'),
]
__all__ = [
'SLACK_SUBSTITUTIONS',
'tokenize',
'Itemkind',
'PreBlock',
'SpecialItem',
]
def preblocks(msg: str) -> Iterable[tuple[str, bool]]:
"""
Iterates the preformatted and normal text blocks
in the message.
The boolean indicates if the block is preformatted.
The three ``` ticks are removed by this.
"""
pre = False
while True:
try:
p = msg.index('```')
except ValueError:
break
yield msg[0:p], pre
pre = not pre
msg = msg[p+3:]
yield msg, pre
class Itemkind(Enum):
YELL = 0 # HERE, EVERYONE and such
MENTION = 1 # @user
CHANNEL = 2 # #channel
OTHER = 3 # Everything else
class PreBlock(NamedTuple):
"""
Block of preformatted text
"""
txt: str
@property
def lines(self) -> int:
return self.txt.count('\n')
class SpecialItem(NamedTuple):
"""
A link or a mention
"""
txt: str
@property
def kind(self) -> Itemkind:
k = self.txt[1]
if k == '!':
return Itemkind.YELL
elif k == '@':
return Itemkind.MENTION
elif k == '#':
return Itemkind.CHANNEL
return Itemkind.OTHER
@property
def val(self) -> str:
"""
Return the value
"""
sep = self.txt.find('|')
# No human readable, just take the whole thing
if sep == -1:
sep = len(self.txt) - 1
if self.kind != Itemkind.OTHER:
return self.txt[2:sep]
return self.txt[1:sep]
@property
def human(self) -> Optional[str]:
"""
Return the eventual human readable
message
"""
sep = self.txt.find('|')
if sep == -1:
return None
return self.txt[sep+1:-1]
def split_tokens(msg: str) -> Iterable[SpecialItem|str]:
"""
yields separately the normal text and the special slack
<stuff> items
"""
while True:
try:
begin = msg.index('<')
except ValueError:
break
if begin != 0: # There is stuff before
yield msg[0:begin]
msg = msg[begin:]
else: # Tag at the beginning
end = msg.index('>')
block = msg[0:end + 1]
msg = msg[end + 1:]
yield SpecialItem(block)
if msg:
yield msg
def convertpre(msg: str) -> str:
"""
Fixes a preformatted block so that it can
be displayed by an irc client.
Links can be present in preformatted blocks
with the format <http://> and MAYBE with
<http://blabla|bla> but no channel or user
mentions are allowed, and emoji substitution
should not happen here.
"""
r = []
for t in split_tokens(msg):
if isinstance(t, str):
r.append(t)
continue
if t.kind != Itemkind.OTHER:
raise ValueError(f'Unexpected slack item in preformatted block {t}')
elif t.human: # For some very strange reason slack converts text like "asd.com" into links
r.append(t.human)
else:
r.append(t.val)
l = ''.join(r)
for s in SLACK_SUBSTITUTIONS:
l = l.replace(s[0], s[1])
return l
def tokenize(msg: str) -> Iterable[PreBlock|SpecialItem|str]:
"""
Yields the various possible tokens
Changes the > codes
Puts the emoji in place
"""
for txt, pre in preblocks(msg):
if pre:
yield PreBlock(convertpre(txt))
else:
for t in split_tokens(txt):
if isinstance(t, str):
# Replace emoji codes (e.g. :thumbsup:)
t = emojize(t, language='alias')
# Usual substitutions
for s in SLACK_SUBSTITUTIONS:
t = t.replace(s[0], s[1]) # type: ignore
yield t
|