-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from haarchri/feature/repositorypermission
feat(sdk): add repositorypermission
- Loading branch information
Showing
2 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"` | ||
} |