Start VERY basic ActivityPub implementation - user endpoint and webfinger acct: support
This commit is contained in:
39
src/pub/types/index.ts
Normal file
39
src/pub/types/index.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
|
||||
export namespace Pub {
|
||||
const ACCEPT_TYPE = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
|
||||
|
||||
export interface Config {
|
||||
uri: string,
|
||||
}
|
||||
|
||||
export interface Object {
|
||||
id: string,
|
||||
type: string, // FIXME
|
||||
}
|
||||
|
||||
export interface Actor extends Object {
|
||||
["@context"]: [
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
"https://w3id.org/security/v1"
|
||||
],
|
||||
type: 'Person',
|
||||
preferredUsername: string,
|
||||
inbox: string,
|
||||
publicKey: {
|
||||
id: string,
|
||||
owner: string,
|
||||
publicKeyPem: string,
|
||||
},
|
||||
}
|
||||
|
||||
export interface Link {
|
||||
rel: string,
|
||||
type: string,
|
||||
href: string,
|
||||
}
|
||||
|
||||
export interface Webfinger {
|
||||
subject: string,
|
||||
links: Link[],
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user