1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00

48 lines
1.2 KiB
Go
Raw Normal View History

2018-06-14 00:37:48 -03:00
// Package put provides a Pipe that push using HTTP PUT
package put
import (
h "net/http"
"github.com/goreleaser/goreleaser/internal/http"
2018-09-12 14:18:01 -03:00
"github.com/goreleaser/goreleaser/internal/pipe"
"github.com/goreleaser/goreleaser/pkg/context"
2018-06-14 00:37:48 -03:00
"github.com/pkg/errors"
)
// Pipe for http publishing
type Pipe struct{}
// String returns the description of the pipe
func (Pipe) String() string {
2018-12-22 19:28:38 -02:00
return "HTTP PUT"
2018-06-14 00:37:48 -03:00
}
// Default sets the pipe defaults
func (Pipe) Default(ctx *context.Context) error {
return http.Defaults(ctx.Config.Puts)
}
2018-10-16 20:50:49 -03:00
// Publish artifacts
func (Pipe) Publish(ctx *context.Context) error {
2018-06-14 00:37:48 -03:00
if len(ctx.Config.Puts) == 0 {
2018-09-12 14:18:01 -03:00
return pipe.Skip("put section is not configured")
2018-06-14 00:37:48 -03:00
}
// Check requirements for every instance we have configured.
// If not fulfilled, we can skip this pipeline
for _, instance := range ctx.Config.Puts {
2018-11-07 22:04:49 -02:00
instance := instance
2018-06-14 00:37:48 -03:00
if skip := http.CheckConfig(ctx, &instance, "put"); skip != nil {
2018-09-12 14:18:01 -03:00
return pipe.Skip(skip.Error())
2018-06-14 00:37:48 -03:00
}
}
return http.Upload(ctx, ctx.Config.Puts, "put", func(res *h.Response) error {
2018-06-14 00:37:48 -03:00
if c := res.StatusCode; c < 200 || 299 < c {
return errors.Errorf("unexpected http response status: %s", res.Status)
2018-06-14 00:37:48 -03:00
}
return nil
2018-06-14 00:37:48 -03:00
})
}