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
|
package activitypub
import (
"encoding/json"
"fmt"
"io/ioutil"
"mime/multipart"
"net/http"
"os"
"regexp"
"strings"
"time"
"github.com/FChannel0/FChannel-Server/config"
"github.com/FChannel0/FChannel-Server/util"
"github.com/gofiber/fiber/v2"
)
// False positive for application/ld+ld, application/activity+ld, application/json+json
var activityRegexp = regexp.MustCompile("application\\/(ld|json|activity)((\\+(ld|json))|$)")
func AcceptActivity(header string) bool {
accept := false
if strings.Contains(header, ";") {
split := strings.Split(header, ";")
accept = accept || activityRegexp.MatchString(split[0])
accept = accept || strings.Contains(split[len(split)-1], "profile=\"https://www.w3.org/ns/activitystreams\"")
} else {
accept = accept || activityRegexp.MatchString(header)
}
return accept
}
func CreateAttachmentObject(file multipart.File, header *multipart.FileHeader) ([]ObjectBase, *os.File, error) {
contentType, err := util.GetFileContentType(file)
if err != nil {
return nil, nil, util.MakeError(err, "CreateAttachmentObject")
}
filename := header.Filename
size := header.Size
re := regexp.MustCompile(`.+/`)
fileType := re.ReplaceAllString(contentType, "")
tempFile, err := ioutil.TempFile("./public", "*."+fileType)
if err != nil {
return nil, nil, util.MakeError(err, "CreateAttachmentObject")
}
var nAttachment []ObjectBase
var image ObjectBase
image.Type = "Attachment"
image.Name = filename
image.Href = config.Domain + "/" + tempFile.Name()
image.MediaType = contentType
image.Size = size
image.Published = time.Now().UTC()
nAttachment = append(nAttachment, image)
return nAttachment, tempFile, nil
}
func CreateNewActor(board string, prefName string, summary string, authReq []string, restricted bool) *Actor {
actor := new(Actor)
var path string
if board == "" {
path = config.Domain
actor.Name = "main"
} else {
path = config.Domain + "/" + board
actor.Name = board
}
actor.Type = "Group"
actor.Id = fmt.Sprintf("%s", path)
actor.Following = fmt.Sprintf("%s/following", actor.Id)
actor.Followers = fmt.Sprintf("%s/followers", actor.Id)
actor.Inbox = fmt.Sprintf("%s/inbox", actor.Id)
actor.Outbox = fmt.Sprintf("%s/outbox", actor.Id)
actor.PreferredUsername = prefName
actor.Restricted = restricted
actor.Summary = summary
actor.AuthRequirement = authReq
return actor
}
func CreateObject(objType string) ObjectBase {
var nObj ObjectBase
nObj.Type = objType
nObj.Published = time.Now().UTC()
nObj.Updated = time.Now().UTC()
return nObj
}
func GetActivityFromJson(ctx *fiber.Ctx) (Activity, error) {
var respActivity ActivityRaw
var nActivity Activity
var nType string
if err := json.Unmarshal(ctx.Body(), &respActivity); err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
if res, err := HasContextFromJson(respActivity.AtContextRaw.Context); err == nil && res {
var jObj ObjectBase
if respActivity.Type == "Note" {
jObj, err = GetObjectFromJson(ctx.Body())
if err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
nType = "Create"
} else {
jObj, err = GetObjectFromJson(respActivity.ObjectRaw)
if err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
nType = respActivity.Type
}
actor, err := GetActorFromJson(respActivity.ActorRaw)
if err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
to, err := GetToFromJson(respActivity.ToRaw)
if err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
cc, err := GetToFromJson(respActivity.CcRaw)
if err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
nActivity.AtContext.Context = "https://www.w3.org/ns/activitystreams"
nActivity.Type = nType
nActivity.Actor = &actor
nActivity.Published = respActivity.Published
nActivity.Auth = respActivity.Auth
if len(to) > 0 {
nActivity.To = to
}
if len(cc) > 0 {
nActivity.Cc = cc
}
nActivity.Name = respActivity.Name
nActivity.Object = &jObj
} else if err != nil {
return nActivity, util.MakeError(err, "GetActivityFromJson")
}
return nActivity, nil
}
func GetObjectFromJson(obj []byte) (ObjectBase, error) {
var generic interface{}
var nObj ObjectBase
if err := json.Unmarshal(obj, &generic); err != nil {
return ObjectBase{}, util.MakeError(err, "GetObjectFromJson")
}
if generic != nil {
switch generic.(type) {
case []interface{}:
var lObj ObjectBase
var arrContext ObjectArray
if err := json.Unmarshal(obj, &arrContext.Object); err != nil {
return nObj, util.MakeError(err, "GetObjectFromJson")
}
if len(arrContext.Object) > 0 {
lObj = arrContext.Object[0]
}
nObj = lObj
break
case map[string]interface{}:
var arrContext Object
if err := json.Unmarshal(obj, &arrContext.Object); err != nil {
return nObj, util.MakeError(err, "GetObjectFromJson")
}
nObj = *arrContext.Object
break
case string:
var lObj ObjectBase
var arrContext ObjectString
if err := json.Unmarshal(obj, &arrContext.Object); err != nil {
return nObj, util.MakeError(err, "GetObjectFromJson")
}
lObj.Id = arrContext.Object
nObj = lObj
break
}
}
return nObj, nil
}
func GetObjectsWithoutPreviewsCallback(callback func(id string, href string, mediatype string, name string, size int, published time.Time) error) error {
var id string
var href string
var mediatype string
var name string
var size int
var published time.Time
query := `select id, href, mediatype, name, size, published from activitystream where id in (select attachment from activitystream where attachment!='' and preview='')`
if err := config.DB.QueryRow(query).Scan(&id, &href, &mediatype, &name, &size, &published); err != nil {
return util.MakeError(err, "GetObjectsWithoutPreviewsCallback")
}
if err := callback(id, href, mediatype, name, size, published); err != nil {
return util.MakeError(err, "GetObjectsWithoutPreviewsCallback")
}
return nil
}
func HasContextFromJson(context []byte) (bool, error) {
var generic interface{}
err := json.Unmarshal(context, &generic)
if err != nil {
return false, util.MakeError(err, "GetObjectsWithoutPreviewsCallback")
}
hasContext := false
switch generic.(type) {
case []interface{}:
var arrContext AtContextArray
err = json.Unmarshal(context, &arrContext.Context)
if len(arrContext.Context) > 0 {
if arrContext.Context[0] == "https://www.w3.org/ns/activitystreams" {
hasContext = true
}
}
break
case string:
var arrContext AtContextString
err = json.Unmarshal(context, &arrContext.Context)
if arrContext.Context == "https://www.w3.org/ns/activitystreams" {
hasContext = true
}
break
}
return hasContext, util.MakeError(err, "GetObjectsWithoutPreviewsCallback")
}
func GetActorByNameFromDB(name string) (Actor, error) {
var nActor Actor
var publicKeyPem string
query := `select type, id, name, preferedusername, inbox, outbox, following, followers, restricted, summary, publickeypem from actor where name=$1`
err := config.DB.QueryRow(query, name).Scan(&nActor.Type, &nActor.Id, &nActor.Name, &nActor.PreferredUsername, &nActor.Inbox, &nActor.Outbox, &nActor.Following, &nActor.Followers, &nActor.Restricted, &nActor.Summary, &publicKeyPem)
if err != nil {
return nActor, util.MakeError(err, "GetActorByNameFromDB")
}
if nActor.Id != "" && nActor.PublicKey.PublicKeyPem == "" {
if err := CreatePublicKeyFromPrivate(&nActor, publicKeyPem); err != nil {
return nActor, util.MakeError(err, "GetActorByNameFromDB")
}
}
return nActor, nil
}
func GetActorCollectionReq(collection string) (Collection, error) {
var nCollection Collection
req, err := http.NewRequest("GET", collection, nil)
if err != nil {
return nCollection, util.MakeError(err, "GetActorCollectionReq")
}
// TODO: rewrite this for fiber
pass := "FIXME"
//_, pass := GetPasswordFromSession(r)
req.Header.Set("Accept", config.ActivityStreams)
req.Header.Set("Authorization", "Basic "+pass)
resp, err := util.RouteProxy(req)
if err != nil {
return nCollection, util.MakeError(err, "GetActorCollectionReq")
}
defer resp.Body.Close()
if resp.StatusCode == 200 {
body, _ := ioutil.ReadAll(resp.Body)
if err := json.Unmarshal(body, &nCollection); err != nil {
return nCollection, util.MakeError(err, "GetActorCollectionReq")
}
}
return nCollection, nil
}
func GetActorFollowNameFromPath(path string) string {
var actor string
re := regexp.MustCompile("f\\w+-")
actor = re.FindString(path)
actor = strings.Replace(actor, "f", "", 1)
actor = strings.Replace(actor, "-", "", 1)
return actor
}
func GetActorFromDB(id string) (Actor, error) {
var nActor Actor
var publicKeyPem string
query := `select type, id, name, preferedusername, inbox, outbox, following, followers, restricted, summary, publickeypem from actor where id=$1`
err := config.DB.QueryRow(query, id).Scan(&nActor.Type, &nActor.Id, &nActor.Name, &nActor.PreferredUsername, &nActor.Inbox, &nActor.Outbox, &nActor.Following, &nActor.Followers, &nActor.Restricted, &nActor.Summary, &publicKeyPem)
if err != nil {
return nActor, util.MakeError(err, "GetActorFromDB")
}
nActor.PublicKey, err = GetActorPemFromDB(publicKeyPem)
if err != nil {
return nActor, util.MakeError(err, "GetActorFromDB")
}
if nActor.Id != "" && nActor.PublicKey.PublicKeyPem == "" {
if err := CreatePublicKeyFromPrivate(&nActor, publicKeyPem); err != nil {
return nActor, util.MakeError(err, "")
}
}
return nActor, nil
}
func GetActorFromJson(actor []byte) (Actor, error) {
var generic interface{}
var nActor Actor
err := json.Unmarshal(actor, &generic)
if err != nil {
return nActor, util.MakeError(err, "GetActorFromJson")
}
if generic != nil {
switch generic.(type) {
case map[string]interface{}:
err = json.Unmarshal(actor, &nActor)
break
case string:
var str string
err = json.Unmarshal(actor, &str)
nActor.Id = str
break
}
return nActor, util.MakeError(err, "GetActorFromJson")
}
return nActor, nil
}
func GetActorsFollowPostFromId(actors []string, id string) (Collection, error) {
var collection Collection
for _, e := range actors {
obj := ObjectBase{Id: e + "/" + id}
tempCol, err := obj.GetCollectionFromPath()
if err != nil {
return collection, util.MakeError(err, "GetActorsFollowPostFromId")
}
if len(tempCol.OrderedItems) > 0 {
collection = tempCol
return collection, nil
}
}
return collection, nil
}
func GetBoards() ([]Actor, error) {
var boards []Actor
query := `select type, id, name, preferedusername, inbox, outbox, following, followers FROM actor`
rows, err := config.DB.Query(query)
if err != nil {
return boards, util.MakeError(err, "GetBoards")
}
defer rows.Close()
for rows.Next() {
var actor = new(Actor)
if err := rows.Scan(&actor.Type, &actor.Id, &actor.Name, &actor.PreferredUsername, &actor.Inbox, &actor.Outbox, &actor.Following, &actor.Followers); err != nil {
return boards, util.MakeError(err, "GetBoards")
}
boards = append(boards, *actor)
}
return boards, nil
}
func GetToFromJson(to []byte) ([]string, error) {
var generic interface{}
if len(to) == 0 {
return nil, nil
}
err := json.Unmarshal(to, &generic)
if err != nil {
return nil, util.MakeError(err, "GetToFromJson")
}
if generic != nil {
var nStr []string
switch generic.(type) {
case []interface{}:
err = json.Unmarshal(to, &nStr)
break
case string:
var str string
err = json.Unmarshal(to, &str)
nStr = append(nStr, str)
break
}
return nStr, util.MakeError(err, "GetToFromJson")
}
return nil, nil
}
func GetActorAndInstance(path string) (string, string) {
re := regexp.MustCompile(`([@]?([\w\d.-_]+)[@](.+))`)
atFormat := re.MatchString(path)
if atFormat {
match := re.FindStringSubmatch(path)
if len(match) > 2 {
return match[2], match[3]
}
}
re = regexp.MustCompile(`(https?://)(www)?([\w\d-_.:]+)(/|\s+|\r|\r\n)?$`)
mainActor := re.MatchString(path)
if mainActor {
match := re.FindStringSubmatch(path)
if len(match) > 2 {
return "main", match[3]
}
}
re = regexp.MustCompile(`(https?://)?(www)?([\w\d-_.:]+)\/([\w\d-_.]+)(\/([\w\d-_.]+))?`)
httpFormat := re.MatchString(path)
if httpFormat {
match := re.FindStringSubmatch(path)
if len(match) > 3 {
if match[4] == "users" {
return match[6], match[3]
}
return match[4], match[3]
}
}
return "", ""
}
|