Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit ad2c4b60abead4af6b2a74d21c9f56ca0883c2e2 Author: Wim <wim@42.be> Date: Sat Aug 20 17:23:57 2016 +0000 Remove unused code diff --git a/bridge/mattermost/helper.go b/bridge/mattermost/helper.go deleted file mode 100644 index 2caba71..0000000 --- a/bridge/mattermost/helper.go +++ /dev/null @@ -159 +00 @@ -package bmattermost - -import ( - "strings" -) - -func tableformatter(nicks []string, nicksPerRow int, continued bool) string { - result := "|IRC users" - if continued { - result = "|(continued)" - } - for i := 0; i < 2; i++ { - for j := 1; j <= nicksPerRow && j <= len(nicks); j++ { - if i == 0 { - result += "|" - } else { - result += ":-|" - } - } - result += "\r\n|" - } - result += nicks[0] + "|" - for i := 1; i < len(nicks); i++ { - if i%nicksPerRow == 0 { - result += "\r\n|" + nicks[i] + "|" - } else { - result += nicks[i] + "|" - } - } - return result -} - -func plainformatter(nicks []string, nicksPerRow int) string { - return strings.Join(nicks, ", ") + " currently on IRC" -} - -func IsMarkup(message string) bool { - switch message[0] { - case '|': - fallthrough - case '#': - fallthrough - case '_': - fallthrough - case '*': - fallthrough - case '~': - fallthrough - case '-': - fallthrough - case ':': - fallthrough - case '>': - fallthrough - case '=': - return true - } - return false -} diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go index 1371969..025dab1 100644 --- a/bridge/mattermost/mattermost.go +++ b/bridge/mattermost/mattermost.go @@ -13811 +1386 @@ func (b *Bmattermost) handleMatter() {   }   flog.mm.Info("Start listening for Mattermost messages")   for message := range mchan { - /* - if b.ignoreMessage(message.Username, message.Text, "mattermost") { - continue - } - */   texts := strings.Split(message.Text, "\n")   for _, text := range texts {   flog.mm.Debug("Sending message from " + message.Username + " to " + message.Channel) @@ -17719 +1723 @@ func (b *Bmattermost) handleMatterHook(mchan chan *MMMessage) {   mchan <- m   }  } - -func (b *Bmattermost) formatnicks(nicks []string, continued bool) string { - switch b.Config.Mattermost.NickFormatter { - case "table": - return tableformatter(nicks, b.nicksPerRow(), continued) - default: - return plainformatter(nicks, b.nicksPerRow()) - } -} - -func (b *Bmattermost) nicksPerRow() int { - if b.Config.Mattermost.NicksPerRow < 1 { - return 4 - } - return b.Config.Mattermost.NicksPerRow -}