mirror of
https://github.com/lyx0/nourybot-matrix.git
synced 2024-11-13 19:49:54 +01:00
add phonetic command
This commit is contained in:
parent
f7c92055d1
commit
f78e83e6f1
2 changed files with 100 additions and 0 deletions
|
@ -44,6 +44,17 @@ func (app *Application) ParseCommand(evt *event.Event) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case "phonetic":
|
||||||
|
msg := evt.Content.AsMessage().Body[9:len(evt.Content.AsMessage().Body)]
|
||||||
|
if resp, err := commands.Phonetic(msg); err != nil {
|
||||||
|
app.Log.Error().Err(err).Msg("failed to handle phonetic command")
|
||||||
|
app.SendText(evt, "Something went wrong.")
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
app.SendText(evt, resp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
case "ping":
|
case "ping":
|
||||||
if resp, err := commands.Ping(); err != nil {
|
if resp, err := commands.Ping(); err != nil {
|
||||||
app.Log.Error().Err(err).Msg("failed to handle ping command")
|
app.Log.Error().Err(err).Msg("failed to handle ping command")
|
||||||
|
|
89
internal/commands/phonetic.go
Normal file
89
internal/commands/phonetic.go
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
package commands
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
var cm = map[string]string{
|
||||||
|
"`": "ё",
|
||||||
|
"~": "Ё",
|
||||||
|
"=": "ъ",
|
||||||
|
"+": "Ъ",
|
||||||
|
"[": "ю",
|
||||||
|
"]": "щ",
|
||||||
|
`\`: "э",
|
||||||
|
"{": "Ю",
|
||||||
|
"}": "Щ",
|
||||||
|
"|": "Э",
|
||||||
|
";": "ь",
|
||||||
|
":": "Ь",
|
||||||
|
"'": "ж",
|
||||||
|
`"`: "Ж",
|
||||||
|
|
||||||
|
"q": "я",
|
||||||
|
"w": "ш",
|
||||||
|
"e": "е",
|
||||||
|
"r": "р",
|
||||||
|
"t": "т",
|
||||||
|
"y": "ы",
|
||||||
|
"u": "у",
|
||||||
|
"i": "и",
|
||||||
|
"o": "о",
|
||||||
|
"p": "п",
|
||||||
|
"a": "а",
|
||||||
|
"s": "с",
|
||||||
|
"d": "д",
|
||||||
|
"f": "ф",
|
||||||
|
"g": "г",
|
||||||
|
"h": "ч",
|
||||||
|
"j": "й",
|
||||||
|
"k": "к",
|
||||||
|
"l": "л",
|
||||||
|
"z": "з",
|
||||||
|
"x": "х",
|
||||||
|
"c": "ц",
|
||||||
|
"v": "в",
|
||||||
|
"b": "б",
|
||||||
|
"n": "н",
|
||||||
|
"m": "м",
|
||||||
|
|
||||||
|
"Q": "Я",
|
||||||
|
"W": "Ш",
|
||||||
|
"E": "Е",
|
||||||
|
"R": "Р",
|
||||||
|
"T": "Т",
|
||||||
|
"Y": "Ы",
|
||||||
|
"U": "У",
|
||||||
|
"I": "И",
|
||||||
|
"O": "О",
|
||||||
|
"P": "П",
|
||||||
|
"A": "А",
|
||||||
|
"S": "С",
|
||||||
|
"D": "Д",
|
||||||
|
"F": "Ф",
|
||||||
|
"G": "Г",
|
||||||
|
"H": "Ч",
|
||||||
|
"J": "Й",
|
||||||
|
"K": "К",
|
||||||
|
"L": "Л",
|
||||||
|
"Z": "З",
|
||||||
|
"X": "Х",
|
||||||
|
"C": "Ц",
|
||||||
|
"V": "В",
|
||||||
|
"B": "Б",
|
||||||
|
"N": "Н",
|
||||||
|
"M": "М",
|
||||||
|
}
|
||||||
|
|
||||||
|
func Phonetic(message string) (string, error) {
|
||||||
|
var ts string
|
||||||
|
|
||||||
|
for _, c := range message {
|
||||||
|
if _, ok := cm[string(c)]; ok {
|
||||||
|
ts = ts + cm[string(c)]
|
||||||
|
} else {
|
||||||
|
ts = ts + string(c)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Sprint(ts), nil
|
||||||
|
}
|
Loading…
Reference in a new issue