-
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
-
571
-
572
-
573
-
574
-
575
-
576
-
577
-
578
-
579
-
580
-
581
-
582
-
583
-
584
-
585
-
586
-
587
-
588
-
589
-
590
-
591
-
592
-
593
-
594
-
595
-
596
-
597
-
598
-
599
-
600
-
601
-
602
-
603
-
604
-
605
-
606
-
607
-
608
-
609
-
610
-
611
-
612
-
613
-
614
-
615
-
616
-
617
-
618
-
619
-
620
-
621
-
622
-
623
-
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
-
632
-
633
-
634
-
635
-
636
-
637
-
638
-
639
-
640
-
641
-
642
-
643
-
644
-
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
-
653
-
654
-
655
-
656
-
657
-
658
-
659
-
660
-
661
-
662
-
663
-
664
-
665
-
666
-
667
-
668
-
669
-
670
-
671
-
672
-
673
-
674
-
675
-
676
-
677
-
678
-
679
-
680
-
681
-
682
-
683
-
684
-
685
-
686
-
687
-
688
-
689
-
690
-
691
-
692
-
693
-
694
-
695
-
696
-
697
-
698
-
699
-
700
-
701
-
702
-
703
-
704
-
705
-
706
-
707
-
708
-
709
-
710
-
711
-
712
-
713
-
714
-
715
-
716
-
717
-
718
-
719
-
720
-
721
-
722
-
723
-
724
-
725
-
726
-
727
-
728
-
729
-
730
-
731
-
732
-
733
-
734
-
735
-
736
-
737
-
738
-
739
-
740
-
741
-
742
-
743
-
744
-
745
-
746
-
747
-
748
-
749
-
750
-
751
-
752
-
753
-
754
-
755
-
756
-
757
-
758
-
759
-
760
-
761
-
762
-
763
-
764
-
765
-
766
-
767
-
768
-
769
-
770
-
771
-
772
-
773
-
774
-
775
-
776
-
777
-
778
-
779
-
780
-
781
-
782
-
783
-
784
-
785
-
786
-
787
-
788
-
789
-
790
-
791
-
792
-
793
-
794
-
795
-
796
-
797
-
798
-
799
-
800
-
801
-
802
-
803
-
804
-
805
-
806
-
807
-
808
-
809
-
810
-
811
-
812
-
813
-
814
-
815
-
816
-
817
-
818
-
819
-
820
-
821
-
822
-
823
-
824
-
825
-
826
-
827
-
828
-
829
-
830
-
831
-
832
-
833
-
834
-
835
-
836
-
837
-
838
-
839
-
840
-
841
-
842
-
843
-
844
-
845
-
846
-
847
-
848
-
849
-
850
-
851
-
852
-
853
-
854
-
855
-
856
-
857
-
858
-
859
-
860
-
861
-
862
-
863
-
864
-
865
-
866
-
867
-
868
-
869
-
870
-
871
-
872
-
873
-
874
-
875
-
876
-
877
-
878
-
879
-
880
-
881
-
882
-
883
-
884
-
885
-
886
-
887
-
888
-
889
-
890
-
891
-
892
-
893
-
894
-
895
-
896
-
897
-
898
-
899
-
900
-
901
-
902
-
903
-
904
-
905
-
906
-
907
-
908
-
909
-
910
-
911
-
912
-
913
-
914
-
915
-
916
-
917
-
918
-
919
-
920
-
921
-
922
-
923
-
924
-
925
-
926
-
927
-
928
-
929
-
930
-
931
-
932
-
933
-
934
-
935
-
936
-
937
-
938
-
939
-
940
-
941
-
942
-
943
-
944
-
945
-
946
-
947
-
948
-
949
-
950
-
951
-
952
-
953
-
954
-
955
-
956
-
957
-
958
-
959
-
960
-
961
-
962
-
963
-
964
-
965
-
966
-
967
-
968
-
969
-
970
-
971
-
972
-
973
-
974
-
975
-
976
-
977
-
978
-
979
-
980
-
981
-
982
-
983
-
984
-
985
-
986
-
987
-
988
-
989
-
990
-
991
-
992
-
993
-
994
-
995
-
996
-
997
-
998
-
999
-
1000
-
1001
-
1002
-
1003
-
1004
-
1005
-
1006
-
1007
-
1008
-
1009
-
1010
-
1011
-
1012
-
1013
-
1014
-
1015
-
1016
-
1017
-
1018
-
1019
-
1020
-
1021
-
1022
-
1023
-
1024
-
1025
-
1026
-
1027
-
1028
-
1029
-
1030
-
1031
-
1032
-
1033
-
1034
-
1035
-
1036
-
1037
-
1038
-
1039
-
1040
-
1041
-
1042
-
1043
-
1044
-
1045
-
1046
-
1047
-
1048
-
1049
-
1050
-
1051
-
1052
-
1053
-
1054
-
1055
-
1056
-
1057
-
1058
-
1059
-
1060
-
1061
-
1062
-
1063
-
1064
-
1065
-
1066
-
1067
-
1068
-
1069
-
1070
-
1071
-
1072
-
1073
-
1074
-
1075
-
1076
-
1077
-
1078
-
1079
-
1080
-
1081
-
1082
-
1083
-
1084
-
1085
-
1086
-
1087
-
1088
-
1089
-
1090
-
1091
-
1092
-
1093
-
1094
-
1095
-
1096
-
1097
-
1098
-
1099
-
1100
-
1101
-
1102
-
1103
-
1104
-
1105
-
1106
-
1107
-
1108
-
1109
-
1110
-
1111
-
1112
-
1113
-
1114
-
1115
-
1116
-
1117
-
1118
-
1119
-
1120
-
1121
-
1122
-
1123
-
1124
-
1125
-
1126
-
1127
-
1128
-
1129
-
1130
-
1131
-
1132
-
1133
-
1134
-
1135
-
1136
-
1137
-
1138
-
1139
-
1140
-
1141
-
1142
-
1143
-
1144
-
1145
-
1146
-
1147
-
1148
-
1149
-
1150
-
1151
-
1152
-
1153
-
1154
-
1155
-
1156
-
1157
-
1158
-
1159
-
1160
-
1161
-
1162
-
1163
-
1164
-
1165
-
1166
-
1167
-
1168
-
1169
-
1170
-
1171
-
1172
-
1173
-
1174
-
1175
-
1176
-
1177
-
1178
-
1179
-
1180
-
1181
-
1182
-
1183
-
1184
-
1185
-
1186
-
1187
-
1188
-
1189
-
1190
-
1191
-
1192
-
1193
-
1194
-
1195
-
1196
-
1197
-
1198
-
1199
-
1200
-
1201
-
1202
-
1203
-
1204
-
1205
-
1206
-
1207
-
1208
-
1209
-
1210
-
1211
-
1212
-
1213
-
1214
-
1215
-
1216
-
1217
-
1218
-
1219
-
1220
-
1221
-
1222
-
1223
-
1224
-
1225
-
1226
-
1227
-
1228
-
1229
-
1230
-
1231
-
1232
-
1233
-
1234
-
1235
-
1236
-
1237
-
1238
-
1239
-
1240
-
1241
-
1242
-
1243
-
1244
-
1245
-
1246
-
1247
-
1248
-
1249
-
1250
-
1251
-
1252
-
1253
-
1254
-
1255
-
1256
-
1257
-
1258
-
1259
-
1260
-
1261
-
1262
-
1263
-
1264
-
1265
-
1266
-
1267
-
1268
-
1269
-
1270
-
1271
-
1272
-
1273
-
1274
-
1275
-
1276
-
1277
-
1278
-
1279
-
1280
-
1281
-
1282
-
1283
-
1284
-
1285
-
1286
-
1287
-
1288
-
1289
-
1290
-
1291
-
1292
-
1293
-
1294
-
1295
-
1296
-
1297
-
1298
-
1299
-
1300
-
1301
-
1302
-
1303
-
1304
-
1305
-
1306
-
1307
-
1308
-
1309
-
1310
-
1311
-
1312
-
1313
-
1314
-
1315
-
1316
-
1317
-
1318
-
1319
-
1320
-
1321
-
1322
-
1323
-
1324
-
1325
-
1326
-
1327
-
1328
-
1329
-
1330
-
1331
-
1332
-
1333
-
1334
-
1335
-
1336
-
1337
-
1338
-
1339
-
1340
-
1341
-
1342
-
1343
-
1344
-
1345
-
1346
-
1347
-
1348
-
1349
-
1350
-
1351
-
1352
-
1353
-
1354
-
1355
-
1356
-
1357
-
1358
-
1359
-
1360
-
1361
-
1362
-
1363
-
1364
-
1365
-
1366
-
1367
-
1368
-
1369
-
1370
-
1371
-
1372
-
1373
-
1374
-
1375
-
1376
-
1377
-
1378
-
1379
-
1380
-
1381
-
1382
-
1383
-
1384
-
1385
-
1386
-
1387
-
1388
-
1389
-
1390
-
1391
-
1392
-
1393
-
1394
-
1395
-
1396
-
1397
-
1398
-
1399
-
1400
-
1401
-
1402
-
1403
-
1404
-
1405
-
1406
-
1407
-
1408
-
1409
-
1410
-
1411
-
1412
-
1413
-
1414
-
1415
-
1416
-
1417
-
1418
-
1419
-
1420
-
1421
-
1422
-
1423
-
1424
-
1425
-
1426
-
1427
-
1428
-
1429
-
1430
-
1431
-
1432
-
1433
-
1434
-
1435
-
1436
-
1437
-
1438
-
1439
-
1440
-
1441
-
1442
-
1443
-
1444
-
1445
-
1446
-
1447
-
1448
-
1449
-
1450
-
1451
-
1452
-
1453
-
1454
-
1455
-
1456
-
1457
-
1458
-
1459
-
1460
-
1461
-
1462
-
1463
-
1464
-
1465
-
1466
-
1467
-
1468
-
1469
-
1470
-
1471
-
1472
-
1473
-
1474
-
1475
-
1476
-
1477
-
1478
-
1479
-
1480
-
1481
-
1482
-
1483
-
1484
-
1485
-
1486
-
1487
-
1488
-
1489
-
1490
-
1491
-
1492
-
1493
-
1494
-
1495
-
1496
-
1497
-
1498
-
1499
-
1500
-
1501
-
1502
-
1503
-
1504
-
1505
-
1506
-
1507
-
1508
-
1509
-
1510
-
1511
-
1512
-
1513
-
1514
-
1515
-
1516
-
1517
-
1518
-
1519
-
1520
-
1521
-
1522
-
1523
-
1524
-
1525
-
1526
-
1527
-
1528
-
1529
-
1530
-
1531
-
1532
-
1533
-
1534
-
1535
-
1536
-
1537
-
1538
-
1539
-
1540
-
1541
-
1542
-
1543
-
1544
-
1545
-
1546
-
1547
-
1548
-
1549
-
1550
-
1551
-
1552
-
1553
-
1554
-
1555
-
1556
-
1557
-
1558
-
1559
-
1560
-
1561
-
1562
-
1563
-
1564
-
1565
-
1566
-
1567
-
1568
-
1569
-
1570
-
1571
-
1572
-
1573
-
1574
-
1575
-
1576
-
1577
-
1578
-
1579
-
1580
-
1581
-
1582
-
1583
-
1584
-
1585
-
1586
-
1587
-
1588
-
1589
-
1590
-
1591
-
1592
-
1593
-
1594
-
1595
-
1596
-
1597
-
1598
-
1599
-
1600
-
1601
-
1602
-
1603
-
1604
-
1605
-
1606
-
1607
-
1608
-
1609
-
1610
-
1611
-
1612
-
1613
-
1614
-
1615
-
1616
-
1617
-
1618
-
1619
-
1620
-
1621
-
1622
-
1623
-
1624
-
1625
-
1626
-
1627
-
1628
-
1629
-
1630
-
1631
-
1632
-
1633
-
1634
-
1635
-
1636
-
1637
-
1638
-
1639
-
1640
-
1641
-
1642
-
1643
-
1644
-
1645
-
1646
-
1647
-
1648
-
1649
-
1650
-
1651
-
1652
-
1653
-
1654
-
1655
-
1656
-
1657
-
1658
-
1659
-
1660
-
1661
-
1662
-
1663
-
1664
-
1665
-
1666
-
1667
-
1668
-
1669
-
1670
-
1671
-
1672
-
1673
-
1674
-
1675
-
1676
-
1677
-
1678
-
1679
-
1680
-
1681
-
1682
-
1683
-
1684
-
1685
-
1686
-
1687
-
1688
-
1689
-
1690
-
1691
-
1692
-
1693
-
1694
-
1695
-
1696
-
1697
-
1698
-
1699
-
1700
-
1701
-
1702
-
1703
-
1704
-
1705
-
1706
-
1707
-
1708
-
1709
-
1710
-
1711
-
1712
-
1713
-
1714
-
1715
-
1716
-
1717
-
1718
-
1719
-
1720
-
1721
-
1722
-
1723
-
1724
-
1725
-
1726
package activitystreams
import (
"time"
"github.com/buger/jsonparser"
)
// Activity Types
const (
AcceptType ActivityVocabularyType = "Accept"
AddType ActivityVocabularyType = "Add"
AnnounceType ActivityVocabularyType = "Announce"
ArriveType ActivityVocabularyType = "Arrive"
BlockType ActivityVocabularyType = "Block"
CreateType ActivityVocabularyType = "Create"
DeleteType ActivityVocabularyType = "Delete"
DislikeType ActivityVocabularyType = "Dislike"
FlagType ActivityVocabularyType = "Flag"
FollowType ActivityVocabularyType = "Follow"
IgnoreType ActivityVocabularyType = "Ignore"
InviteType ActivityVocabularyType = "Invite"
JoinType ActivityVocabularyType = "Join"
LeaveType ActivityVocabularyType = "Leave"
LikeType ActivityVocabularyType = "Like"
ListenType ActivityVocabularyType = "Listen"
MoveType ActivityVocabularyType = "Move"
OfferType ActivityVocabularyType = "Offer"
QuestionType ActivityVocabularyType = "Question"
RejectType ActivityVocabularyType = "Reject"
ReadType ActivityVocabularyType = "Read"
RemoveType ActivityVocabularyType = "Remove"
TentativeRejectType ActivityVocabularyType = "TentativeReject"
TentativeAcceptType ActivityVocabularyType = "TentativeAccept"
TravelType ActivityVocabularyType = "Travel"
UndoType ActivityVocabularyType = "Undo"
UpdateType ActivityVocabularyType = "Update"
ViewType ActivityVocabularyType = "View"
)
var validContentManagementActivityTypes = [...]ActivityVocabularyType{
CreateType,
DeleteType,
UpdateType,
}
var validCollectionManagementActivityTypes = [...]ActivityVocabularyType{
AddType,
MoveType,
RemoveType,
}
var validReactionsActivityTypes = [...]ActivityVocabularyType{
AcceptType,
BlockType,
DislikeType,
FlagType,
IgnoreType,
LikeType,
RejectType,
TentativeAcceptType,
TentativeRejectType,
}
var validEventRSVPActivityTypes = [...]ActivityVocabularyType{
AcceptType,
IgnoreType,
InviteType,
RejectType,
TentativeAcceptType,
TentativeRejectType,
}
var validGroupManagementActivityTypes = [...]ActivityVocabularyType{
AddType,
JoinType,
LeaveType,
RemoveType,
}
var validContentExperienceActivityTypes = [...]ActivityVocabularyType{
ArriveType,
LeaveType,
TravelType,
}
var validGeoSocialEventsActivityTypes = [...]ActivityVocabularyType{
ArriveType,
LeaveType,
TravelType,
}
var validNotificationActivityTypes = [...]ActivityVocabularyType{
AnnounceType,
}
var validQuestionActivityTypes = [...]ActivityVocabularyType{
QuestionType,
}
var validRelationshipManagementActivityTypes = [...]ActivityVocabularyType{
AcceptType,
AddType,
BlockType,
CreateType,
DeleteType,
FollowType,
IgnoreType,
InviteType,
RejectType,
}
var validNegatingActivityTypes = [...]ActivityVocabularyType{
UndoType,
}
var validOffersActivityTypes = [...]ActivityVocabularyType{
OfferType,
}
var validIntransitiveActivityTypes = [...]ActivityVocabularyType{
ArriveType,
TravelType,
QuestionType,
}
var validActivityTypes = [...]ActivityVocabularyType{
AcceptType,
AddType,
AnnounceType,
BlockType,
CreateType,
DeleteType,
DislikeType,
FlagType,
FollowType,
IgnoreType,
InviteType,
JoinType,
LeaveType,
LikeType,
ListenType,
MoveType,
OfferType,
RejectType,
ReadType,
RemoveType,
TentativeRejectType,
TentativeAcceptType,
UndoType,
UpdateType,
ViewType,
// Actor Types
}
// Activity is a subtype of Object that describes some form of action that may happen,
// is currently happening, or has already happened.
// The Activity type itself serves as an abstract base type for all types of activities.
// It is important to note that the Activity type itself does not carry any specific semantics
// about the kind of action being taken.
type Activity struct {
// ID providesthe globally unique identifier for an Activity Pub Object or Link.
ID ObjectID `jsonld:"id,omitempty"`
// Type identifies the Activity Pub Object or Link type. Multiple values may be specified.
Type ActivityVocabularyType `jsonld:"type,omitempty"`
// Name a simple, human-readable, plain-text name for the object.
// HTML markup MUST NOT be included. The name MAY be expressed using multiple language-tagged values.
Name NaturalLanguageValue `jsonld:"name,omitempty,collapsible"`
// Attachment identifies a resource attached or related to an object that potentially requires special handling.
// The intent is to provide a model that is at least semantically similar to attachments in email.
Attachment Item `jsonld:"attachment,omitempty"`
// AttributedTo identifies one or more entities to which this object is attributed. The attributed entities might not be Actors.
// For instance, an object might be attributed to the completion of another activity.
AttributedTo Item `jsonld:"attributedTo,omitempty"`
// Audience identifies one or more entities that represent the total population of entities
// for which the object can considered to be relevant.
Audience Item `jsonld:"audience,omitempty"`
// Content the content or textual representation of the Activity Pub Object encoded as a JSON string.
// By default, the value of content is HTML.
// The mediaType property can be used in the object to indicate a different content type.
// (The content MAY be expressed using multiple language-tagged values.)
Content NaturalLanguageValue `jsonld:"content,omitempty,collapsible"`
// Context identifies the context within which the object exists or an activity was performed.
// The notion of "context" used is intentionally vague.
// The intended function is to serve as a means of grouping objects and activities that share a
// common originating context or purpose. An example could be all activities relating to a common project or event.
Context Item `jsonld:"context,omitempty"`
// EndTime the date and time describing the actual or expected ending time of the object.
// When used with an Activity object, for instance, the endTime property specifies the moment
// the activity concluded or is expected to conclude.
EndTime time.Time `jsonld:"endTime,omitempty"`
// Generator identifies the entity (e.g. an application) that generated the object.
Generator Item `jsonld:"generator,omitempty"`
// Icon indicates an entity that describes an icon for this object.
// The image should have an aspect ratio of one (horizontal) to one (vertical)
// and should be suitable for presentation at a small size.
Icon Item `jsonld:"icon,omitempty"`
// Image indicates an entity that describes an image for this object.
// Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Image Item `jsonld:"image,omitempty"`
// InReplyTo indicates one or more entities for which this object is considered a response.
InReplyTo Item `jsonld:"inReplyTo,omitempty"`
// Location indicates one or more physical or logical locations associated with the object.
Location Item `jsonld:"location,omitempty"`
// Preview identifies an entity that providesa preview of this object.
Preview Item `jsonld:"preview,omitempty"`
// Published the date and time at which the object was published
Published time.Time `jsonld:"published,omitempty"`
// Replies identifies a Collection containing objects considered to be responses to this object.
Replies Item `jsonld:"replies,omitempty"`
// StartTime the date and time describing the actual or expected starting time of the object.
// When used with an Activity object, for instance, the startTime property specifies
// the moment the activity began or is scheduled to begin.
StartTime time.Time `jsonld:"startTime,omitempty"`
// Summary a natural language summarization of the object encoded as HTML.
// *Multiple language tagged summaries may be provided.)
Summary NaturalLanguageValue `jsonld:"summary,omitempty,collapsible"`
// Tag One or more "tags" that have been associated with an objects. A tag can be any kind of Activity Pub Object.
// The key difference between attachment and tag is that the former implies association by inclusion,
// while the latter implies associated by reference.
Tag Item `jsonld:"tag,omitempty"`
// Updated the date and time at which the object was updated
Updated time.Time `jsonld:"updated,omitempty"`
// URL identifies one or more links to representations of the object
URL LinkOrURI `jsonld:"url,omitempty"`
// To identifies an entity considered to be part of the public primary audience of an Activity Pub Object
To ItemCollection `jsonld:"to,omitempty"`
// Bto identifies an Activity Pub Object that is part of the private primary audience of this Activity Pub Object.
Bto ItemCollection `jsonld:"bto,omitempty"`
// CC identifies an Activity Pub Object that is part of the public secondary audience of this Activity Pub Object.
CC ItemCollection `jsonld:"cc,omitempty"`
// BCC identifies one or more Objects that are part of the private secondary audience of this Activity Pub Object.
BCC ItemCollection `jsonld:"bcc,omitempty"`
// Duration When the object describes a time-bound resource, such as an audio or video, a meeting, etc,
// the duration property indicates the object's approximate duration.
// The value must be expressed as an xsd:duration as defined by [ xmlschema11-2],
// section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").
Duration time.Duration `jsonld:"duration,omitempty"`
// Actor describes one or more entities that either performed or are expected to perform the activity.
// Any single activity can have multiple actors. The actor may be specified using an indirect Link.
Actor Item `jsonld:"actor,omitempty"`
// Target describes the indirect object, or target, of the activity.
// The precise meaning of the target is largely dependent on the type of action being described
// but will often be the object of the English preposition "to".
// For instance, in the activity "John added a movie to his wishlist",
// the target of the activity is John's wishlist. An activity can have more than one target.
Target Item `jsonld:"target,omitempty"`
// Result describes the result of the activity. For instance, if a particular action results in the creation
// of a new resource, the result property can be used to describe that new resource.
Result Item `jsonld:"result,omitempty"`
// Origin describes an indirect object of the activity from which the activity is directed.
// The precise meaning of the origin is the object of the English preposition "from".
// For instance, in the activity "John moved an item to List B from List A", the origin of the activity is "List A".
Origin Item `jsonld:"origin,omitempty"`
// Instrument identifies one or more objects used (or to be used) in the completion of an Activity.
Instrument Item `jsonld:"instrument,omitempty"`
// Object When used within an Activity, describes the direct object of the activity.
// For instance, in the activity "John added a movie to his wishlist",
// the object of the activity is the movie added.
// When used within a Relationship describes the entity to which the subject is related.
Object Item `jsonld:"object,omitempty"`
}
// IntransitiveActivity Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions.
// The object property is therefore inappropriate for these activities.
type IntransitiveActivity struct {
// ID providesthe globally unique identifier for an Activity Pub Object or Link.
ID ObjectID `jsonld:"id,omitempty"`
// Type identifies the Activity Pub Object or Link type. Multiple values may be specified.
Type ActivityVocabularyType `jsonld:"type,omitempty"`
// Name a simple, human-readable, plain-text name for the object.
// HTML markup MUST NOT be included. The name MAY be expressed using multiple language-tagged values.
Name NaturalLanguageValue `jsonld:"name,omitempty,collapsible"`
// Attachment identifies a resource attached or related to an object that potentially requires special handling.
// The intent is to provide a model that is at least semantically similar to attachments in email.
Attachment Item `jsonld:"attachment,omitempty"`
// AttributedTo identifies one or more entities to which this object is attributed. The attributed entities might not be Actors.
// For instance, an object might be attributed to the completion of another activity.
AttributedTo Item `jsonld:"attributedTo,omitempty"`
// Audience identifies one or more entities that represent the total population of entities
// for which the object can considered to be relevant.
Audience Item `jsonld:"audience,omitempty"`
// Content the content or textual representation of the Activity Pub Object encoded as a JSON string.
// By default, the value of content is HTML.
// The mediaType property can be used in the object to indicate a different content type.
// (The content MAY be expressed using multiple language-tagged values.)
Content NaturalLanguageValue `jsonld:"content,omitempty,collapsible"`
// Context identifies the context within which the object exists or an activity was performed.
// The notion of "context" used is intentionally vague.
// The intended function is to serve as a means of grouping objects and activities that share a
// common originating context or purpose. An example could be all activities relating to a common project or event.
Context Item `jsonld:"context,omitempty"`
// EndTime the date and time describing the actual or expected ending time of the object.
// When used with an Activity object, for instance, the endTime property specifies the moment
// the activity concluded or is expected to conclude.
EndTime time.Time `jsonld:"endTime,omitempty"`
// Generator identifies the entity (e.g. an application) that generated the object.
Generator Item `jsonld:"generator,omitempty"`
// Icon indicates an entity that describes an icon for this object.
// The image should have an aspect ratio of one (horizontal) to one (vertical)
// and should be suitable for presentation at a small size.
Icon Item `jsonld:"icon,omitempty"`
// Image indicates an entity that describes an image for this object.
// Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Image Item `jsonld:"image,omitempty"`
// InReplyTo indicates one or more entities for which this object is considered a response.
InReplyTo Item `jsonld:"inReplyTo,omitempty"`
// Location indicates one or more physical or logical locations associated with the object.
Location Item `jsonld:"location,omitempty"`
// Preview identifies an entity that providesa preview of this object.
Preview Item `jsonld:"preview,omitempty"`
// Published the date and time at which the object was published
Published time.Time `jsonld:"published,omitempty"`
// Replies identifies a Collection containing objects considered to be responses to this object.
Replies Item `jsonld:"replies,omitempty"`
// StartTime the date and time describing the actual or expected starting time of the object.
// When used with an Activity object, for instance, the startTime property specifies
// the moment the activity began or is scheduled to begin.
StartTime time.Time `jsonld:"startTime,omitempty"`
// Summary a natural language summarization of the object encoded as HTML.
// *Multiple language tagged summaries may be provided.)
Summary NaturalLanguageValue `jsonld:"summary,omitempty,collapsible"`
// Tag One or more "tags" that have been associated with an objects. A tag can be any kind of Activity Pub Object.
// The key difference between attachment and tag is that the former implies association by inclusion,
// while the latter implies associated by reference.
Tag Item `jsonld:"tag,omitempty"`
// Updated the date and time at which the object was updated
Updated time.Time `jsonld:"updated,omitempty"`
// URL identifies one or more links to representations of the object
URL LinkOrURI `jsonld:"url,omitempty"`
// To identifies an entity considered to be part of the public primary audience of an Activity Pub Object
To ItemCollection `jsonld:"to,omitempty"`
// Bto identifies an Activity Pub Object that is part of the private primary audience of this Activity Pub Object.
Bto ItemCollection `jsonld:"bto,omitempty"`
// CC identifies an Activity Pub Object that is part of the public secondary audience of this Activity Pub Object.
CC ItemCollection `jsonld:"cc,omitempty"`
// BCC identifies one or more Objects that are part of the private secondary audience of this Activity Pub Object.
BCC ItemCollection `jsonld:"bcc,omitempty"`
// Duration When the object describes a time-bound resource, such as an audio or video, a meeting, etc,
// the duration property indicates the object's approximate duration.
// The value must be expressed as an xsd:duration as defined by [ xmlschema11-2],
// section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").
Duration time.Duration `jsonld:"duration,omitempty"`
// Actor describes one or more entities that either performed or are expected to perform the activity.
// Any single activity can have multiple actors. The actor may be specified using an indirect Link.
Actor Actor `jsonld:"actor,omitempty"`
// Target describes the indirect object, or target, of the activity.
// The precise meaning of the target is largely dependent on the type of action being described
// but will often be the object of the English preposition "to".
// For instance, in the activity "John added a movie to his wishlist",
// the target of the activity is John's wishlist. An activity can have more than one target.
Target Item `jsonld:"target,omitempty"`
// Result describes the result of the activity. For instance, if a particular action results in the creation
// of a new resource, the result property can be used to describe that new resource.
Result Item `jsonld:"result,omitempty"`
// Origin describes an indirect object of the activity from which the activity is directed.
// The precise meaning of the origin is the object of the English preposition "from".
// For instance, in the activity "John moved an item to List B from List A", the origin of the activity is "List A".
Origin Item `jsonld:"origin,omitempty"`
// Instrument identifies one or more objects used (or to be used) in the completion of an Activity.
Instrument Item `jsonld:"instrument,omitempty"`
}
type (
// Accept indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate
// the context into which the object has been accepted.
Accept Activity
// Add indicates that the actor has added the object to the target. If the target property is not explicitly specified,
// the target would need to be determined implicitly by context.
// The origin can be used to identify the context from which the object originated.
Add Activity
// Announce indicates that the actor is calling the target's attention the object.
// The origin typically has no defined meaning.
Announce Activity
// Arrive is an IntransitiveActivity that indicates that the actor has arrived at the location.
// The origin can be used to identify the context from which the actor originated.
// The target typically has no defined meaning.
Arrive IntransitiveActivity
// Block indicates that the actor is blocking the object. Blocking is a stronger form of Ignore.
// The typical use is to support social systems that allow one user to block activities or content of other users.
// The target and origin typically have no defined meaning.
Block Ignore
// Create indicates that the actor has created the object.
Create Activity
// Delete indicates that the actor has deleted the object.
// If specified, the origin indicates the context from which the object was deleted.
Delete Activity
// Dislike indicates that the actor dislikes the object.
Dislike Activity
// Flag indicates that the actor is "flagging" the object.
// Flagging is defined in the sense common to many social platforms as reporting content as being
// inappropriate for any number of reasons.
Flag Activity
// Follow indicates that the actor is "following" the object. Following is defined in the sense typically used within
// Social systems in which the actor is interested in any activity performed by or on the object.
// The target and origin typically have no defined meaning.
Follow Activity
// Ignore indicates that the actor is ignoring the object. The target and origin typically have no defined meaning.
Ignore Activity
// Invite is a specialization of Offer in which the actor is extending an invitation for the object to the target.
Invite Offer
// Join indicates that the actor has joined the object. The target and origin typically have no defined meaning.
Join Activity
// Leave indicates that the actor has left the object. The target and origin typically have no meaning.
Leave Activity
// Like indicates that the actor likes, recommends or endorses the object.
// The target and origin typically have no defined meaning.
Like Activity
// Listen inherits all properties from Activity.
Listen Activity
// Move indicates that the actor has moved object from origin to target.
// If the origin or target are not specified, either can be determined by context.
Move Activity
// Offer indicates that the actor is offering the object.
// If specified, the target indicates the entity to which the object is being offered.
Offer Activity
// Reject indicates that the actor is rejecting the object. The target and origin typically have no defined meaning.
Reject Activity
// Read indicates that the actor has read the object.
Read Activity
// Remove indicates that the actor is removing the object. If specified,
// the origin indicates the context from which the object is being removed.
Remove Activity
// TentativeReject is a specialization of Reject in which the rejection is considered tentative.
TentativeReject Reject
// TentativeAccept is a specialization of Accept indicating that the acceptance is tentative.
TentativeAccept Accept
// Travel indicates that the actor is traveling to target from origin.
// Travel is an IntransitiveObject whose actor specifies the direct object.
// If the target or origin are not specified, either can be determined by context.
Travel IntransitiveActivity
// Undo indicates that the actor is undoing the object. In most cases, the object will be an Activity describing
// some previously performed action (for instance, a person may have previously "liked" an article but,
// for whatever reason, might choose to undo that like at some later point in time).
// The target and origin typically have no defined meaning.
Undo Activity
// Update indicates that the actor has updated the object. Note, however, that this vocabulary does not define a mechanism
// for describing the actual set of modifications made to object.
// The target and origin typically have no defined meaning.
Update Activity
// View indicates that the actor has viewed the object.
View Activity
)
// Question represents a question being asked. Question objects are an extension of IntransitiveActivity.
// That is, the Question object is an Activity, but the direct object is the question
// itself and therefore it would not contain an object property.
// Either of the anyOf and oneOf properties may be used to express possible answers,
// but a Question object must not have both properties.
type Question struct {
// ID providesthe globally unique identifier for an Activity Pub Object or Link.
ID ObjectID `jsonld:"id,omitempty"`
// Type identifies the Activity Pub Object or Link type. Multiple values may be specified.
Type ActivityVocabularyType `jsonld:"type,omitempty"`
// Name a simple, human-readable, plain-text name for the object.
// HTML markup MUST NOT be included. The name MAY be expressed using multiple language-tagged values.
Name NaturalLanguageValue `jsonld:"name,omitempty,collapsible"`
// Attachment identifies a resource attached or related to an object that potentially requires special handling.
// The intent is to provide a model that is at least semantically similar to attachments in email.
Attachment Item `jsonld:"attachment,omitempty"`
// AttributedTo identifies one or more entities to which this object is attributed. The attributed entities might not be Actors.
// For instance, an object might be attributed to the completion of another activity.
AttributedTo Item `jsonld:"attributedTo,omitempty"`
// Audience identifies one or more entities that represent the total population of entities
// for which the object can considered to be relevant.
Audience Item `jsonld:"audience,omitempty"`
// Content the content or textual representation of the Activity Pub Object encoded as a JSON string.
// By default, the value of content is HTML.
// The mediaType property can be used in the object to indicate a different content type.
// (The content MAY be expressed using multiple language-tagged values.)
Content NaturalLanguageValue `jsonld:"content,omitempty,collapsible"`
// Context identifies the context within which the object exists or an activity was performed.
// The notion of "context" used is intentionally vague.
// The intended function is to serve as a means of grouping objects and activities that share a
// common originating context or purpose. An example could be all activities relating to a common project or event.
Context Item `jsonld:"context,omitempty"`
// EndTime the date and time describing the actual or expected ending time of the object.
// When used with an Activity object, for instance, the endTime property specifies the moment
// the activity concluded or is expected to conclude.
EndTime time.Time `jsonld:"endTime,omitempty"`
// Generator identifies the entity (e.g. an application) that generated the object.
Generator Item `jsonld:"generator,omitempty"`
// Icon indicates an entity that describes an icon for this object.
// The image should have an aspect ratio of one (horizontal) to one (vertical)
// and should be suitable for presentation at a small size.
Icon Item `jsonld:"icon,omitempty"`
// Image indicates an entity that describes an image for this object.
// Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Image Item `jsonld:"image,omitempty"`
// InReplyTo indicates one or more entities for which this object is considered a response.
InReplyTo Item `jsonld:"inReplyTo,omitempty"`
// Location indicates one or more physical or logical locations associated with the object.
Location Item `jsonld:"location,omitempty"`
// Preview identifies an entity that providesa preview of this object.
Preview Item `jsonld:"preview,omitempty"`
// Published the date and time at which the object was published
Published time.Time `jsonld:"published,omitempty"`
// Replies identifies a Collection containing objects considered to be responses to this object.
Replies Item `jsonld:"replies,omitempty"`
// StartTime the date and time describing the actual or expected starting time of the object.
// When used with an Activity object, for instance, the startTime property specifies
// the moment the activity began or is scheduled to begin.
StartTime time.Time `jsonld:"startTime,omitempty"`
// Summary a natural language summarization of the object encoded as HTML.
// *Multiple language tagged summaries may be provided.)
Summary NaturalLanguageValue `jsonld:"summary,omitempty,collapsible"`
// Tag One or more "tags" that have been associated with an objects. A tag can be any kind of Activity Pub Object.
// The key difference between attachment and tag is that the former implies association by inclusion,
// while the latter implies associated by reference.
Tag Item `jsonld:"tag,omitempty"`
// Updated the date and time at which the object was updated
Updated time.Time `jsonld:"updated,omitempty"`
// URL identifies one or more links to representations of the object
URL LinkOrURI `jsonld:"url,omitempty"`
// To identifies an entity considered to be part of the public primary audience of an Activity Pub Object
To ItemCollection `jsonld:"to,omitempty"`
// Bto identifies an Activity Pub Object that is part of the private primary audience of this Activity Pub Object.
Bto ItemCollection `jsonld:"bto,omitempty"`
// CC identifies an Activity Pub Object that is part of the public secondary audience of this Activity Pub Object.
CC ItemCollection `jsonld:"cc,omitempty"`
// BCC identifies one or more Objects that are part of the private secondary audience of this Activity Pub Object.
BCC ItemCollection `jsonld:"bcc,omitempty"`
// Duration When the object describes a time-bound resource, such as an audio or video, a meeting, etc,
// the duration property indicates the object's approximate duration.
// The value must be expressed as an xsd:duration as defined by [ xmlschema11-2],
// section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").
Duration time.Duration `jsonld:"duration,omitempty"`
// Actor describes one or more entities that either performed or are expected to perform the activity.
// Any single activity can have multiple actors. The actor may be specified using an indirect Link.
Actor Actor `jsonld:"actor,omitempty"`
// Target describes the indirect object, or target, of the activity.
// The precise meaning of the target is largely dependent on the type of action being described
// but will often be the object of the English preposition "to".
// For instance, in the activity "John added a movie to his wishlist",
// the target of the activity is John's wishlist. An activity can have more than one target.
Target Item `jsonld:"target,omitempty"`
// Result describes the result of the activity. For instance, if a particular action results in the creation
// of a new resource, the result property can be used to describe that new resource.
Result Item `jsonld:"result,omitempty"`
// Origin describes an indirect object of the activity from which the activity is directed.
// The precise meaning of the origin is the object of the English preposition "from".
// For instance, in the activity "John moved an item to List B from List A", the origin of the activity is "List A".
Origin Item `jsonld:"origin,omitempty"`
// Instrument identifies one or more objects used (or to be used) in the completion of an Activity.
Instrument Item `jsonld:"instrument,omitempty"`
// OneOf identifies an exclusive option for a Question. Use of oneOf implies that the Question
// can have only a single answer. To indicate that a Question can have multiple answers, use anyOf.
OneOf Item `jsonld:"oneOf,omitempty"`
// AnyOf identifies an inclusive option for a Question. Use of anyOf implies that the Question can have multiple answers.
// To indicate that a Question can have only one answer, use oneOf.
AnyOf Item `jsonld:"anyOf,omitempty"`
// Closed indicates that a question has been closed, and answers are no longer accepted.
Closed bool `jsonld:"closed,omitempty"`
}
// AcceptNew initializes an Accept activity
func AcceptNew(id ObjectID, ob Item) *Accept {
a := ActivityNew(id, AcceptType, ob)
o := Accept(*a)
return &o
}
// AddNew initializes an Add activity
func AddNew(id ObjectID, ob Item, trgt Item) *Add {
a := ActivityNew(id, AddType, ob)
o := Add(*a)
o.Target = trgt
return &o
}
// AnnounceNew initializes an Announce activity
func AnnounceNew(id ObjectID, ob Item) *Announce {
a := ActivityNew(id, AnnounceType, ob)
o := Announce(*a)
return &o
}
// ArriveNew initializes an Arrive activity
func ArriveNew(id ObjectID) *Arrive {
a := IntransitiveActivityNew(id, ArriveType)
o := Arrive(*a)
return &o
}
// BlockNew initializes a Block activity
func BlockNew(id ObjectID, ob Item) *Block {
a := ActivityNew(id, BlockType, ob)
o := Block(*a)
return &o
}
// CreateNew initializes a Create activity
func CreateNew(id ObjectID, ob Item) *Create {
a := ActivityNew(id, CreateType, ob)
o := Create(*a)
return &o
}
// DeleteNew initializes a Delete activity
func DeleteNew(id ObjectID, ob Item) *Delete {
a := ActivityNew(id, DeleteType, ob)
o := Delete(*a)
return &o
}
// DislikeNew initializes a Dislike activity
func DislikeNew(id ObjectID, ob Item) *Dislike {
a := ActivityNew(id, DislikeType, ob)
o := Dislike(*a)
return &o
}
// FlagNew initializes a Flag activity
func FlagNew(id ObjectID, ob Item) *Flag {
a := ActivityNew(id, FlagType, ob)
o := Flag(*a)
return &o
}
// FollowNew initializes a Follow activity
func FollowNew(id ObjectID, ob Item) *Follow {
a := ActivityNew(id, FollowType, ob)
o := Follow(*a)
return &o
}
// IgnoreNew initializes an Ignore activity
func IgnoreNew(id ObjectID, ob Item) *Ignore {
a := ActivityNew(id, IgnoreType, ob)
o := Ignore(*a)
return &o
}
// InviteNew initializes an Invite activity
func InviteNew(id ObjectID, ob Item) *Invite {
a := ActivityNew(id, InviteType, ob)
o := Invite(*a)
return &o
}
// JoinNew initializes a Join activity
func JoinNew(id ObjectID, ob Item) *Join {
a := ActivityNew(id, JoinType, ob)
o := Join(*a)
return &o
}
// LeaveNew initializes a Leave activity
func LeaveNew(id ObjectID, ob Item) *Leave {
a := ActivityNew(id, LeaveType, ob)
o := Leave(*a)
return &o
}
// LikeNew initializes a Like activity
func LikeNew(id ObjectID, ob Item) *Like {
a := ActivityNew(id, LikeType, ob)
o := Like(*a)
return &o
}
// ListenNew initializes a Listen activity
func ListenNew(id ObjectID, ob Item) *Listen {
a := ActivityNew(id, ListenType, ob)
o := Listen(*a)
return &o
}
// MoveNew initializes a Move activity
func MoveNew(id ObjectID, ob Item) *Move {
a := ActivityNew(id, MoveType, ob)
o := Move(*a)
return &o
}
// OfferNew initializes an Offer activity
func OfferNew(id ObjectID, ob Item) *Offer {
a := ActivityNew(id, OfferType, ob)
o := Offer(*a)
return &o
}
// RejectNew initializes a Reject activity
func RejectNew(id ObjectID, ob Item) *Reject {
a := ActivityNew(id, RejectType, ob)
o := Reject(*a)
return &o
}
// ReadNew initializes a Read activity
func ReadNew(id ObjectID, ob Item) *Read {
a := ActivityNew(id, ReadType, ob)
o := Read(*a)
return &o
}
// RemoveNew initializes a Remove activity
func RemoveNew(id ObjectID, ob Item, trgt Item) *Remove {
a := ActivityNew(id, RemoveType, ob)
o := Remove(*a)
o.Target = trgt
return &o
}
// TentativeRejectNew initializes a TentativeReject activity
func TentativeRejectNew(id ObjectID, ob Item) *TentativeReject {
a := ActivityNew(id, TentativeRejectType, ob)
o := TentativeReject(*a)
return &o
}
// TentativeAcceptNew initializes a TentativeAccept activity
func TentativeAcceptNew(id ObjectID, ob Item) *TentativeAccept {
a := ActivityNew(id, TentativeAcceptType, ob)
o := TentativeAccept(*a)
return &o
}
// TravelNew initializes a Travel activity
func TravelNew(id ObjectID) *Travel {
a := IntransitiveActivityNew(id, TravelType)
o := Travel(*a)
return &o
}
// UndoNew initializes an Undo activity
func UndoNew(id ObjectID, ob Item) *Undo {
a := ActivityNew(id, UndoType, ob)
o := Undo(*a)
return &o
}
// UpdateNew initializes an Update activity
func UpdateNew(id ObjectID, ob Item) *Update {
a := ActivityNew(id, UpdateType, ob)
u := Update(*a)
return &u
}
// ViewNew initializes a View activity
func ViewNew(id ObjectID, ob Item) *View {
a := ActivityNew(id, ViewType, ob)
o := View(*a)
return &o
}
// QuestionNew initializes a Question activity
func QuestionNew(id ObjectID) *Question {
q := Question{ID: id, Type: QuestionType}
q.Name = NaturalLanguageValueNew()
q.Content = NaturalLanguageValueNew()
return &q
}
// ValidContentManagementType is a validation function for content management Activity objects
func ValidContentManagementType(typ ActivityVocabularyType) bool {
for _, v := range validContentManagementActivityTypes {
if v == typ {
return true
}
}
return false
}
// ValidCollectionManagementType is a validation function for collection management Activity objects
func ValidCollectionManagementType(typ ActivityVocabularyType) bool {
for _, v := range validCollectionManagementActivityTypes {
if v == typ {
return true
}
}
return false
}
// ValidReactionsType is a validation function for reactions Activity objects
func ValidReactionsType(typ ActivityVocabularyType) bool {
for _, v := range validReactionsActivityTypes {
if v == typ {
return true
}
}
return false
}
// ValidActivityType is a validation function for Activity objects
func ValidActivityType(typ ActivityVocabularyType) bool {
for _, v := range validActivityTypes {
if v == typ {
return true
}
}
return false
}
// ValidIntransitiveActivityType is a validation function for IntransitiveActivity objects
func ValidIntransitiveActivityType(typ ActivityVocabularyType) bool {
for _, v := range validIntransitiveActivityTypes {
if v == typ {
return true
}
}
return false
}
// ActivityNew initializes a basic activity
func ActivityNew(id ObjectID, typ ActivityVocabularyType, ob Item) *Activity {
if !ValidActivityType(typ) {
typ = ActivityType
}
a := Activity{ID: id, Type: typ}
a.Name = NaturalLanguageValueNew()
a.Content = NaturalLanguageValueNew()
a.Object = ob
return &a
}
// IntransitiveActivityNew initializes a intransitive activity
func IntransitiveActivityNew(id ObjectID, typ ActivityVocabularyType) *IntransitiveActivity {
if !ValidIntransitiveActivityType(typ) {
typ = IntransitiveActivityType
}
i := IntransitiveActivity{ID: id, Type: typ}
i.Name = NaturalLanguageValueNew()
i.Content = NaturalLanguageValueNew()
return &i
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (a *Activity) RecipientsDeduplication() {
var actor ItemCollection
actor.Append(a.Actor)
recipientsDeduplication(&actor, &a.To, &a.Bto, &a.CC, &a.BCC)
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (i *IntransitiveActivity) RecipientsDeduplication() {
var actor ItemCollection
actor.Append(i.Actor)
recipientsDeduplication(&actor, &i.To, &i.Bto, &i.CC, &i.BCC)
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (b *Block) RecipientsDeduplication() {
var dedupObjects ItemCollection
dedupObjects.Append(b.Actor)
dedupObjects.Append(b.Object)
recipientsDeduplication(&dedupObjects, &b.To, &b.Bto, &b.CC, &b.BCC)
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (c *Create) RecipientsDeduplication() {
var dedupObjects ItemCollection
dedupObjects.Append(c.Actor)
dedupObjects.Append(c.Object)
recipientsDeduplication(&dedupObjects, &c.To, &c.Bto, &c.CC, &c.BCC)
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (l *Like) RecipientsDeduplication() {
var dedupObjects ItemCollection
dedupObjects.Append(l.Actor)
dedupObjects.Append(l.Object)
recipientsDeduplication(&dedupObjects, &l.To, &l.Bto, &l.CC, &l.BCC)
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (d *Dislike) RecipientsDeduplication() {
var dedupObjects ItemCollection
dedupObjects.Append(d.Actor)
dedupObjects.Append(d.Object)
recipientsDeduplication(&dedupObjects, &d.To, &d.Bto, &d.CC, &d.BCC)
}
// RecipientsDeduplication performs recipient de-duplication on the Activity's To, Bto, CC and BCC properties
func (u *Update) RecipientsDeduplication() {
var dedupObjects ItemCollection
dedupObjects.Append(u.Actor)
dedupObjects.Append(u.Object)
recipientsDeduplication(&dedupObjects, &u.To, &u.Bto, &u.CC, &u.BCC)
}
// GetType returns the ActivityVocabulary type of the current Intransitive Activity
func (i IntransitiveActivity) GetType() ActivityVocabularyType {
return i.Type
}
// IsLink returns false for Activity objects
func (i IntransitiveActivity) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the IntransitiveActivity object
func (i IntransitiveActivity) GetID() *ObjectID {
return &i.ID
}
// GetLink returns the IRI corresponding to the IntransitiveActivity object
func (i IntransitiveActivity) GetLink() IRI {
return IRI(i.ID)
}
// IsObject returns true for Activity objects
func (i IntransitiveActivity) IsObject() bool {
return true
}
// GetType returns the ActivityVocabulary type of the current Activity
func (a Activity) GetType() ActivityVocabularyType {
return a.Type
}
// IsLink returns false for Activity objects
func (a Activity) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Activity object
func (a Activity) GetID() *ObjectID {
return &a.ID
}
// GetLink returns the IRI corresponding to the Activity object
func (a Activity) GetLink() IRI {
return IRI(a.ID)
}
// IsObject returns true for Activity objects
func (a Activity) IsObject() bool {
return true
}
// GetID returns the ObjectID corresponding to the Like object
func (l Like) GetID() *ObjectID {
return Activity(l).GetID()
}
// GetLink returns the IRI corresponding to the Like object
func (l Like) GetLink() IRI {
return IRI(l.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (l Like) GetType() ActivityVocabularyType {
return l.Type
}
// IsObject returns true for Like objects
func (l Like) IsObject() bool {
return true
}
// IsLink returns false for Like objects
func (l Like) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Dislike object
func (d Dislike) GetID() *ObjectID {
return Activity(d).GetID()
}
// GetLink returns the IRI corresponding to the Dislike object
func (d Dislike) GetLink() IRI {
return IRI(d.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (d Dislike) GetType() ActivityVocabularyType {
return d.Type
}
// IsObject returns true for Dislike objects
func (d Dislike) IsObject() bool {
return true
}
// IsLink returns false for Dislike objects
func (d Dislike) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Accept object
func (a Accept) GetID() *ObjectID {
return Activity(a).GetID()
}
// GetLink returns the IRI corresponding to the Accept object
func (a Accept) GetLink() IRI {
return IRI(a.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (a Accept) GetType() ActivityVocabularyType {
return a.Type
}
// IsObject returns true for Accept objects
func (a Accept) IsObject() bool {
return true
}
// IsLink returns false for Accept objects
func (a Accept) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Add object
func (a Add) GetID() *ObjectID {
return Activity(a).GetID()
}
// GetLink returns the IRI corresponding to the Add object
func (a Add) GetLink() IRI {
return IRI(a.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (a Add) GetType() ActivityVocabularyType {
return a.Type
}
// IsObject returns true for Add objects
func (a Add) IsObject() bool {
return true
}
// IsLink returns false for Add objects
func (a Add) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Announce object
func (a Announce) GetID() *ObjectID {
return Activity(a).GetID()
}
// GetLink returns the IRI corresponding to the Announce object
func (a Announce) GetLink() IRI {
return IRI(a.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (a Announce) GetType() ActivityVocabularyType {
return a.Type
}
// IsObject returns true for Announce objects
func (a Announce) IsObject() bool {
return true
}
// IsLink returns false for Announce objects
func (a Announce) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Arrive object
func (a Arrive) GetID() *ObjectID {
return IntransitiveActivity(a).GetID()
}
// GetLink returns the IRI corresponding to the Arrive object
func (a Arrive) GetLink() IRI {
return IRI(a.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (a Arrive) GetType() ActivityVocabularyType {
return a.Type
}
// IsObject returns true for Arrive objects
func (a Arrive) IsObject() bool {
return true
}
// IsLink returns false for Arrive objects
func (a Arrive) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Block object
func (b Block) GetID() *ObjectID {
return Activity(b).GetID()
}
// GetLink returns the IRI corresponding to the Block object
func (b Block) GetLink() IRI {
return IRI(b.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (b Block) GetType() ActivityVocabularyType {
return b.Type
}
// IsObject returns true for Block objects
func (b Block) IsObject() bool {
return true
}
// IsLink returns false for Block objects
func (b Block) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Create object
func (c Create) GetID() *ObjectID {
return Activity(c).GetID()
}
// GetLink returns the IRI corresponding to the Create object
func (c Create) GetLink() IRI {
return IRI(c.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (c Create) GetType() ActivityVocabularyType {
return c.Type
}
// IsObject returns true for Create objects
func (c Create) IsObject() bool {
return true
}
// IsLink returns false for Create objects
func (c Create) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Delete object
func (d Delete) GetID() *ObjectID {
return Activity(d).GetID()
}
// GetLink returns the IRI corresponding to the Delete object
func (d Delete) GetLink() IRI {
return IRI(d.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (d Delete) GetType() ActivityVocabularyType {
return d.Type
}
// IsObject returns true for Delete objects
func (d Delete) IsObject() bool {
return true
}
// IsLink returns false for Delete objects
func (d Delete) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Flag object
func (f Flag) GetID() *ObjectID {
return Activity(f).GetID()
}
// GetLink returns the IRI corresponding to the Flag object
func (f Flag) GetLink() IRI {
return IRI(f.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (f Flag) GetType() ActivityVocabularyType {
return f.Type
}
// IsObject returns true for Flag objects
func (f Flag) IsObject() bool {
return true
}
// IsLink returns false for Flag objects
func (f Flag) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Follow object
func (f Follow) GetID() *ObjectID {
return Activity(f).GetID()
}
// GetLink returns the IRI corresponding to the Follow object
func (f Follow) GetLink() IRI {
return IRI(f.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (f Follow) GetType() ActivityVocabularyType {
return f.Type
}
// IsObject returns true for Follow objects
func (f Follow) IsObject() bool {
return true
}
// IsLink returns false for Follow objects
func (f Follow) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Ignore object
func (i Ignore) GetID() *ObjectID {
return Activity(i).GetID()
}
// GetLink returns the IRI corresponding to the Ignore object
func (i Ignore) GetLink() IRI {
return IRI(i.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (i Ignore) GetType() ActivityVocabularyType {
return i.Type
}
// IsObject returns true for Ignore objects
func (i Ignore) IsObject() bool {
return true
}
// IsLink returns false for Ignore objects
func (i Ignore) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Invite object
func (i Invite) GetID() *ObjectID {
return Activity(i).GetID()
}
// GetLink returns the IRI corresponding to the Invite object
func (i Invite) GetLink() IRI {
return IRI(i.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (i Invite) GetType() ActivityVocabularyType {
return i.Type
}
// IsObject returns true for Invite objects
func (i Invite) IsObject() bool {
return true
}
// IsLink returns false for Invite objects
func (i Invite) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Join object
func (j Join) GetID() *ObjectID {
return Activity(j).GetID()
}
// GetLink returns the IRI corresponding to the Join object
func (j Join) GetLink() IRI {
return IRI(j.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (j Join) GetType() ActivityVocabularyType {
return j.Type
}
// IsObject returns true for Join objects
func (j Join) IsObject() bool {
return true
}
// IsLink returns false for Join objects
func (j Join) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Leave object
func (l Leave) GetID() *ObjectID {
return Activity(l).GetID()
}
// GetLink returns the IRI corresponding to the Leave object
func (l Leave) GetLink() IRI {
return IRI(l.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (l Leave) GetType() ActivityVocabularyType {
return l.Type
}
// IsObject returns true for Leave objects
func (l Leave) IsObject() bool {
return true
}
// IsLink returns false for Leave objects
func (l Leave) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Listen object
func (l Listen) GetID() *ObjectID {
return Activity(l).GetID()
}
// GetLink returns the IRI corresponding to the Listen object
func (l Listen) GetLink() IRI {
return IRI(l.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (l Listen) GetType() ActivityVocabularyType {
return l.Type
}
// IsObject returns true for Listen objects
func (l Listen) IsObject() bool {
return true
}
// IsLink returns false for Listen objects
func (l Listen) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Move object
func (m Move) GetID() *ObjectID {
return Activity(m).GetID()
}
// GetLink returns the IRI corresponding to the Move object
func (m Move) GetLink() IRI {
return IRI(m.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (m Move) GetType() ActivityVocabularyType {
return m.Type
}
// IsObject returns true for Move objects
func (m Move) IsObject() bool {
return true
}
// IsLink returns false for Move objects
func (m Move) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Offer object
func (o Offer) GetID() *ObjectID {
return Activity(o).GetID()
}
// GetLink returns the IRI corresponding to the Offer object
func (o Offer) GetLink() IRI {
return IRI(o.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (o Offer) GetType() ActivityVocabularyType {
return o.Type
}
// IsObject returns true for Offer objects
func (o Offer) IsObject() bool {
return true
}
// IsLink returns false for Offer objects
func (o Offer) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Question object
func (q Question) GetID() *ObjectID {
return &q.ID
}
// GetLink returns the IRI corresponding to the Question object
func (q Question) GetLink() IRI {
return IRI(q.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (q Question) GetType() ActivityVocabularyType {
return q.Type
}
// IsObject returns true for Question objects
func (q Question) IsObject() bool {
return true
}
// IsLink returns false for Question objects
func (q Question) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Reject object
func (r Reject) GetID() *ObjectID {
return Activity(r).GetID()
}
// GetLink returns the IRI corresponding to the Reject object
func (r Reject) GetLink() IRI {
return IRI(r.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (r Reject) GetType() ActivityVocabularyType {
return r.Type
}
// IsObject returns true for Reject objects
func (r Reject) IsObject() bool {
return true
}
// IsLink returns false for Reject objects
func (r Reject) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Remove object
func (r Remove) GetID() *ObjectID {
return Activity(r).GetID()
}
// GetLink returns the IRI corresponding to the Remove object
func (r Remove) GetLink() IRI {
return IRI(r.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (r Remove) GetType() ActivityVocabularyType {
return r.Type
}
// IsObject returns true for Remove objects
func (r Remove) IsObject() bool {
return true
}
// IsLink returns false for Remove objects
func (r Remove) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Read object
func (r Read) GetID() *ObjectID {
return Activity(r).GetID()
}
// GetLink returns the IRI corresponding to the Read object
func (r Read) GetLink() IRI {
return IRI(r.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (r Read) GetType() ActivityVocabularyType {
return r.Type
}
// IsObject returns true for Read objects
func (r Read) IsObject() bool {
return true
}
// IsLink returns false for Read objects
func (r Read) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the TentativeAccept object
func (t TentativeAccept) GetID() *ObjectID {
return Activity(t).GetID()
}
// GetLink returns the IRI corresponding to the TentativeAccept object
func (t TentativeAccept) GetLink() IRI {
return IRI(t.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (t TentativeAccept) GetType() ActivityVocabularyType {
return t.Type
}
// IsObject returns true for TentativeAccept objects
func (t TentativeAccept) IsObject() bool {
return true
}
// IsLink returns false for TentativeAccept objects
func (t TentativeAccept) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the TentativeReject object
func (t TentativeReject) GetID() *ObjectID {
return Activity(t).GetID()
}
// GetLink returns the IRI corresponding to the TentativeReject object
func (t TentativeReject) GetLink() IRI {
return IRI(t.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (t TentativeReject) GetType() ActivityVocabularyType {
return t.Type
}
// IsObject returns true for TentativeReject objects
func (t TentativeReject) IsObject() bool {
return true
}
// IsLink returns false for TentativeReject objects
func (t TentativeReject) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Travel object
func (t Travel) GetID() *ObjectID {
return IntransitiveActivity(t).GetID()
}
// GetLink returns the IRI corresponding to the Travel object
func (t Travel) GetLink() IRI {
return IRI(t.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (t Travel) GetType() ActivityVocabularyType {
return t.Type
}
// IsObject returns true for Travel objects
func (t Travel) IsObject() bool {
return true
}
// IsLink returns false for Travel objects
func (t Travel) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Undo object
func (u Undo) GetID() *ObjectID {
return Activity(u).GetID()
}
// GetLink returns the IRI corresponding to the Unto object
func (u Undo) GetLink() IRI {
return IRI(u.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (u Undo) GetType() ActivityVocabularyType {
return u.Type
}
// IsObject returns true for Undo objects
func (u Undo) IsObject() bool {
return true
}
// IsLink returns false for Undo objects
func (u Undo) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the Update object
func (u Update) GetID() *ObjectID {
return Activity(u).GetID()
}
// GetLink returns the IRI corresponding to the Update object
func (u Update) GetLink() IRI {
return IRI(u.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (u Update) GetType() ActivityVocabularyType {
return u.Type
}
// IsObject returns true for Update objects
func (u Update) IsObject() bool {
return true
}
// IsLink returns false for Update objects
func (u Update) IsLink() bool {
return false
}
// GetID returns the ObjectID corresponding to the View object
func (v View) GetID() *ObjectID {
return Activity(v).GetID()
}
// GetLink returns the IRI corresponding to the View object
func (v View) GetLink() IRI {
return IRI(v.ID)
}
// GetType returns the ActivityVocabulary type of the current Activity
func (v View) GetType() ActivityVocabularyType {
return v.Type
}
// IsObject returns true for View objects
func (v View) IsObject() bool {
return true
}
// IsLink returns false for View objects
func (v View) IsLink() bool {
return false
}
// UnmarshalJSON
func (a *Activity) UnmarshalJSON(data []byte) error {
a.ID = getAPObjectID(data)
a.Type = getAPType(data)
a.Name = getAPNaturalLanguageField(data, "name")
a.Content = getAPNaturalLanguageField(data, "content")
a.Summary = getAPNaturalLanguageField(data, "summary")
a.URL = getURIField(data, "url")
a.Actor = getAPItem(data, "actor")
a.Object = getAPItem(data, "object")
a.Generator = getAPItem(data, "generator")
a.AttributedTo = getAPItem(data, "attributedTo")
a.InReplyTo = getAPItem(data, "inReplyTo")
a.Published = getAPTime(data, "published")
a.StartTime = getAPTime(data, "startTime")
a.Updated = getAPTime(data, "updated")
to := getAPItemCollection(data, "to")
if to != nil {
a.To = to
}
if v, _, _, err := jsonparser.Get(data, "replies"); err == nil {
r := Collection{}
if r.UnmarshalJSON(v) == nil {
a.Replies = &r
}
}
return nil
}
// UnmarshalJSON
func (l *Like) UnmarshalJSON(data []byte) error {
a := Activity(*l)
err := a.UnmarshalJSON(data)
*l = Like(a)
return err
}
// UnmarshalJSON
func (d *Dislike) UnmarshalJSON(data []byte) error {
a := Activity(*d)
err := a.UnmarshalJSON(data)
*d = Dislike(a)
return err
}
// UnmarshalJSON
func (u *Update) UnmarshalJSON(data []byte) error {
a := Activity(*u)
err := a.UnmarshalJSON(data)
*u = Update(a)
return err
}
// UnmarshalJSON
func (c *Create) UnmarshalJSON(data []byte) error {
a := Activity(*c)
err := a.UnmarshalJSON(data)
*c = Create(a)
return err
}