2023-03-19 21:42:21 +00:00
|
|
|
// Copyright 2021 Woodpecker Authors
|
|
|
|
// Copyright 2011 Drone.IO Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-06-28 17:21:22 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2021-09-29 00:10:09 +00:00
|
|
|
option go_package = "github.com/woodpecker-ci/woodpecker/pipeline/rpc/proto";
|
2017-06-28 17:21:22 +00:00
|
|
|
package proto;
|
|
|
|
|
2023-03-19 21:42:21 +00:00
|
|
|
// !IMPORTANT!
|
|
|
|
// Increased Version in version.go by 1 if you change something here!
|
|
|
|
// !IMPORTANT!
|
|
|
|
|
|
|
|
// Woodpecker Server Service
|
2023-01-28 13:13:04 +00:00
|
|
|
service Woodpecker {
|
2023-03-19 21:42:21 +00:00
|
|
|
rpc Version (Empty) returns (VersionResponse) {}
|
|
|
|
rpc Next (NextRequest) returns (NextResponse) {}
|
2023-01-28 13:13:04 +00:00
|
|
|
rpc Init (InitRequest) returns (Empty) {}
|
|
|
|
rpc Wait (WaitRequest) returns (Empty) {}
|
|
|
|
rpc Done (DoneRequest) returns (Empty) {}
|
|
|
|
rpc Extend (ExtendRequest) returns (Empty) {}
|
|
|
|
rpc Update (UpdateRequest) returns (Empty) {}
|
|
|
|
rpc Log (LogRequest) returns (Empty) {}
|
|
|
|
rpc RegisterAgent (RegisterAgentRequest) returns (RegisterAgentResponse) {}
|
|
|
|
rpc ReportHealth (ReportHealthRequest) returns (Empty) {}
|
|
|
|
}
|
|
|
|
|
2023-03-19 21:42:21 +00:00
|
|
|
//
|
|
|
|
// Basic Types
|
|
|
|
//
|
|
|
|
|
2017-06-28 17:21:22 +00:00
|
|
|
message State {
|
|
|
|
string name = 1;
|
|
|
|
bool exited = 2;
|
|
|
|
int32 exit_code = 3;
|
|
|
|
int64 started = 4;
|
|
|
|
int64 finished = 5;
|
|
|
|
string error = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Line {
|
2022-10-28 15:38:53 +00:00
|
|
|
string step = 1;
|
2017-06-28 17:21:22 +00:00
|
|
|
int64 time = 2;
|
|
|
|
int32 pos = 3;
|
|
|
|
string out = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Filter {
|
|
|
|
map<string, string> labels = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Pipeline {
|
|
|
|
string id = 1;
|
|
|
|
int64 timeout = 2;
|
|
|
|
bytes payload = 3;
|
|
|
|
}
|
|
|
|
|
2023-03-19 21:42:21 +00:00
|
|
|
//
|
|
|
|
// Request types
|
|
|
|
//
|
|
|
|
|
2017-06-28 17:21:22 +00:00
|
|
|
message NextRequest {
|
|
|
|
Filter filter = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message InitRequest {
|
2021-09-29 00:10:09 +00:00
|
|
|
string id = 1;
|
2017-06-28 17:21:22 +00:00
|
|
|
State state = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message WaitRequest {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message DoneRequest {
|
2021-09-29 00:10:09 +00:00
|
|
|
string id = 1;
|
2017-06-28 17:21:22 +00:00
|
|
|
State state = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ExtendRequest {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message UpdateRequest {
|
2021-09-29 00:10:09 +00:00
|
|
|
string id = 1;
|
2017-06-28 17:21:22 +00:00
|
|
|
State state = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message LogRequest {
|
2021-09-29 00:10:09 +00:00
|
|
|
string id = 1;
|
2017-06-28 17:21:22 +00:00
|
|
|
Line line = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Empty {
|
2023-01-28 13:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message ReportHealthRequest {
|
|
|
|
string status = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message RegisterAgentRequest {
|
|
|
|
string platform = 1;
|
|
|
|
int32 capacity = 2;
|
|
|
|
string backend = 3;
|
|
|
|
string version = 4;
|
|
|
|
}
|
|
|
|
|
2023-03-19 21:42:21 +00:00
|
|
|
//
|
|
|
|
// Response types
|
|
|
|
//
|
|
|
|
|
|
|
|
message VersionResponse {
|
|
|
|
int32 grpc_version = 1;
|
|
|
|
string server_version = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message NextResponse {
|
|
|
|
Pipeline pipeline = 1;
|
|
|
|
}
|
|
|
|
|
2023-01-28 13:13:04 +00:00
|
|
|
message RegisterAgentResponse {
|
|
|
|
int64 agent_id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Woodpecker auth service is a simple service to authenticate agents and aquire a token
|
|
|
|
|
|
|
|
service WoodpeckerAuth {
|
2023-03-19 21:42:21 +00:00
|
|
|
rpc Auth (AuthRequest) returns (AuthResponse) {}
|
2023-01-28 13:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message AuthRequest {
|
|
|
|
string agent_token = 1;
|
|
|
|
int64 agent_id = 2;
|
|
|
|
}
|
2017-06-28 17:21:22 +00:00
|
|
|
|
2023-03-19 21:42:21 +00:00
|
|
|
message AuthResponse {
|
2023-01-28 13:13:04 +00:00
|
|
|
string status = 1;
|
|
|
|
int64 agent_id = 2;
|
|
|
|
string access_token = 3;
|
2017-06-28 17:21:22 +00:00
|
|
|
}
|