Add emoji support

This commit is contained in:
erroneousboat 2017-07-21 14:04:16 +02:00
parent 7555f594f0
commit 25b3ccf08d
2 changed files with 1532 additions and 2 deletions

1511
config/emoji.go Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,10 +3,13 @@ package service
import (
"fmt"
"log"
"regexp"
"strconv"
"time"
"github.com/nlopes/slack"
"github.com/erroneousboat/slack-term/config"
)
const (
@ -291,7 +294,7 @@ func (s *SlackService) CreateMessage(message slack.Message) []string {
"[%s] <%s> %s",
time.Unix(intTime, 0).Format("15:04"),
name,
message.Text,
parseEmoji(message.Text),
)
msgs = append(msgs, msg)
@ -357,7 +360,7 @@ func (s *SlackService) CreateMessageFromMessageEvent(message *slack.MessageEvent
"[%s] <%s> %s",
time.Unix(intTime, 0).Format("15:04"),
name,
message.Text,
parseEmoji(message.Text),
)
msgs = append(msgs, msg)
@ -391,3 +394,19 @@ func createMessageFromAttachments(atts []slack.Attachment) []string {
return msgs
}
// parseEmoji will try to find emoji placeholders in the message
// string and replace them with the correct unicode equivalent
func parseEmoji(msg string) string {
r := regexp.MustCompile("(:\\w+:)")
return r.ReplaceAllStringFunc(
msg, func(str string) string {
code, ok := config.EmojiCodemap[str]
if !ok {
return str
}
return code
},
)
}