76 lines
1.9 KiB
Go
76 lines
1.9 KiB
Go
// Copyright 2019 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.
|
|
|
|
package status
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/drone/drone/core"
|
|
"github.com/drone/go-scm/scm"
|
|
)
|
|
|
|
// Config configures the Status service.
|
|
type Config struct {
|
|
Base string
|
|
Name string
|
|
Disabled bool
|
|
}
|
|
|
|
// New returns a new StatusService
|
|
func New(client *scm.Client, renew core.Renewer, config Config) core.StatusService {
|
|
return &service{
|
|
client: client,
|
|
renew: renew,
|
|
base: config.Base,
|
|
name: config.Name,
|
|
disabled: config.Disabled,
|
|
}
|
|
}
|
|
|
|
type service struct {
|
|
renew core.Renewer
|
|
client *scm.Client
|
|
base string
|
|
name string
|
|
disabled bool
|
|
}
|
|
|
|
func (s *service) Send(ctx context.Context, user *core.User, req *core.StatusInput) error {
|
|
if s.disabled || req.Build.Trigger == core.TriggerCron {
|
|
return nil
|
|
}
|
|
|
|
err := s.renew.Renew(ctx, user, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ctx = context.WithValue(ctx, scm.TokenKey{}, &scm.Token{
|
|
Token: user.Token,
|
|
Refresh: user.Refresh,
|
|
})
|
|
|
|
_, _, err = s.client.Repositories.CreateStatus(ctx, req.Repo.Slug, req.Build.After, &scm.StatusInput{
|
|
Desc: createDesc(req.Build.Status),
|
|
Label: createLabel(s.name, req.Build.Event),
|
|
State: convertStatus(req.Build.Status),
|
|
Target: fmt.Sprintf("%s/%s/%d", s.base, req.Repo.Slug, req.Build.Number),
|
|
})
|
|
if err == scm.ErrNotSupported {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|