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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
|
package post
import (
"fmt"
"html/template"
"io/ioutil"
"mime/multipart"
"os"
"os/exec"
"regexp"
"strings"
"time"
"github.com/FChannel0/FChannel-Server/activitypub"
"github.com/FChannel0/FChannel-Server/config"
"github.com/FChannel0/FChannel-Server/db"
"github.com/FChannel0/FChannel-Server/util"
"github.com/gofiber/fiber/v2"
)
func ConvertHashLink(domain string, link string) string {
re := regexp.MustCompile(`(#.+)`)
parsedLink := re.FindString(link)
if parsedLink != "" {
parsedLink = domain + "" + strings.Replace(parsedLink, "#", "", 1)
parsedLink = strings.Replace(parsedLink, "\r", "", -1)
} else {
parsedLink = link
}
return parsedLink
}
func ParseCommentForReplies(comment string, op string) ([]activitypub.ObjectBase, error) {
re := regexp.MustCompile(`(>>(https?://[A-Za-z0-9_.:\-~]+\/[A-Za-z0-9_.\-~]+\/)(f[A-Za-z0-9_.\-~]+-)?([A-Za-z0-9_.\-~]+)?#?([A-Za-z0-9_.\-~]+)?)`)
match := re.FindAllStringSubmatch(comment, -1)
var links []string
for i := 0; i < len(match); i++ {
str := strings.Replace(match[i][0], ">>", "", 1)
str = strings.Replace(str, "www.", "", 1)
str = strings.Replace(str, "http://", "", 1)
str = strings.Replace(str, "https://", "", 1)
str = config.TP + "" + str
_, isReply, err := db.IsReplyToOP(op, str)
if err != nil {
return nil, util.MakeError(err, "ParseCommentForReplies")
}
if !util.IsInStringArray(links, str) && isReply {
links = append(links, str)
}
}
var validLinks []activitypub.ObjectBase
for i := 0; i < len(links); i++ {
reqActivity := activitypub.Activity{Id: links[i]}
_, isValid, err := reqActivity.CheckValid()
if err != nil {
return nil, util.MakeError(err, "ParseCommentForReplies")
}
if isValid {
var reply activitypub.ObjectBase
reply.Id = links[i]
reply.Published = time.Now().UTC()
validLinks = append(validLinks, reply)
}
}
return validLinks, nil
}
func ParseCommentForReply(comment string) (string, error) {
re := regexp.MustCompile(`(>>(https?://[A-Za-z0-9_.:\-~]+\/[A-Za-z0-9_.\-~]+\/)(f[A-Za-z0-9_.\-~]+-)?([A-Za-z0-9_.\-~]+)?#?([A-Za-z0-9_.\-~]+)?)`)
match := re.FindAllStringSubmatch(comment, -1)
var links []string
for i := 0; i < len(match); i++ {
str := strings.Replace(match[i][0], ">>", "", 1)
links = append(links, str)
}
if len(links) > 0 {
reqActivity := activitypub.Activity{Id: strings.ReplaceAll(links[0], ">", "")}
_, isValid, err := reqActivity.CheckValid()
if err != nil {
return "", util.MakeError(err, "ParseCommentForReply")
}
if isValid {
return links[0], nil
}
}
return "", nil
}
func ParseLinkTitle(actorName string, op string, content string) string {
re := regexp.MustCompile(`(>>(https?://[A-Za-z0-9_.:\-~]+\/[A-Za-z0-9_.\-~]+\/)\w+(#.+)?)`)
match := re.FindAllStringSubmatch(content, -1)
for i, _ := range match {
link := strings.Replace(match[i][0], ">>", "", 1)
isOP := ""
domain := match[i][2]
if link == op {
isOP = " (OP)"
}
link = ConvertHashLink(domain, link)
content = strings.Replace(content, match[i][0], ">>"+util.ShortURL(actorName, link)+isOP, 1)
}
content = strings.ReplaceAll(content, "'", "'")
content = strings.ReplaceAll(content, "\"", """)
content = strings.ReplaceAll(content, ">", `/\<`)
return content
}
func ParseOptions(ctx *fiber.Ctx, obj activitypub.ObjectBase) activitypub.ObjectBase {
options := util.EscapeString(ctx.FormValue("options"))
if options != "" {
option := strings.Split(options, ";")
email := regexp.MustCompile(".+@.+\\..+")
wallet := regexp.MustCompile("wallet:.+")
delete := regexp.MustCompile("delete:.+")
for _, e := range option {
if e == "noko" {
obj.Option = append(obj.Option, "noko")
} else if e == "sage" {
obj.Option = append(obj.Option, "sage")
} else if e == "nokosage" {
obj.Option = append(obj.Option, "nokosage")
} else if email.MatchString(e) {
obj.Option = append(obj.Option, "email:"+e)
} else if wallet.MatchString(e) {
obj.Option = append(obj.Option, "wallet")
var wallet activitypub.CryptoCur
value := strings.Split(e, ":")
wallet.Type = value[0]
wallet.Address = value[1]
obj.Wallet = append(obj.Wallet, wallet)
} else if delete.MatchString(e) {
obj.Option = append(obj.Option, e)
}
}
}
return obj
}
func CheckCaptcha(captcha string) (bool, error) {
parts := strings.Split(captcha, ":")
if strings.Trim(parts[0], " ") == "" || strings.Trim(parts[1], " ") == "" {
return false, nil
}
path := "public/" + parts[0] + ".png"
code, err := util.GetCaptchaCode(path)
if err != nil {
return false, util.MakeError(err, "ParseOptions")
}
if code != "" {
err = util.DeleteCaptchaCode(path)
if err != nil {
return false, util.MakeError(err, "ParseOptions")
}
err = util.CreateNewCaptcha()
if err != nil {
return false, util.MakeError(err, "ParseOptions")
}
}
return code == strings.ToUpper(parts[1]), nil
}
func GetCaptchaCode(captcha string) string {
re := regexp.MustCompile("\\w+\\.\\w+$")
code := re.FindString(captcha)
re = regexp.MustCompile("\\w+")
code = re.FindString(code)
return code
}
func IsMediaBanned(f multipart.File) (bool, error) {
f.Seek(0, 0)
fileBytes := make([]byte, 2048)
_, err := f.Read(fileBytes)
if err != nil {
return true, util.MakeError(err, "IsMediaBanned")
}
hash := util.HashBytes(fileBytes)
f.Seek(0, 0)
return db.IsHashBanned(hash)
}
func SupportedMIMEType(mime string) bool {
for _, e := range config.SupportedFiles {
if e == mime {
return true
}
}
return false
}
func ObjectFromForm(ctx *fiber.Ctx, obj activitypub.ObjectBase) (activitypub.ObjectBase, error) {
var err error
var file multipart.File
header, _ := ctx.FormFile("file")
if header != nil {
file, _ = header.Open()
}
if file != nil {
defer file.Close()
var tempFile = new(os.File)
obj.Attachment, tempFile, err = activitypub.CreateAttachmentObject(file, header)
if err != nil {
return obj, util.MakeError(err, "ObjectFromForm")
}
defer tempFile.Close()
fileBytes, _ := ioutil.ReadAll(file)
tempFile.Write(fileBytes)
re := regexp.MustCompile(`image/(jpe?g|png|webp)`)
if re.MatchString(obj.Attachment[0].MediaType) {
fileLoc := strings.ReplaceAll(obj.Attachment[0].Href, config.Domain, "")
cmd := exec.Command("exiv2", "rm", "."+fileLoc)
if err := cmd.Run(); err != nil {
return obj, util.MakeError(err, "ObjectFromForm")
}
}
obj.Preview = obj.Attachment[0].CreatePreview()
}
obj.AttributedTo = util.EscapeString(ctx.FormValue("name"))
obj.TripCode = util.EscapeString(ctx.FormValue("tripcode"))
obj.Name = util.EscapeString(ctx.FormValue("subject"))
obj.Content = util.EscapeString(ctx.FormValue("comment"))
obj.Sensitive = (ctx.FormValue("sensitive") != "")
obj = ParseOptions(ctx, obj)
var originalPost activitypub.ObjectBase
originalPost.Id = util.EscapeString(ctx.FormValue("inReplyTo"))
obj.InReplyTo = append(obj.InReplyTo, originalPost)
var activity activitypub.Activity
if !util.IsInStringArray(activity.To, originalPost.Id) {
activity.To = append(activity.To, originalPost.Id)
}
if originalPost.Id != "" {
if local, _ := activity.IsLocal(); !local {
actor, err := activitypub.FingerActor(originalPost.Id)
if err != nil {
return obj, util.MakeError(err, "ObjectFromForm")
}
if !util.IsInStringArray(obj.To, actor.Id) {
obj.To = append(obj.To, actor.Id)
}
} else if err != nil {
return obj, util.MakeError(err, "ObjectFromForm")
}
}
replyingTo, err := ParseCommentForReplies(ctx.FormValue("comment"), originalPost.Id)
if err != nil {
return obj, util.MakeError(err, "ObjectFromForm")
}
for _, e := range replyingTo {
has := false
for _, f := range obj.InReplyTo {
if e.Id == f.Id {
has = true
break
}
}
if !has {
obj.InReplyTo = append(obj.InReplyTo, e)
var activity activitypub.Activity
activity.To = append(activity.To, e.Id)
if local, _ := activity.IsLocal(); !local {
actor, err := activitypub.FingerActor(e.Id)
if err != nil {
return obj, util.MakeError(err, "ObjectFromForm")
}
if !util.IsInStringArray(obj.To, actor.Id) {
obj.To = append(obj.To, actor.Id)
}
}
}
}
return obj, nil
}
func ResizeAttachmentToPreview() error {
return activitypub.GetObjectsWithoutPreviewsCallback(func(id, href, mediatype, name string, size int, published time.Time) error {
re := regexp.MustCompile(`^\w+`)
_type := re.FindString(mediatype)
if _type == "image" {
re = regexp.MustCompile(`.+/`)
file := re.ReplaceAllString(mediatype, "")
nHref := util.GetUniqueFilename(file)
var nPreview activitypub.NestedObjectBase
re = regexp.MustCompile(`/\w+$`)
actor := re.ReplaceAllString(id, "")
nPreview.Type = "Preview"
uid, err := util.CreateUniqueID(actor)
if err != nil {
return util.MakeError(err, "ResizeAttachmentToPreview")
}
nPreview.Id = fmt.Sprintf("%s/%s", actor, uid)
nPreview.Name = name
nPreview.Href = config.Domain + "" + nHref
nPreview.MediaType = mediatype
nPreview.Size = int64(size)
nPreview.Published = published
nPreview.Updated = published
re = regexp.MustCompile(`/public/.+`)
objFile := re.FindString(href)
if id != "" {
cmd := exec.Command("convert", "."+objFile, "-resize", "250x250>", "-strip", "."+nHref)
if err := cmd.Run(); err == nil {
config.Log.Println(objFile + " -> " + nHref)
if err := nPreview.WritePreview(); err != nil {
return util.MakeError(err, "ResizeAttachmentToPreview")
}
obj := activitypub.ObjectBase{Id: id}
if err := obj.UpdatePreview(nPreview.Id); err != nil {
return util.MakeError(err, "ResizeAttachmentToPreview")
}
} else {
return util.MakeError(err, "ResizeAttachmentToPreview")
}
}
}
return nil
})
}
func ParseAttachment(obj activitypub.ObjectBase, catalog bool) template.HTML {
// TODO: convert all of these to Sprintf statements, or use strings.Builder or something, anything but this really
// string concatenation is highly inefficient _especially_ when being used like this
if len(obj.Attachment) < 1 {
return ""
}
var media string
if regexp.MustCompile(`image\/`).MatchString(obj.Attachment[0].MediaType) {
media = "<img "
media += "id=\"img\" "
media += "main=\"1\" "
media += "enlarge=\"0\" "
media += "attachment=\"" + obj.Attachment[0].Href + "\""
if catalog {
media += "style=\"max-width: 180px; max-height: 180px;\" "
} else {
media += "style=\"float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px;\""
}
if obj.Preview.Id != "" {
media += "src=\"" + util.MediaProxy(obj.Preview.Href) + "\""
media += "preview=\"" + util.MediaProxy(obj.Preview.Href) + "\""
} else {
media += "src=\"" + util.MediaProxy(obj.Attachment[0].Href) + "\""
media += "preview=\"" + util.MediaProxy(obj.Attachment[0].Href) + "\""
}
media += ">"
return template.HTML(media)
}
if regexp.MustCompile(`audio\/`).MatchString(obj.Attachment[0].MediaType) {
media = "<audio "
media += "controls=\"controls\" "
media += "preload=\"metadta\" "
if catalog {
media += "style=\"margin-right: 10px; margin-bottom: 10px; max-width: 180px; max-height: 180px;\" "
} else {
media += "style=\"float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px;\" "
}
media += ">"
media += "<source "
media += "src=\"" + util.MediaProxy(obj.Attachment[0].Href) + "\" "
media += "type=\"" + obj.Attachment[0].MediaType + "\" "
media += ">"
media += "Audio is not supported."
media += "</audio>"
return template.HTML(media)
}
if regexp.MustCompile(`video\/`).MatchString(obj.Attachment[0].MediaType) {
media = "<video "
media += "controls=\"controls\" "
media += "preload=\"metadta\" "
media += "muted=\"muted\" "
if catalog {
media += "style=\"margin-right: 10px; margin-bottom: 10px; max-width: 180px; max-height: 180px;\" "
} else {
media += "style=\"float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px;\" "
}
media += ">"
media += "<source "
media += "src=\"" + util.MediaProxy(obj.Attachment[0].Href) + "\" "
media += "type=\"" + obj.Attachment[0].MediaType + "\" "
media += ">"
media += "Video is not supported."
media += "</video>"
return template.HTML(media)
}
return template.HTML(media)
}
func ParseContent(board activitypub.Actor, op string, content string, thread activitypub.ObjectBase) (template.HTML, error) {
// TODO: should escape more than just < and >, should also escape &, ", and '
nContent := strings.ReplaceAll(content, `<`, "<")
nContent, err := ParseLinkComments(board, op, nContent, thread)
if err != nil {
return "", util.MakeError(err, "ParseContent")
}
nContent = ParseCommentQuotes(nContent)
nContent = strings.ReplaceAll(nContent, `/\<`, ">")
return template.HTML(nContent), nil
}
func ParseLinkComments(board activitypub.Actor, op string, content string, thread activitypub.ObjectBase) (string, error) {
re := regexp.MustCompile(`(>>(https?://[A-Za-z0-9_.:\-~]+\/[A-Za-z0-9_.\-~]+\/)(f[A-Za-z0-9_.\-~]+-)?([A-Za-z0-9_.\-~]+)?#?([A-Za-z0-9_.\-~]+)?)`)
match := re.FindAllStringSubmatch(content, -1)
//add url to each matched reply
for i, _ := range match {
isOP := ""
domain := match[i][2]
link := strings.Replace(match[i][0], ">>", "", 1)
if link == op {
isOP = " (OP)"
}
parsedLink := ConvertHashLink(domain, link)
//formate the hover title text
var quoteTitle string
// if the quoted content is local get it
// else get it from the database
if thread.Id == link {
quoteTitle = ParseLinkTitle(board.Outbox, op, thread.Content)
} else {
for _, e := range thread.Replies.OrderedItems {
if e.Id == parsedLink {
quoteTitle = ParseLinkTitle(board.Outbox, op, e.Content)
break
}
}
if quoteTitle == "" {
obj := activitypub.ObjectBase{Id: parsedLink}
col, err := obj.GetCollectionFromPath()
if err != nil {
return "", util.MakeError(err, "ParseLinkComments")
}
if len(col.OrderedItems) > 0 {
quoteTitle = ParseLinkTitle(board.Outbox, op, col.OrderedItems[0].Content)
} else {
quoteTitle = ParseLinkTitle(board.Outbox, op, parsedLink)
}
}
}
if replyID, isReply, err := db.IsReplyToOP(op, parsedLink); err == nil || !isReply {
id := util.ShortURL(board.Outbox, replyID)
content = strings.Replace(content, match[i][0], "<a class=\"reply\" title=\""+quoteTitle+"\" href=\"/"+board.Name+"/"+util.ShortURL(board.Outbox, op)+"#"+id+"\">>>"+id+""+isOP+"</a>", -1)
} else {
//this is a cross post
parsedOP, err := db.GetReplyOP(parsedLink)
if err == nil {
link = parsedOP + "#" + util.ShortURL(parsedOP, parsedLink)
}
actor, err := activitypub.FingerActor(parsedLink)
if err == nil && actor.Id != "" {
content = strings.Replace(content, match[i][0], "<a class=\"reply\" title=\""+quoteTitle+"\" href=\""+link+"\">>>"+util.ShortURL(board.Outbox, parsedLink)+isOP+" →</a>", -1)
}
}
}
return content, nil
}
func ParseCommentQuotes(content string) string {
// replace quotes
re := regexp.MustCompile(`((\r\n|\r|\n|^)>(.+)?[^\r\n])`)
match := re.FindAllStringSubmatch(content, -1)
for i, _ := range match {
quote := strings.Replace(match[i][0], ">", ">", 1)
line := re.ReplaceAllString(match[i][0], "<span class=\"quote\">"+quote+"</span>")
content = strings.Replace(content, match[i][0], line, 1)
}
//replace isolated greater than symboles
re = regexp.MustCompile(`(\r\n|\n|\r)>`)
return re.ReplaceAllString(content, "\r\n<span class=\"quote\">></span>")
}
|