Move isHighlight to irc.go
This commit is contained in:
parent
424f676254
commit
76e332b50a
36
irc.go
36
irc.go
@ -4,6 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
"unicode"
|
||||||
|
"unicode/utf8"
|
||||||
|
|
||||||
"gopkg.in/irc.v3"
|
"gopkg.in/irc.v3"
|
||||||
)
|
)
|
||||||
@ -601,3 +603,37 @@ func (cm *deliveredCasemapMap) Value(name string) deliveredClientMap {
|
|||||||
}
|
}
|
||||||
return entry.value.(deliveredClientMap)
|
return entry.value.(deliveredClientMap)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func isWordBoundary(r rune) bool {
|
||||||
|
switch r {
|
||||||
|
case '-', '_', '|':
|
||||||
|
return false
|
||||||
|
case '\u00A0':
|
||||||
|
return true
|
||||||
|
default:
|
||||||
|
return !unicode.IsLetter(r) && !unicode.IsNumber(r)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func isHighlight(text, nick string) bool {
|
||||||
|
for {
|
||||||
|
i := strings.Index(text, nick)
|
||||||
|
if i < 0 {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Detect word boundaries
|
||||||
|
var left, right rune
|
||||||
|
if i > 0 {
|
||||||
|
left, _ = utf8.DecodeLastRuneInString(text[:i])
|
||||||
|
}
|
||||||
|
if i < len(text) {
|
||||||
|
right, _ = utf8.DecodeRuneInString(text[i+len(nick):])
|
||||||
|
}
|
||||||
|
if isWordBoundary(left) && isWordBoundary(right) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
text = text[i+len(nick):]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
36
upstream.go
36
upstream.go
@ -13,8 +13,6 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
"unicode"
|
|
||||||
"unicode/utf8"
|
|
||||||
|
|
||||||
"github.com/emersion/go-sasl"
|
"github.com/emersion/go-sasl"
|
||||||
"gopkg.in/irc.v3"
|
"gopkg.in/irc.v3"
|
||||||
@ -315,40 +313,6 @@ func (uc *upstreamConn) parseMembershipPrefix(s string) (ms *memberships, nick s
|
|||||||
return &memberships, s[i:]
|
return &memberships, s[i:]
|
||||||
}
|
}
|
||||||
|
|
||||||
func isWordBoundary(r rune) bool {
|
|
||||||
switch r {
|
|
||||||
case '-', '_', '|':
|
|
||||||
return false
|
|
||||||
case '\u00A0':
|
|
||||||
return true
|
|
||||||
default:
|
|
||||||
return !unicode.IsLetter(r) && !unicode.IsNumber(r)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func isHighlight(text, nick string) bool {
|
|
||||||
for {
|
|
||||||
i := strings.Index(text, nick)
|
|
||||||
if i < 0 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Detect word boundaries
|
|
||||||
var left, right rune
|
|
||||||
if i > 0 {
|
|
||||||
left, _ = utf8.DecodeLastRuneInString(text[:i])
|
|
||||||
}
|
|
||||||
if i < len(text) {
|
|
||||||
right, _ = utf8.DecodeRuneInString(text[i+len(nick):])
|
|
||||||
}
|
|
||||||
if isWordBoundary(left) && isWordBoundary(right) {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
text = text[i+len(nick):]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (uc *upstreamConn) handleMessage(msg *irc.Message) error {
|
func (uc *upstreamConn) handleMessage(msg *irc.Message) error {
|
||||||
var label string
|
var label string
|
||||||
if l, ok := msg.GetTag("label"); ok {
|
if l, ok := msg.GetTag("label"); ok {
|
||||||
|
Loading…
Reference in New Issue
Block a user