2019-02-19 23:56:41 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-03-01 00:23:06 +00:00
|
|
|
// +build !oss
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
package admission
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/drone/drone-go/drone"
|
|
|
|
"github.com/drone/drone-go/plugin/admission"
|
|
|
|
"github.com/drone/drone/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
// External returns a new external Admission controller.
|
|
|
|
func External(endpoint, secret string, skipVerify bool) core.AdmissionService {
|
|
|
|
return &external{
|
|
|
|
endpoint: endpoint,
|
|
|
|
secret: secret,
|
|
|
|
skipVerify: skipVerify,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type external struct {
|
|
|
|
endpoint string
|
|
|
|
secret string
|
|
|
|
skipVerify bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *external) Admit(ctx context.Context, user *core.User) error {
|
|
|
|
if c.endpoint == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// include a timeout to prevent an API call from
|
|
|
|
// hanging the build process indefinitely. The
|
|
|
|
// external service must return a request within
|
|
|
|
// one minute.
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Minute)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
req := &admission.Request{
|
|
|
|
Event: admission.EventLogin,
|
|
|
|
User: toUser(user),
|
|
|
|
}
|
|
|
|
if user.ID == 0 {
|
|
|
|
req.Event = admission.EventRegister
|
|
|
|
}
|
|
|
|
client := admission.Client(c.endpoint, c.secret, c.skipVerify)
|
|
|
|
_, err := client.Admit(ctx, req)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func toUser(from *core.User) drone.User {
|
|
|
|
return drone.User{
|
|
|
|
ID: from.ID,
|
|
|
|
Login: from.Login,
|
|
|
|
Email: from.Email,
|
|
|
|
Avatar: from.Avatar,
|
|
|
|
Active: from.Active,
|
|
|
|
Admin: from.Admin,
|
|
|
|
Machine: from.Machine,
|
|
|
|
Syncing: from.Syncing,
|
|
|
|
Synced: from.Synced,
|
|
|
|
Created: from.Created,
|
|
|
|
Updated: from.Updated,
|
|
|
|
LastLogin: from.LastLogin,
|
|
|
|
}
|
|
|
|
}
|