// 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 template import ( "context" "fmt" "strconv" "strings" "time" apiauth "github.com/harness/gitness/app/api/auth" "github.com/harness/gitness/app/api/usererror" "github.com/harness/gitness/app/auth" "github.com/harness/gitness/types" "github.com/harness/gitness/types/check" "github.com/harness/gitness/types/enum" ) var ( // errTemplateRequiresParent if the user tries to create a template without a parent space. errTemplateRequiresParent = usererror.BadRequest( "Parent space required - standalone templates are not supported.") ) type CreateInput struct { Description string `json:"description"` SpaceRef string `json:"space_ref"` // Ref of the parent space UID string `json:"uid"` Type string `json:"type"` Data string `json:"data"` } func (c *Controller) Create(ctx context.Context, session *auth.Session, in *CreateInput) (*types.Template, error) { if err := c.sanitizeCreateInput(in); err != nil { return nil, fmt.Errorf("failed to sanitize input: %w", err) } parentSpace, err := c.spaceStore.FindByRef(ctx, in.SpaceRef) if err != nil { return nil, fmt.Errorf("failed to find parent by ref: %w", err) } err = apiauth.CheckTemplate(ctx, c.authorizer, session, parentSpace.Path, in.UID, enum.PermissionTemplateEdit) if err != nil { return nil, err } var template *types.Template now := time.Now().UnixMilli() template = &types.Template{ Description: in.Description, Data: in.Data, SpaceID: parentSpace.ID, UID: in.UID, Created: now, Updated: now, Version: 0, } err = c.templateStore.Create(ctx, template) if err != nil { return nil, fmt.Errorf("template creation failed: %w", err) } return template, nil } func (c *Controller) sanitizeCreateInput(in *CreateInput) error { parentRefAsID, err := strconv.ParseInt(in.SpaceRef, 10, 64) if (err == nil && parentRefAsID <= 0) || (len(strings.TrimSpace(in.SpaceRef)) == 0) { return errTemplateRequiresParent } if err := c.uidCheck(in.UID, false); err != nil { return err } in.Description = strings.TrimSpace(in.Description) return check.Description(in.Description) }