diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/accounts/account.model.ts | 5 | ||||
-rw-r--r-- | shared/models/accounts/follow.model.ts | 1 | ||||
-rw-r--r-- | shared/models/accounts/index.ts | 2 | ||||
-rw-r--r-- | shared/models/activitypub/activity.ts | 18 | ||||
-rw-r--r-- | shared/models/index.ts | 1 |
5 files changed, 25 insertions, 2 deletions
diff --git a/shared/models/accounts/account.model.ts b/shared/models/accounts/account.model.ts new file mode 100644 index 000000000..338426dc7 --- /dev/null +++ b/shared/models/accounts/account.model.ts | |||
@@ -0,0 +1,5 @@ | |||
1 | export interface Account { | ||
2 | id: number | ||
3 | name: string | ||
4 | host: string | ||
5 | } | ||
diff --git a/shared/models/accounts/follow.model.ts b/shared/models/accounts/follow.model.ts new file mode 100644 index 000000000..80cfe07e4 --- /dev/null +++ b/shared/models/accounts/follow.model.ts | |||
@@ -0,0 +1 @@ | |||
export type FollowState = 'pending' | 'accepted' | |||
diff --git a/shared/models/accounts/index.ts b/shared/models/accounts/index.ts new file mode 100644 index 000000000..8fe437b81 --- /dev/null +++ b/shared/models/accounts/index.ts | |||
@@ -0,0 +1,2 @@ | |||
1 | export * from './account.model' | ||
2 | export * from './follow.model' | ||
diff --git a/shared/models/activitypub/activity.ts b/shared/models/activitypub/activity.ts index a2494da25..254daf118 100644 --- a/shared/models/activitypub/activity.ts +++ b/shared/models/activitypub/activity.ts | |||
@@ -4,10 +4,11 @@ import { | |||
4 | } from './objects' | 4 | } from './objects' |
5 | import { ActivityPubSignature } from './activitypub-signature' | 5 | import { ActivityPubSignature } from './activitypub-signature' |
6 | 6 | ||
7 | export type Activity = ActivityCreate | ActivityAdd | ActivityUpdate | ActivityFlag | 7 | export type Activity = ActivityCreate | ActivityAdd | ActivityUpdate | ActivityFlag | |
8 | ActivityDelete | ActivityFollow | ActivityAccept | ||
8 | 9 | ||
9 | // Flag -> report abuse | 10 | // Flag -> report abuse |
10 | export type ActivityType = 'Create' | 'Add' | 'Update' | 'Flag' | 11 | export type ActivityType = 'Create' | 'Add' | 'Update' | 'Flag' | 'Delete' | 'Follow' | 'Accept' |
11 | 12 | ||
12 | export interface BaseActivity { | 13 | export interface BaseActivity { |
13 | '@context'?: any[] | 14 | '@context'?: any[] |
@@ -37,3 +38,16 @@ export interface ActivityFlag extends BaseActivity { | |||
37 | type: 'Flag' | 38 | type: 'Flag' |
38 | object: string | 39 | object: string |
39 | } | 40 | } |
41 | |||
42 | export interface ActivityDelete extends BaseActivity { | ||
43 | type: 'Delete' | ||
44 | } | ||
45 | |||
46 | export interface ActivityFollow extends BaseActivity { | ||
47 | type: 'Follow' | ||
48 | object: string | ||
49 | } | ||
50 | |||
51 | export interface ActivityAccept extends BaseActivity { | ||
52 | type: 'Accept' | ||
53 | } | ||
diff --git a/shared/models/index.ts b/shared/models/index.ts index 0ccb84d24..28decac03 100644 --- a/shared/models/index.ts +++ b/shared/models/index.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | export * from './accounts' | ||
1 | export * from './activitypub' | 2 | export * from './activitypub' |
2 | export * from './pods' | 3 | export * from './pods' |
3 | export * from './users' | 4 | export * from './users' |