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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
package routes
import (
"regexp"
"github.com/FChannel0/FChannel-Server/config"
"github.com/FChannel0/FChannel-Server/db"
"github.com/FChannel0/FChannel-Server/util"
"github.com/FChannel0/FChannel-Server/webfinger"
"github.com/gofiber/fiber/v2"
)
func PostGet(ctx *fiber.Ctx) error {
actor, err := db.GetActorByNameFromDB(ctx.Params("actor"))
if err != nil {
return err
}
postId := ctx.Params("post")
inReplyTo := actor.Id + "/" + postId
var returnData PageData
returnData.Board.Name = actor.Name
returnData.Board.PrefName = actor.PreferredUsername
returnData.Board.To = actor.Outbox
returnData.Board.Actor = actor
returnData.Board.Summary = actor.Summary
returnData.Board.ModCred, _ = getPassword(ctx)
returnData.Board.Domain = config.Domain
returnData.Board.Restricted = actor.Restricted
returnData.ReturnTo = "feed"
capt, err := db.GetRandomCaptcha()
if err != nil {
return err
}
returnData.Board.Captcha = config.Domain + "/" + capt
returnData.Board.CaptchaCode = util.GetCaptchaCode(returnData.Board.Captcha)
returnData.Instance, err = db.GetActorFromDB(config.Domain)
if err != nil {
return err
}
returnData.Title = "/" + returnData.Board.Name + "/ - " + returnData.Board.PrefName
returnData.Key = config.Key
returnData.Boards = db.Boards
re := regexp.MustCompile("f(\\w|[!@#$%^&*<>])+-(\\w|[!@#$%^&*<>])+")
if re.MatchString(postId) { // if non local actor post
name := util.GetActorFollowNameFromPath(postId)
followActors, err := webfinger.GetActorsFollowFromName(actor, name)
if err != nil {
return err
}
followCollection, err := db.GetActorsFollowPostFromId(followActors, postId)
if err != nil {
return err
}
if len(followCollection.OrderedItems) > 0 {
returnData.Board.InReplyTo = followCollection.OrderedItems[0].Id
returnData.Posts = append(returnData.Posts, followCollection.OrderedItems[0])
actor, err := webfinger.FingerActor(returnData.Board.InReplyTo)
if err != nil {
return err
}
returnData.Board.Post.Actor = actor.Id
}
} else {
collection, err := db.GetObjectByIDFromDB(inReplyTo)
if err != nil {
return err
}
if collection.Actor != nil {
returnData.Board.Post.Actor = collection.Actor.Id
returnData.Board.InReplyTo = inReplyTo
if len(collection.OrderedItems) > 0 {
returnData.Posts = append(returnData.Posts, collection.OrderedItems[0])
}
}
}
if len(returnData.Posts) > 0 {
returnData.PostId = util.ShortURL(returnData.Board.To, returnData.Posts[0].Id)
}
returnData.Themes = &config.Themes
returnData.ThemeCookie = getThemeCookie(ctx)
return ctx.Render("npost", fiber.Map{
"page": returnData,
}, "layouts/main")
}
|