Skip to content
Snippets Groups Projects

Channels impl

Merged Benjamin Wenger requested to merge channelsImpl into project/Channels
7 files
+ 184
119
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 8
5
package channels
package channels
import (
import (
 
"bufio"
 
"bytes"
"github.com/pkg/errors"
"github.com/pkg/errors"
jww "github.com/spf13/jwalterweatherman"
jww "github.com/spf13/jwalterweatherman"
"regexp"
"regexp"
)
)
// found at https://www.regextester.com/106421
//based on emojis found at https://unicode.org/emoji/charts/full-emoji-list.html
const findEmoji = `(\\u00a9|\\u00ae|[\\u2000-\\u3300]|\\ud83c[\\ud000-` +
const findEmoji = `[\xA9\xAE\x{2000}-\x{3300}\x{1F000}-\x{1FBFF}]`
`\\udfff]|\\ud83d[\\ud000-\\udfff]|\\ud83e[\\ud000-\\udfff])`
var InvalidReaction = errors.New(
var InvalidReaction = errors.New(
"The reaction is not valid, it must be a single emoji")
"The reaction is not valid, it must be a single emoji")
@@ -35,8 +36,10 @@ func ValidateReaction(reaction string) error {
@@ -35,8 +36,10 @@ func ValidateReaction(reaction string) error {
return InvalidReaction
return InvalidReaction
}
}
// make sure it is only one emoji
reader := bufio.NewReader(bytes.NewReader([]byte(reaction)))
if !compiledRegex.Match([]byte(reaction)) {
 
// make sure it has emojis
 
if !compiledRegex.MatchReader(reader) {
return InvalidReaction
return InvalidReaction
}
}
Loading