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