mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 11:32:01 +00:00
89 lines
2.7 KiB
Go
89 lines
2.7 KiB
Go
|
// Copyright 2024 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 config
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"crypto"
|
||
|
"fmt"
|
||
|
|
||
|
"go.woodpecker-ci.org/woodpecker/v2/server/forge"
|
||
|
"go.woodpecker-ci.org/woodpecker/v2/server/forge/types"
|
||
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
||
|
"go.woodpecker-ci.org/woodpecker/v2/server/services/utils"
|
||
|
)
|
||
|
|
||
|
type http struct {
|
||
|
endpoint string
|
||
|
privateKey crypto.PrivateKey
|
||
|
}
|
||
|
|
||
|
// configData same as forge.FileMeta but with json tags and string data
|
||
|
type configData struct {
|
||
|
Name string `json:"name"`
|
||
|
Data string `json:"data"`
|
||
|
}
|
||
|
|
||
|
type requestStructure struct {
|
||
|
Repo *model.Repo `json:"repo"`
|
||
|
Pipeline *model.Pipeline `json:"pipeline"`
|
||
|
Netrc *model.Netrc `json:"netrc"`
|
||
|
Configuration []*configData `json:"configs"` // TODO: deprecate in favor of netrc and remove in next major release
|
||
|
}
|
||
|
|
||
|
type responseStructure struct {
|
||
|
Configs []*configData `json:"configs"`
|
||
|
}
|
||
|
|
||
|
func NewHTTP(endpoint string, privateKey crypto.PrivateKey) Service {
|
||
|
return &http{endpoint, privateKey}
|
||
|
}
|
||
|
|
||
|
func (h *http) Fetch(ctx context.Context, forge forge.Forge, user *model.User, repo *model.Repo, pipeline *model.Pipeline, oldConfigData []*types.FileMeta, _ bool) ([]*types.FileMeta, error) {
|
||
|
currentConfigs := make([]*configData, len(oldConfigData))
|
||
|
for i, pipe := range oldConfigData {
|
||
|
currentConfigs[i] = &configData{Name: pipe.Name, Data: string(pipe.Data)}
|
||
|
}
|
||
|
|
||
|
netrc, err := forge.Netrc(user, repo)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("could not get Netrc data from forge: %w", err)
|
||
|
}
|
||
|
|
||
|
response := new(responseStructure)
|
||
|
body := requestStructure{
|
||
|
Repo: repo,
|
||
|
Pipeline: pipeline,
|
||
|
Configuration: currentConfigs,
|
||
|
Netrc: netrc,
|
||
|
}
|
||
|
|
||
|
status, err := utils.Send(ctx, "POST", h.endpoint, h.privateKey, body, response)
|
||
|
if err != nil && status != 204 {
|
||
|
return nil, fmt.Errorf("failed to fetch config via http (%d) %w", status, err)
|
||
|
}
|
||
|
|
||
|
if status != 200 {
|
||
|
return oldConfigData, nil
|
||
|
}
|
||
|
|
||
|
fileMetas := make([]*types.FileMeta, len(response.Configs))
|
||
|
for i, config := range response.Configs {
|
||
|
fileMetas[i] = &types.FileMeta{Name: config.Name, Data: []byte(config.Data)}
|
||
|
}
|
||
|
|
||
|
return fileMetas, nil
|
||
|
}
|