// Copyright 2023 Harness, 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 webhook import ( "context" "fmt" "time" "github.com/harness/gitness/app/auth" "github.com/harness/gitness/types" "github.com/harness/gitness/types/check" "github.com/harness/gitness/types/enum" ) type CreateInput struct { DisplayName string `json:"display_name"` Description string `json:"description"` URL string `json:"url"` Secret string `json:"secret"` Enabled bool `json:"enabled"` Insecure bool `json:"insecure"` Triggers []enum.WebhookTrigger `json:"triggers"` } // Create creates a new webhook. func (c *Controller) Create( ctx context.Context, session *auth.Session, repoRef string, in *CreateInput, internal bool, ) (*types.Webhook, error) { now := time.Now().UnixMilli() repo, err := c.getRepoCheckAccess(ctx, session, repoRef, enum.PermissionRepoEdit) if err != nil { return nil, err } // validate input err = checkCreateInput(in, c.allowLoopback, c.allowPrivateNetwork || internal) if err != nil { return nil, err } encryptedSecret, err := c.encrypter.Encrypt(in.Secret) if err != nil { return nil, fmt.Errorf("failed to encrypt webhook secret: %w", err) } // create new webhook object hook := &types.Webhook{ ID: 0, // the ID will be populated in the data layer Version: 0, // the Version will be populated in the data layer CreatedBy: session.Principal.ID, Created: now, Updated: now, ParentID: repo.ID, ParentType: enum.WebhookParentRepo, Internal: internal, // user input DisplayName: in.DisplayName, Description: in.Description, URL: in.URL, Secret: string(encryptedSecret), Enabled: in.Enabled, Insecure: in.Insecure, Triggers: deduplicateTriggers(in.Triggers), LatestExecutionResult: nil, } err = c.webhookStore.Create(ctx, hook) if err != nil { return nil, err } return hook, nil } func checkCreateInput(in *CreateInput, allowLoopback bool, allowPrivateNetwork bool) error { if err := check.DisplayName(in.DisplayName); err != nil { return err } if err := check.Description(in.Description); err != nil { return err } if err := checkURL(in.URL, allowLoopback, allowPrivateNetwork); err != nil { return err } if err := checkSecret(in.Secret); err != nil { return err } if err := checkTriggers(in.Triggers); err != nil { //nolint:revive return err } return nil }