mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-15 08:29:25 +01:00
* QuoteLengthLimit option added to limit max. quoted message length if QuoteLengthLimit = 0 the whole message will be quoted
This commit is contained in:
parent
0dd19af6e8
commit
fc30b1bacc
@ -116,6 +116,7 @@ type Protocol struct {
|
|||||||
Protocol string // all protocols
|
Protocol string // all protocols
|
||||||
QuoteDisable bool // telegram
|
QuoteDisable bool // telegram
|
||||||
QuoteFormat string // telegram
|
QuoteFormat string // telegram
|
||||||
|
QuoteLengthLimit int // telegram
|
||||||
RejoinDelay int // IRC
|
RejoinDelay int // IRC
|
||||||
ReplaceMessages [][]string // all protocols
|
ReplaceMessages [][]string // all protocols
|
||||||
ReplaceNicks [][]string // all protocols
|
ReplaceNicks [][]string // all protocols
|
||||||
|
@ -357,6 +357,14 @@ func (b *Btelegram) handleQuote(message, quoteNick, quoteMessage string) string
|
|||||||
if format == "" {
|
if format == "" {
|
||||||
format = "{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})"
|
format = "{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})"
|
||||||
}
|
}
|
||||||
|
quoteMessagelength := len(quoteMessage)
|
||||||
|
if b.GetInt("QuoteLengthLimit") != 0 && quoteMessagelength >= b.GetInt("QuoteLengthLimit") {
|
||||||
|
runes := []rune(quoteMessage)
|
||||||
|
quoteMessage = string(runes[0:b.GetInt("QuoteLengthLimit")])
|
||||||
|
if quoteMessagelength > b.GetInt("QuoteLengthLimit") {
|
||||||
|
quoteMessage += "..."
|
||||||
|
}
|
||||||
|
}
|
||||||
format = strings.Replace(format, "{MESSAGE}", message, -1)
|
format = strings.Replace(format, "{MESSAGE}", message, -1)
|
||||||
format = strings.Replace(format, "{QUOTENICK}", quoteNick, -1)
|
format = strings.Replace(format, "{QUOTENICK}", quoteNick, -1)
|
||||||
format = strings.Replace(format, "{QUOTEMESSAGE}", quoteMessage, -1)
|
format = strings.Replace(format, "{QUOTEMESSAGE}", quoteMessage, -1)
|
||||||
|
@ -853,6 +853,10 @@ UseInsecureURL=false
|
|||||||
#OPTIONAL (default false)
|
#OPTIONAL (default false)
|
||||||
QuoteDisable=false
|
QuoteDisable=false
|
||||||
|
|
||||||
|
#Set the max. quoted length if 0 the whole message will be quoted
|
||||||
|
#OPTIONAL (default 0)
|
||||||
|
QuoteLengthLimit=0
|
||||||
|
|
||||||
#Format quoted/reply messages
|
#Format quoted/reply messages
|
||||||
#OPTIONAL (default "{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})")
|
#OPTIONAL (default "{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})")
|
||||||
QuoteFormat="{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})"
|
QuoteFormat="{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})"
|
||||||
|
Loading…
Reference in New Issue
Block a user