From 198002fc36591b2334d8c4d7982c2fd90d961a47 Mon Sep 17 00:00:00 2001 From: Christopher Haar Date: Sun, 23 Jun 2024 21:27:23 +0200 Subject: [PATCH] feat(sdk): add repositorypermission Signed-off-by: Christopher Haar --- service/repositorypermission/client.go | 72 ++++++++++++++++++++++++++ service/repositorypermission/types.go | 68 ++++++++++++++++++++++++ 2 files changed, 140 insertions(+) create mode 100644 service/repositorypermission/client.go create mode 100644 service/repositorypermission/types.go diff --git a/service/repositorypermission/client.go b/service/repositorypermission/client.go new file mode 100644 index 0000000..2abde09 --- /dev/null +++ b/service/repositorypermission/client.go @@ -0,0 +1,72 @@ +// Copyright 2024 Upbound 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 repositorypermission + +import ( + "context" + "fmt" + "net/http" + + "github.com/google/uuid" + + "github.com/upbound/up-sdk-go" +) + +const ( + basePath = "v1/repoPermissions/%s/teams/%s" +) + +// Client is a repositories permission client. +type Client struct { + *up.Config +} + +// NewClient build a repositories permission client from the passed config. +func NewClient(cfg *up.Config) *Client { + return &Client{ + cfg, + } +} + +// Create assigns a specified permission to a team for a repository on Upbound. +func (c *Client) Create(ctx context.Context, organization string, teamID uuid.UUID, params CreatePermission) error { + req, err := c.Client.NewRequest(ctx, http.MethodPut, fmt.Sprintf(basePath, organization, teamID), params.Repository, params.Permission) + if err != nil { + return err + } + return c.Client.Do(req, nil) +} + +// Delete removes a specified permission from a team for a repository on Upbound. +func (c *Client) Delete(ctx context.Context, organization string, teamID uuid.UUID, params PermissionIdentifier) error { // nolint:interfacer + req, err := c.Client.NewRequest(ctx, http.MethodDelete, fmt.Sprintf(basePath, organization, teamID), params.Repository, nil) + if err != nil { + return err + } + return c.Client.Do(req, nil) +} + +// List retrieves all repository permissions assigned to a team on Upbound. +func (c *Client) List(ctx context.Context, organization string, teamID uuid.UUID) (*ListPermissionsResponse, error) { + req, err := c.Client.NewRequest(ctx, http.MethodGet, fmt.Sprintf(basePath, organization, teamID), "", nil) + if err != nil { + return nil, err + } + r := &ListPermissionsResponse{} + if err := c.Client.Do(req, r); err != nil { + return nil, err + } + return r, nil +} diff --git a/service/repositorypermission/types.go b/service/repositorypermission/types.go new file mode 100644 index 0000000..56a5967 --- /dev/null +++ b/service/repositorypermission/types.go @@ -0,0 +1,68 @@ +// Copyright 2024 Upbound 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 repositorypermission + +import ( + "time" + + "github.com/google/uuid" +) + +// PermissionType represents the type of permission for a repository. +type PermissionType string + +// PermissionTypes +const ( + PermissionAdmin PermissionType = "admin" + PermissionRead PermissionType = "read" + PermissionWrite PermissionType = "write" + PermissionView PermissionType = "view" +) + +// RepositoryPermission represents the permission to be set for a repository. +type RepositoryPermission struct { + Permission PermissionType `json:"permission"` +} + +// CreatePermission holds the parameters for creating a repository permission. +type CreatePermission struct { + Permission RepositoryPermission `json:"permission"` + Repository string `json:"repository"` +} + +// PermissionIdentifier holds the parameters for a repository permission. +type PermissionIdentifier struct { + Repository string `json:"repository"` +} + +// Permission represents a repository permission entry. +type Permission struct { + TeamID uuid.UUID `json:"teamId"` + RepositoryID int `json:"repositoryId"` + AccountID int `json:"accountId"` + Privilege PermissionType `json:"privilege"` + CreatorID int `json:"creatorId"` + CreatedAt time.Time `json:"createdAt"` + UpdatedAt *time.Time `json:"updatedAt,omitempty"` + RepositoryName string `json:"repositoryName"` +} + +// ListPermissionsResponse represents the response from listing repository permissions. +type ListPermissionsResponse struct { + Permissions []Permission `json:"permissions"` + Size int `json:"size"` + Page int `json:"page"` + Count int `json:"count"` +}