// 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 gitrpc import ( "context" "github.com/harness/gitness/gitrpc/enum" "github.com/harness/gitness/gitrpc/rpc" ) type GetRefParams struct { ReadParams Name string Type enum.RefType } type GetRefResponse struct { SHA string } func (c *Client) GetRef(ctx context.Context, params GetRefParams) (GetRefResponse, error) { refType := enum.RefToRPC(params.Type) if refType == rpc.RefType_Undefined { return GetRefResponse{}, ErrInvalidArgumentf("invalid argument: '%s'", refType) } result, err := c.refService.GetRef(ctx, &rpc.GetRefRequest{ Base: mapToRPCReadRequest(params.ReadParams), RefName: params.Name, RefType: refType, }) if err != nil { return GetRefResponse{}, processRPCErrorf(err, "failed to get %s ref '%s'", params.Type.String(), params.Name) } return GetRefResponse{SHA: result.Sha}, nil } type UpdateRefParams struct { WriteParams Type enum.RefType Name string // NewValue specified the new value the reference should point at. // An empty value will lead to the deletion of the branch. NewValue string // OldValue is an optional value that can be used to ensure that the reference // is updated iff its current value is matching the provided value. OldValue string } func (c *Client) UpdateRef(ctx context.Context, params UpdateRefParams) error { refType := enum.RefToRPC(params.Type) if refType == rpc.RefType_Undefined { return ErrInvalidArgumentf("invalid argument: '%s'", refType) } _, err := c.refService.UpdateRef(ctx, &rpc.UpdateRefRequest{ Base: mapToRPCWriteRequest(params.WriteParams), RefName: params.Name, RefType: refType, NewValue: params.NewValue, OldValue: params.OldValue, }) if err != nil { return processRPCErrorf(err, "failed to update %s ref '%s'", params.Type.String(), params.Name) } return err }