blob: 51c8f41c78e478550e1563ccdfb993b9aa3c7616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
package db
import (
"fmt"
"regexp"
"strings"
"github.com/FChannel0/FChannel-Server/activitypub"
)
func GetActorFromPath(location string, prefix string) (activitypub.Actor, error) {
pattern := fmt.Sprintf("%s([^/\n]+)(/.+)?", prefix)
re := regexp.MustCompile(pattern)
match := re.FindStringSubmatch(location)
var actor string
if len(match) < 1 {
actor = "/"
} else {
actor = strings.Replace(match[1], "/", "", -1)
}
if actor == "/" || actor == "outbox" || actor == "inbox" || actor == "following" || actor == "followers" {
actor = "main"
}
var nActor activitypub.Actor
nActor, err := GetActorByNameFromDB(actor)
if err != nil {
return nActor, err
}
if nActor.Id == "" {
nActor = GetActorByName(actor)
}
return nActor, nil
}
func GetActorByName(name string) activitypub.Actor {
var actor activitypub.Actor
for _, e := range Boards {
if e.Actor.Name == name {
actor = e.Actor
}
}
return actor
}
|