upub/apb/src
alemi a3cf7a17e8
feat(apb): allow upcasting from object
basically now object.as_actor() or object.as_collection() returns an
option which is full with a self ref only if the type is correct, so
that we can assume flexible json behavior from anything implementing our
apb traits, and we don't need to rely anymore on knowing the underlying
type
also little import refactor
2024-04-29 20:01:39 +02:00
..
types feat(apb): allow upcasting from object 2024-04-29 20:01:39 +02:00
key.rs fix(apb): proper feature gating, dict->unstructured 2024-04-06 18:04:14 +02:00
lib.rs feat(apb): restructured, added target and server 2024-04-11 00:27:17 +02:00
macros.rs fix(apb): don't iter vec needlessly 2024-04-23 23:26:49 +02:00
node.rs feat(apb): allow upcasting from object 2024-04-29 20:01:39 +02:00
README.md feat: separated apb types into crate, reworked 2024-04-06 16:56:13 +02:00
server.rs feat(apb): added all outbox routes, authed inbox 2024-04-22 22:42:45 +02:00
target.rs feat(apb): restructured, added target and server 2024-04-11 00:27:17 +02:00

activitystream

here live all ActivityStreams types

structure

├── Link
│   └── Mention
├── Object
│   ├── Activity
│   │   ├── Accept
│   │   │   └── TentativeAccept
│   │   ├── Add
│   │   ├── Announce
│   │   ├── Create
│   │   ├── Delete
│   │   ├── Dislike
│   │   ├── Flag
│   │   ├── Follow
│   │   ├── IntransitiveActivity
│   │   │   ├── Arrive
│   │   │   ├── Question
│   │   │   └── Travel
│   │   ├── Ignore
│   │   │   └── Block
│   │   ├── Join
│   │   ├── Leave
│   │   ├── Like
│   │   ├── Listen
│   │   ├── Move
│   │   ├── Offer
│   │   │   └── Invite
│   │   ├── Read
│   │   ├── Reject
│   │   │   └── TentativeReject
│   │   ├── Remove
│   │   ├── Undo
│   │   ├── Update
│   │   └── View
│   ├── Actor (not technically)
│   │   ├── Application
│   │   ├── Group
│   │   ├── Organization
│   │   └── Person
│   ├── Article
│   ├── Collection
│   │   ├── CollectionPage
│   │   └── OrderedCollection
│   │       └── OrderedCollectionPage
│   ├── Document
│   │   ├── Audio
│   │   ├── Image
│   │   ├── Page
│   │   └── Video
│   ├── Event
│   ├── Note
│   ├── Place
│   ├── Profile
│   ├── Relationship
│   └── Tombstone
└── PublicKey (not in spec)