2020-01-20 07:43:25 +01:00
|
|
|
# Datastore Interface
|
|
|
|
|
|
|
|
Enum EventType {
|
|
|
|
Create,
|
|
|
|
Update,
|
|
|
|
Delete,
|
|
|
|
Restore,
|
|
|
|
}
|
|
|
|
|
|
|
|
Exception ModelDoesNotExist(model: Fqid);
|
|
|
|
Exception ModelExist(model: Fqid);
|
|
|
|
Exception ModelNotDeleted(model: Fqid);
|
2020-01-22 11:39:51 +01:00
|
|
|
Exception ModelLocked(key: Fqid | Fqfield | CollectionField);
|
|
|
|
Exception InvalidFormat(msg: string);
|
|
|
|
Exception InvalidRequest(msg: string);
|
|
|
|
|
|
|
|
# Note: Error returns via HTTP 400:
|
|
|
|
Interface ErrorResponse {
|
|
|
|
error: InvalidFormatData |
|
|
|
|
InvalidRequestData |
|
|
|
|
ModelDoesNotExistData |
|
|
|
|
ModelExistData |
|
|
|
|
ModelMotDeletedData |
|
|
|
|
ModelLockedData;
|
|
|
|
}
|
|
|
|
Interface InvalidFormatData {
|
|
|
|
type: 1;
|
|
|
|
msg: string;
|
|
|
|
}
|
|
|
|
Interface InvalidRequestData {
|
|
|
|
type: 2;
|
|
|
|
msg: string;
|
2020-03-19 14:14:45 +01:00
|
|
|
}
|
2020-01-22 11:39:51 +01:00
|
|
|
Interface ModelDoesNotExistData {
|
|
|
|
type: 3;
|
|
|
|
fqid: string;
|
|
|
|
}
|
|
|
|
Interface ModelExistData {
|
|
|
|
type: 4;
|
|
|
|
fqid: string;
|
|
|
|
}
|
|
|
|
Interface ModelNotDeletedData {
|
|
|
|
type: 5;
|
|
|
|
fqid: string;
|
|
|
|
}
|
|
|
|
Interface ModelLockedData {
|
|
|
|
type: 6;
|
|
|
|
key: string;
|
|
|
|
}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
## Writer
|
2020-01-22 11:39:51 +01:00
|
|
|
# Note: Different host and port than the reader!
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-22 11:39:51 +01:00
|
|
|
* Writes Events into the datastore.
|
|
|
|
* Url: POST to /datastore/writer/write
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
|
|
|
* @throws ModelDoesNotExist
|
|
|
|
* @throws ModelExists
|
|
|
|
* @throws ModelLocked
|
|
|
|
* @throws InvalidFormat
|
|
|
|
* @throws ModelNotDeleted
|
|
|
|
*/
|
2020-01-22 11:39:51 +01:00
|
|
|
write(request: WriteRequest): void publishes ModifiedFieldsEvent
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
Interface WriteRequest {
|
|
|
|
events: (CreateEvent | RestoreEvent | UpdateEvent | DeleteEvent)[];
|
|
|
|
information: {
|
|
|
|
<fqid>: Object
|
|
|
|
};
|
|
|
|
user_id: number;
|
|
|
|
locked_fields: {
|
|
|
|
<fqid>: Position;
|
2020-01-22 11:39:51 +01:00
|
|
|
<fqfield>: Position;
|
2020-01-20 07:43:25 +01:00
|
|
|
<CollectionField>: Position;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface CreateEvent {
|
2020-01-22 11:39:51 +01:00
|
|
|
type: 'create';
|
2020-01-20 07:43:25 +01:00
|
|
|
fqid: Fqid;
|
2020-01-22 11:39:51 +01:00
|
|
|
fields: {
|
2020-01-20 07:43:25 +01:00
|
|
|
<field>: Value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 11:39:51 +01:00
|
|
|
// Note: For deleting keys, they must be set to `None`. These keys
|
|
|
|
// will be removed from the model.
|
2020-01-20 07:43:25 +01:00
|
|
|
Interface UpdateEvent {
|
2020-01-22 11:39:51 +01:00
|
|
|
type: 'update';
|
|
|
|
fqid: Fqid;
|
|
|
|
fields: {
|
|
|
|
<field>: Value;
|
2020-01-20 07:43:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface RestoreEvent {
|
2020-01-22 11:39:51 +01:00
|
|
|
type: 'restore';
|
2020-01-20 07:43:25 +01:00
|
|
|
fqid: Fqid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface DeleteEvent {
|
2020-01-22 11:39:51 +01:00
|
|
|
type: 'delete';
|
2020-01-20 07:43:25 +01:00
|
|
|
fqid: Fqid;
|
|
|
|
}
|
|
|
|
|
2020-01-22 11:39:51 +01:00
|
|
|
// Note: The modified fqfields include:
|
|
|
|
// - all updated fqfields
|
|
|
|
// - all deleted fqfields
|
|
|
|
// - all fqfields of all deleted models
|
|
|
|
// - all fqfields of all created models
|
|
|
|
// - all fqfields of all restored models (logically the same as created)
|
|
|
|
Event ModifiedFieldsEvent on topic ModifiedFields {
|
|
|
|
modified: Fqfield[];
|
2020-01-20 07:43:25 +01:00
|
|
|
}
|
|
|
|
|
2020-01-22 11:39:51 +01:00
|
|
|
/**
|
|
|
|
* Gibt n sequentielle Ids für die gegebene Collection zurück.
|
|
|
|
* Url: POST to /datastore/writer/get_ids
|
|
|
|
*/
|
|
|
|
getIds(collection: Collection, n: number): Id[]
|
2020-01-20 07:43:25 +01:00
|
|
|
|
2020-03-19 14:14:45 +01:00
|
|
|
|
2020-01-22 11:39:51 +01:00
|
|
|
## Reader
|
|
|
|
# Note: Different host and port than the writer!
|
|
|
|
|
|
|
|
/** Common notes:
|
|
|
|
* - parameter `position`: Optional, if given reads the data to this position.
|
2020-03-19 14:14:45 +01:00
|
|
|
* - parameter `mapped_fields`: List of fields that should only be present in the response.
|
|
|
|
* - parameter `get_deleted_models`: Optional, defines which models to return
|
|
|
|
* - DeletedModelsBehaviour.NO_DELETED: (Default) only non-deleted models are returned.
|
|
|
|
* get throws a ModelDoesNotExist error if the given
|
|
|
|
* model is deleted.
|
|
|
|
* - DeletedModelsBehaviour.ONLY_DELETED: only deleted models are returned. get throws
|
|
|
|
* a ModelNotDeleted if the given model is not deleted.
|
|
|
|
* - DeletedModelsBehaviour.ALL_MODELS: all models are returned
|
2020-01-22 11:39:51 +01:00
|
|
|
* - All operations adds the fields `meta_position` and `meta_deleted` to the models.
|
|
|
|
* - The InvalidFormat exception can always be thrown, if the requested formats are
|
|
|
|
* wrong, including something like empty collections, ...
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
|
|
|
|
2020-03-19 14:14:45 +01:00
|
|
|
Enum DeletedModelsBehaviour {
|
|
|
|
NO_DELETED = 1,
|
|
|
|
ONLY_DELETED = 2,
|
|
|
|
ALL_MODELS = 3
|
|
|
|
}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-19 14:14:45 +01:00
|
|
|
* Returns a model by fqid.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
|
|
|
* @throws ModelDoesNotExist
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-03-19 14:14:45 +01:00
|
|
|
get(fqid: Fqid, mapped_fields?: Field[], position?: Position, get_deleted_models?: DeletedModelsBehaviour): Partial<Model>;
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-19 14:14:45 +01:00
|
|
|
* Returns multiple models.
|
|
|
|
* Can either be called with a list of fqids (if all fields are needed/wanted or if the
|
|
|
|
* same fields of all objects are needed) or with a list of specific request objects
|
|
|
|
* that map a collection to the needed ids and fields. If both the lower and the higher
|
|
|
|
* level mapped_fields are given, the higher level one is merged into all lower level
|
|
|
|
* ones.
|
|
|
|
* If an id is not found, it is not included in the response instead of throwing a
|
|
|
|
* ModelDoesNotExist.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-03-19 14:14:45 +01:00
|
|
|
getMany(requests: GetManyRequest[], mapped_fields?: Field[], position?: Position, get_deleted_models?: DeletedModelsBehaviour): Partial<Model>[];
|
2020-01-20 07:43:25 +01:00
|
|
|
|
2020-03-19 14:14:45 +01:00
|
|
|
Interface GetManyRequest {
|
|
|
|
collection: Collection;
|
|
|
|
ids: Id[];
|
|
|
|
mapped_fields?: Field[];
|
|
|
|
}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-19 14:14:45 +01:00
|
|
|
* Returns all models of one collection. It is not possible to specify a position, so
|
|
|
|
* this method cannot be used if the user browses the history. It should be noted that
|
|
|
|
* it is highly disencouraged to use this method because it might return a huge amount
|
|
|
|
* of data.
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-03-19 14:14:45 +01:00
|
|
|
getAll(collection: Collection, mapped_fields?: Field[], get_deleted_models?: DeletedModelsBehaviour): Partial<Model>[];
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-19 14:14:45 +01:00
|
|
|
* Returns all models of one collection that satisfy the filter condition. This method
|
2020-01-22 11:39:51 +01:00
|
|
|
* does not take a position and can not be used when browsing the history.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-01-22 11:39:51 +01:00
|
|
|
filter(collection: Collection, filter: Filter, mapped_fields?: Field[]): Partial<Model>[]
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-22 11:39:51 +01:00
|
|
|
* See `filter`, returns true, if at least one model was found. The returned position is
|
|
|
|
* the highest position in the complete datastore.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-01-22 11:39:51 +01:00
|
|
|
exists(collection: Collection, filter: Filter): {exists: boolean; position: Position;}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-22 11:39:51 +01:00
|
|
|
* See `filter`, returns the amount of found models. The returned position is
|
|
|
|
* the highest position in the complete datastore.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-01-22 11:39:51 +01:00
|
|
|
count(collection: Collection, filter: Filter): {count: number; position: Position;}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-19 14:14:45 +01:00
|
|
|
* Executes a min aggregation on all models of one collection on
|
|
|
|
* the given field that satisfy the filter condition.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-03-19 14:14:45 +01:00
|
|
|
min(collection: Collection, filter: Filter, field: Field): {min: Value; position: Position;}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-19 14:14:45 +01:00
|
|
|
* Executes a max aggregation on all models of one collection on
|
|
|
|
* the given field that satisfy the filter condition.
|
2020-01-20 07:43:25 +01:00
|
|
|
*
|
2020-01-22 11:39:51 +01:00
|
|
|
* @throws InvalidFormat
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
2020-03-19 14:14:45 +01:00
|
|
|
max(collection: Collection, filter: Filter, field: Field): {max: Value; position: Position;}
|
2020-01-20 07:43:25 +01:00
|
|
|
|
|
|
|
Type Filter = And | Or | Not | FilterOperator
|
|
|
|
|
|
|
|
/**
|
2020-01-22 11:39:51 +01:00
|
|
|
* The filter predicate. M[field] states the value of the field of a model M.
|
|
|
|
* For all operations the predicate if true, if `M[field] <op> value` is true.
|
2020-01-20 07:43:25 +01:00
|
|
|
*/
|
|
|
|
Interface FilterOperator {
|
|
|
|
field: Field;
|
|
|
|
value: Value | null;
|
|
|
|
operator: '==' | '!=' | '<' | '>' | '>=' | '<=';
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface Not {
|
2020-03-19 14:14:45 +01:00
|
|
|
not_filter: Filter;
|
2020-01-20 07:43:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Interface And {
|
2020-03-19 14:14:45 +01:00
|
|
|
and_filter: Filter[];
|
2020-01-20 07:43:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Interface Or {
|
2020-03-19 14:14:45 +01:00
|
|
|
or_filter: Filter[];
|
2020-01-20 07:43:25 +01:00
|
|
|
}
|