2021-04-09 10:17:38 +02:00
|
|
|
syntax = "proto3";
|
|
|
|
package nexus.meta_api.proto;
|
|
|
|
|
|
|
|
import "nexus/models/proto/typed_document.proto";
|
|
|
|
|
|
|
|
message RollRequest {
|
|
|
|
string language = 1;
|
|
|
|
string session_id = 2;
|
|
|
|
int64 user_id = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message RollResponse {
|
|
|
|
uint64 document_id = 1;
|
|
|
|
}
|
|
|
|
|
2021-04-13 16:23:31 +02:00
|
|
|
message TopMissedRequest {
|
|
|
|
uint32 page = 1;
|
|
|
|
uint32 page_size = 2;
|
|
|
|
string session_id = 3;
|
|
|
|
int64 user_id = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message TopMissedResponse {
|
|
|
|
repeated nexus.models.proto.TypedDocument typed_documents = 1;
|
|
|
|
bool has_next = 2;
|
|
|
|
}
|
|
|
|
|
2021-04-09 10:17:38 +02:00
|
|
|
message TypedDocumentRequest {
|
|
|
|
string schema = 1;
|
|
|
|
uint64 document_id = 2;
|
|
|
|
uint32 position = 3;
|
|
|
|
string session_id = 4;
|
|
|
|
int64 user_id = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
message PutTypedDocumentResponse {}
|
|
|
|
|
2021-04-23 17:23:02 +02:00
|
|
|
message GetViewResponse {
|
|
|
|
nexus.models.proto.TypedDocument typed_document = 1;
|
|
|
|
string filedata = 2;
|
|
|
|
string filename = 3;
|
|
|
|
string filesize = 4;
|
|
|
|
string first_authors = 5;
|
|
|
|
string locator = 6;
|
|
|
|
}
|
|
|
|
|
2021-04-09 10:17:38 +02:00
|
|
|
service Documents {
|
|
|
|
rpc get (TypedDocumentRequest) returns (nexus.models.proto.TypedDocument) {}
|
2021-04-23 17:23:02 +02:00
|
|
|
rpc get_view (TypedDocumentRequest) returns (GetViewResponse) {}
|
2021-04-09 10:17:38 +02:00
|
|
|
rpc roll (RollRequest) returns (RollResponse) {}
|
2021-04-13 16:23:31 +02:00
|
|
|
rpc top_missed (TopMissedRequest) returns (TopMissedResponse) {}
|
2021-04-09 10:17:38 +02:00
|
|
|
}
|