Evstigneev Denis
8886dcba9c
Reviewed-on: #3 Co-authored-by: Evstigneev Denis <danteevstigneev@yandex.ru> Co-committed-by: Evstigneev Denis <danteevstigneev@yandex.ru>
99 lines
2.9 KiB
Protocol Buffer
99 lines
2.9 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package proto;
|
|
|
|
option go_package = "go.unistack.org/unistack-org/pkgdash/proto/go_generate;go_generate";
|
|
|
|
import "validate/validate.proto";
|
|
import "google/protobuf/wrappers.proto";
|
|
|
|
service DashboardService {
|
|
rpc ListPackage(ListPackageReq) returns (ListPackageRsp) {};
|
|
rpc UpdatePackage(UpdatePackageReq) returns (UpdatePackageRsp) {};
|
|
rpc AddComment(AddCommentReq) returns (AddCommentRsp) {};
|
|
rpc AddPackage(AddPackageReq) returns (AddPackageRsp) {};
|
|
rpc GetModule(GetModuleReq) returns (GetModuleRsp) {};
|
|
};
|
|
|
|
message ErrorRsp {
|
|
Error error = 1 [json_name = "error"];
|
|
}
|
|
|
|
message Error {
|
|
string code = 1 [json_name = "code"];
|
|
string title = 2 [json_name = "title"];
|
|
string uuid = 3 [json_name = "uuid"];
|
|
string details = 4 [json_name = "details"];
|
|
}
|
|
|
|
message Package {
|
|
uint64 id = 1 [(validate.rules).uint64.gt = 0];
|
|
string name = 2 [(validate.rules).string.min_len = 1];
|
|
string url = 3 [(validate.rules).string.min_len = 1];
|
|
repeated uint64 modules = 4;
|
|
repeated uint64 issues = 5;
|
|
repeated uint64 comments = 6;
|
|
};
|
|
|
|
message Module {
|
|
uint64 id = 1 [(validate.rules).uint64.gt = 0];
|
|
string name = 2 [(validate.rules).string.min_len = 1];
|
|
string version = 3 [(validate.rules).string.min_len = 1];
|
|
uint64 package = 4 [(validate.rules).uint64.gt = 0];
|
|
string last_version = 5 [(validate.rules).string.min_len = 1];
|
|
}
|
|
|
|
message Issue {
|
|
uint64 id = 1 [(validate.rules).uint64.gt = 0];
|
|
uint64 status = 2 [(validate.rules).uint64.gt = 0];
|
|
string desc = 3 [(validate.rules).string.min_len = 1];
|
|
uint64 package = 4 [(validate.rules).uint64.gt = 0];
|
|
repeated uint64 modules = 5;
|
|
}
|
|
|
|
message Comment {
|
|
uint64 id = 1 [(validate.rules).uint64.gt = 0];
|
|
uint64 package = 2 [(validate.rules).uint64.gt = 0];
|
|
string text = 3;
|
|
uint64 created = 4 [(validate.rules).uint64.gt = 0];
|
|
uint64 updated = 5 [(validate.rules).uint64.gt = 0];
|
|
}
|
|
|
|
message ListPackageReq {}
|
|
message ListPackageRsp{
|
|
repeated Package packages = 1;
|
|
}
|
|
|
|
message UpdatePackageReq {
|
|
google.protobuf.UInt64Value id = 1 [(validate.rules).message.required = true];
|
|
google.protobuf.StringValue name = 2 [(validate.rules).message.required = true];
|
|
google.protobuf.StringValue url = 3 [(validate.rules).message.required = true];
|
|
repeated uint64 modules = 4 ;
|
|
repeated uint64 issues = 5 ;
|
|
}
|
|
message UpdatePackageRsp {
|
|
uint64 id = 1 [(validate.rules).uint64.gt = 0];
|
|
}
|
|
|
|
message AddCommentReq {
|
|
google.protobuf.UInt64Value idPackage = 1 [(validate.rules).message.required = true];
|
|
string text = 2;
|
|
}
|
|
|
|
message AddCommentRsp {
|
|
uint64 id = 1 [(validate.rules).uint64.gt = 0];
|
|
}
|
|
|
|
message AddPackageReq {
|
|
google.protobuf.StringValue name = 1 [(validate.rules).message.required = true];
|
|
google.protobuf.StringValue url = 2 [(validate.rules).message.required = true];
|
|
repeated uint64 modules = 3;
|
|
}
|
|
message AddPackageRsp{}
|
|
|
|
message GetModuleReq {
|
|
repeated uint64 id = 1 ;
|
|
}
|
|
message GetModuleRsp {
|
|
repeated Module modules = 1 ;
|
|
} |