2021-04-19 18:42:19 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
2021-05-15 10:58:11 +01:00
|
|
|
"fmt"
|
2021-04-19 18:42:19 +01:00
|
|
|
"strings"
|
2021-09-01 17:29:25 +01:00
|
|
|
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/regexes"
|
2021-04-19 18:42:19 +01:00
|
|
|
)
|
|
|
|
|
2021-09-11 12:19:06 +01:00
|
|
|
// DeriveMentionsFromText takes a plaintext (ie., not html-formatted) text,
|
2021-04-19 18:42:19 +01:00
|
|
|
// and applies a regex to it to return a deduplicated list of accounts
|
2021-09-11 12:19:06 +01:00
|
|
|
// mentioned in that text.
|
2021-04-19 18:42:19 +01:00
|
|
|
//
|
|
|
|
// It will look for fully-qualified account names in the form "@user@example.org".
|
|
|
|
// or the form "@username" for local users.
|
2021-09-11 12:19:06 +01:00
|
|
|
func DeriveMentionsFromText(text string) []string {
|
2021-04-19 18:42:19 +01:00
|
|
|
mentionedAccounts := []string{}
|
2021-09-11 12:19:06 +01:00
|
|
|
for _, m := range regexes.MentionFinder.FindAllStringSubmatch(text, -1) {
|
2021-04-19 18:42:19 +01:00
|
|
|
mentionedAccounts = append(mentionedAccounts, m[1])
|
|
|
|
}
|
2021-08-20 11:26:56 +01:00
|
|
|
return UniqueStrings(mentionedAccounts)
|
2021-04-19 18:42:19 +01:00
|
|
|
}
|
|
|
|
|
2021-09-11 12:19:06 +01:00
|
|
|
// DeriveHashtagsFromText takes a plaintext (ie., not html-formatted) text,
|
2021-04-19 18:42:19 +01:00
|
|
|
// and applies a regex to it to return a deduplicated list of hashtags
|
2021-09-11 12:19:06 +01:00
|
|
|
// used in that text, without the leading #. The case of the returned
|
2021-04-19 18:42:19 +01:00
|
|
|
// tags will be lowered, for consistency.
|
2021-09-11 12:19:06 +01:00
|
|
|
func DeriveHashtagsFromText(text string) []string {
|
2021-04-19 18:42:19 +01:00
|
|
|
tags := []string{}
|
2021-09-11 12:19:06 +01:00
|
|
|
for _, m := range regexes.HashtagFinder.FindAllStringSubmatch(text, -1) {
|
2021-07-29 12:18:22 +01:00
|
|
|
tags = append(tags, strings.TrimPrefix(m[1], "#"))
|
2021-04-19 18:42:19 +01:00
|
|
|
}
|
2021-08-20 11:26:56 +01:00
|
|
|
return UniqueStrings(tags)
|
2021-04-19 18:42:19 +01:00
|
|
|
}
|
|
|
|
|
2021-09-11 12:19:06 +01:00
|
|
|
// DeriveEmojisFromText takes a plaintext (ie., not html-formatted) text,
|
2021-04-19 18:42:19 +01:00
|
|
|
// and applies a regex to it to return a deduplicated list of emojis
|
2021-09-11 12:19:06 +01:00
|
|
|
// used in that text, without the surrounding `::`
|
|
|
|
func DeriveEmojisFromText(text string) []string {
|
2021-04-19 18:42:19 +01:00
|
|
|
emojis := []string{}
|
2021-09-11 12:19:06 +01:00
|
|
|
for _, m := range regexes.EmojiFinder.FindAllStringSubmatch(text, -1) {
|
2021-04-19 18:42:19 +01:00
|
|
|
emojis = append(emojis, m[1])
|
|
|
|
}
|
2021-08-20 11:26:56 +01:00
|
|
|
return UniqueStrings(emojis)
|
2021-04-19 18:42:19 +01:00
|
|
|
}
|
|
|
|
|
2021-05-15 10:58:11 +01:00
|
|
|
// ExtractMentionParts extracts the username test_user and the domain example.org
|
|
|
|
// from a mention string like @test_user@example.org.
|
|
|
|
//
|
|
|
|
// If nothing is matched, it will return an error.
|
|
|
|
func ExtractMentionParts(mention string) (username, domain string, err error) {
|
2021-09-01 17:29:25 +01:00
|
|
|
matches := regexes.MentionName.FindStringSubmatch(mention)
|
2021-10-17 13:19:49 +01:00
|
|
|
switch len(matches) {
|
|
|
|
case 2:
|
|
|
|
return matches[1], "", nil
|
|
|
|
case 3:
|
|
|
|
return matches[1], matches[2], nil
|
|
|
|
default:
|
|
|
|
return "", "", fmt.Errorf("couldn't match mention %s", mention)
|
2021-05-15 10:58:11 +01:00
|
|
|
}
|
2021-05-29 18:36:54 +01:00
|
|
|
}
|