iceshrimp-legacy/src/remote/activitypub/type.ts

71 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-04-07 09:36:40 +02:00
export type obj = { [x: string]: any };
export interface IObject {
2018-04-07 09:36:40 +02:00
'@context': string | obj | obj[];
2018-03-31 12:55:00 +02:00
type: string;
id?: string;
summary?: string;
}
2018-04-07 09:14:35 +02:00
export interface IActivity extends IObject {
//type: 'Activity';
actor: IObject | string;
object: IObject | string;
target?: IObject | string;
}
export interface ICollection extends IObject {
type: 'Collection';
totalItems: number;
items: IObject | string | IObject[] | string[];
}
export interface IOrderedCollection extends IObject {
type: 'OrderedCollection';
totalItems: number;
orderedItems: IObject | string | IObject[] | string[];
}
export const isCollection = (object: IObject): object is ICollection =>
object.type === 'Collection';
export const isOrderedCollection = (object: IObject): object is IOrderedCollection =>
object.type === 'OrderedCollection';
export const isCollectionOrOrderedCollection = (object: IObject): object is ICollection | IOrderedCollection =>
isCollection(object) || isOrderedCollection(object);
2018-04-07 09:14:35 +02:00
export interface ICreate extends IActivity {
type: 'Create';
}
2018-04-07 09:36:40 +02:00
export interface IDelete extends IActivity {
type: 'Delete';
}
2018-04-07 09:14:35 +02:00
export interface IUndo extends IActivity {
type: 'Undo';
}
export interface IFollow extends IActivity {
type: 'Follow';
}
2018-04-07 09:36:40 +02:00
export interface IAccept extends IActivity {
type: 'Accept';
}
2018-04-07 10:05:14 +02:00
export interface ILike extends IActivity {
type: 'Like';
}
2018-04-07 09:36:40 +02:00
export type Object =
ICollection |
IOrderedCollection |
ICreate |
IDelete |
IUndo |
IFollow |
2018-04-07 10:05:14 +02:00
IAccept |
ILike;