mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 14:34:26 +00:00
3372d1a87c
As of #745 Co-authored-by: Anbraten <anton@ju60.de>
165 lines
5 KiB
Go
165 lines
5 KiB
Go
// Copyright 2022 Woodpecker Authors
|
|
//
|
|
// 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.
|
|
|
|
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/rpc"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/rpc/proto"
|
|
"github.com/woodpecker-ci/woodpecker/server/forge"
|
|
"github.com/woodpecker-ci/woodpecker/server/logging"
|
|
"github.com/woodpecker-ci/woodpecker/server/pubsub"
|
|
"github.com/woodpecker-ci/woodpecker/server/queue"
|
|
"github.com/woodpecker-ci/woodpecker/server/store"
|
|
)
|
|
|
|
// WoodpeckerServer is a grpc server implementation.
|
|
type WoodpeckerServer struct {
|
|
proto.UnimplementedWoodpeckerServer
|
|
peer RPC
|
|
}
|
|
|
|
func NewWoodpeckerServer(forge forge.Forge, queue queue.Queue, logger logging.Log, pubsub pubsub.Publisher, store store.Store, host string) *WoodpeckerServer {
|
|
pipelineTime := promauto.NewGaugeVec(prometheus.GaugeOpts{
|
|
Namespace: "woodpecker",
|
|
Name: "pipeline_time",
|
|
Help: "Pipeline time.",
|
|
}, []string{"repo", "branch", "status", "pipeline"})
|
|
pipelineCount := promauto.NewCounterVec(prometheus.CounterOpts{
|
|
Namespace: "woodpecker",
|
|
Name: "pipeline_count",
|
|
Help: "Pipeline count.",
|
|
}, []string{"repo", "branch", "status", "pipeline"})
|
|
peer := RPC{
|
|
forge: forge,
|
|
store: store,
|
|
queue: queue,
|
|
pubsub: pubsub,
|
|
logger: logger,
|
|
host: host,
|
|
pipelineTime: pipelineTime,
|
|
pipelineCount: pipelineCount,
|
|
}
|
|
return &WoodpeckerServer{peer: peer}
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Next(c context.Context, req *proto.NextRequest) (*proto.NextReply, error) {
|
|
filter := rpc.Filter{
|
|
Labels: req.GetFilter().GetLabels(),
|
|
}
|
|
|
|
res := new(proto.NextReply)
|
|
pipeline, err := s.peer.Next(c, filter)
|
|
if err != nil {
|
|
return res, err
|
|
}
|
|
if pipeline == nil {
|
|
return res, err
|
|
}
|
|
|
|
res.Pipeline = new(proto.Pipeline)
|
|
res.Pipeline.Id = pipeline.ID
|
|
res.Pipeline.Timeout = pipeline.Timeout
|
|
res.Pipeline.Payload, _ = json.Marshal(pipeline.Config)
|
|
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Init(c context.Context, req *proto.InitRequest) (*proto.Empty, error) {
|
|
state := rpc.State{
|
|
Error: req.GetState().GetError(),
|
|
ExitCode: int(req.GetState().GetExitCode()),
|
|
Finished: req.GetState().GetFinished(),
|
|
Started: req.GetState().GetStarted(),
|
|
Step: req.GetState().GetName(),
|
|
Exited: req.GetState().GetExited(),
|
|
}
|
|
res := new(proto.Empty)
|
|
err := s.peer.Init(c, req.GetId(), state)
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Update(c context.Context, req *proto.UpdateRequest) (*proto.Empty, error) {
|
|
state := rpc.State{
|
|
Error: req.GetState().GetError(),
|
|
ExitCode: int(req.GetState().GetExitCode()),
|
|
Finished: req.GetState().GetFinished(),
|
|
Started: req.GetState().GetStarted(),
|
|
Step: req.GetState().GetName(),
|
|
Exited: req.GetState().GetExited(),
|
|
}
|
|
res := new(proto.Empty)
|
|
err := s.peer.Update(c, req.GetId(), state)
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Upload(c context.Context, req *proto.UploadRequest) (*proto.Empty, error) {
|
|
file := &rpc.File{
|
|
Data: req.GetFile().GetData(),
|
|
Mime: req.GetFile().GetMime(),
|
|
Name: req.GetFile().GetName(),
|
|
Step: req.GetFile().GetStep(),
|
|
Size: int(req.GetFile().GetSize()),
|
|
Time: req.GetFile().GetTime(),
|
|
Meta: req.GetFile().GetMeta(),
|
|
}
|
|
|
|
res := new(proto.Empty)
|
|
err := s.peer.Upload(c, req.GetId(), file)
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Done(c context.Context, req *proto.DoneRequest) (*proto.Empty, error) {
|
|
state := rpc.State{
|
|
Error: req.GetState().GetError(),
|
|
ExitCode: int(req.GetState().GetExitCode()),
|
|
Finished: req.GetState().GetFinished(),
|
|
Started: req.GetState().GetStarted(),
|
|
Step: req.GetState().GetName(),
|
|
Exited: req.GetState().GetExited(),
|
|
}
|
|
res := new(proto.Empty)
|
|
err := s.peer.Done(c, req.GetId(), state)
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Wait(c context.Context, req *proto.WaitRequest) (*proto.Empty, error) {
|
|
res := new(proto.Empty)
|
|
err := s.peer.Wait(c, req.GetId())
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Extend(c context.Context, req *proto.ExtendRequest) (*proto.Empty, error) {
|
|
res := new(proto.Empty)
|
|
err := s.peer.Extend(c, req.GetId())
|
|
return res, err
|
|
}
|
|
|
|
func (s *WoodpeckerServer) Log(c context.Context, req *proto.LogRequest) (*proto.Empty, error) {
|
|
line := &rpc.Line{
|
|
Out: req.GetLine().GetOut(),
|
|
Pos: int(req.GetLine().GetPos()),
|
|
Time: req.GetLine().GetTime(),
|
|
Step: req.GetLine().GetStep(),
|
|
}
|
|
res := new(proto.Empty)
|
|
err := s.peer.Log(c, req.GetId(), line)
|
|
return res, err
|
|
}
|