Skip to content

Commit

Permalink
Merge pull request #135 from markussiebert/feature/GAT
Browse files Browse the repository at this point in the history
feat: add GroupAccessToken
  • Loading branch information
MisterMX committed Apr 29, 2024
2 parents eca580d + f0712db commit 4d869ff
Show file tree
Hide file tree
Showing 12 changed files with 1,685 additions and 0 deletions.
108 changes: 108 additions & 0 deletions apis/groups/v1alpha1/accesstoken_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
/*
Copyright 2021 The Crossplane Authors.
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 v1alpha1

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

xpv1 "github.com/crossplane/crossplane-runtime/apis/common/v1"
)

// AccessTokenParameters define the desired state of a Gitlab access token
// https://docs.gitlab.com/ee/api/access_tokens.html
type AccessTokenParameters struct {
// GroupID is the ID of the group to create the deploy token in.
// +optional
// +immutable
GroupID *int `json:"groupId,omitempty"`

// GroupIDRef is a reference to a group to retrieve its groupId
// +optional
// +immutable
GroupIDRef *xpv1.Reference `json:"groupIdRef,omitempty"`

// GroupIDSelector selects reference to a group to retrieve its groupId.
// +optional
GroupIDSelector *xpv1.Selector `json:"groupIdSelector,omitempty"`

// Expiration date of the access token. The date cannot be set later than the maximum allowable lifetime of an access token.
// If not set, the maximum allowable lifetime of a personal access token is 365 days.
// Expected in ISO 8601 format (2019-03-15T08:00:00Z)
// +immutable
ExpiresAt *metav1.Time `json:"expiresAt,omitempty"`

// Access level for the group. Default is 40.
// Valid values are 10 (Guest), 20 (Reporter), 30 (Developer), 40 (Maintainer), and 50 (Owner).
// +optional
// +immutable
AccessLevel *AccessLevelValue `json:"accessLevel,omitempty"`

// Scopes indicates the access token scopes.
// Must be at least one of read_repository, read_registry, write_registry,
// read_package_registry, or write_package_registry.
// +immutable
Scopes []string `json:"scopes"`

// Name of the group access token
// +required
Name string `json:"name"`
}

// AccessTokenObservation represents a access token.
//
// GitLab API docs:
// https://docs.gitlab.com/ee/api/group_access_tokens.html
type AccessTokenObservation struct {
TokenID *int `json:"id,omitempty"`
}

// A AccessTokenSpec defines the desired state of a Gitlab group.
type AccessTokenSpec struct {
xpv1.ResourceSpec `json:",inline"`
ForProvider AccessTokenParameters `json:"forProvider"`
}

// A AccessTokenStatus represents the observed state of a Gitlab group.
type AccessTokenStatus struct {
xpv1.ResourceStatus `json:",inline"`
AtProvider AccessTokenObservation `json:"atProvider,omitempty"`
}

// +kubebuilder:object:root=true

// A AccessToken is a managed resource that represents a Gitlab group access token
// +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status"
// +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status"
// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
// +kubebuilder:subresource:status
// +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gitlab}
type AccessToken struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec AccessTokenSpec `json:"spec"`
Status AccessTokenStatus `json:"status,omitempty"`
}

// +kubebuilder:object:root=true

// AccessTokenList contains a list of group items
type AccessTokenList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []AccessToken `json:"items"`
}
28 changes: 28 additions & 0 deletions apis/groups/v1alpha1/referencers.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,34 @@ func (mg *DeployToken) ResolveReferences(ctx context.Context, c client.Reader) e
return nil
}

// ResolveReferences of this Access Token
func (mg *AccessToken) ResolveReferences(ctx context.Context, c client.Reader) error {
r := reference.NewAPIResolver(c, mg)

// resolve spec.forProvider.groupIdRef
rsp, err := r.Resolve(ctx, reference.ResolutionRequest{
CurrentValue: fromPtrValue(mg.Spec.ForProvider.GroupID),
Reference: mg.Spec.ForProvider.GroupIDRef,
Selector: mg.Spec.ForProvider.GroupIDSelector,
To: reference.To{Managed: &Group{}, List: &GroupList{}},
Extract: reference.ExternalName(),
})

if err != nil {
return errors.Wrap(err, "spec.forProvider.groupId")
}

resolvedID, err := toPtrValue(rsp.ResolvedValue)
if err != nil {
return errors.Wrap(err, "spec.forProvider.groupId")
}

mg.Spec.ForProvider.GroupID = resolvedID
mg.Spec.ForProvider.GroupIDRef = rsp.ResolvedReference

return nil
}

// ResolveReferences of this Group.
func (mg *Group) ResolveReferences(ctx context.Context, c client.Reader) error {
r := reference.NewAPIResolver(c, mg)
Expand Down
9 changes: 9 additions & 0 deletions apis/groups/v1alpha1/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ var (
DeployTokenGroupVersionKind = SchemeGroupVersion.WithKind(DeployTokenKind)
)

// Access Token type metadata
var (
AccessTokenKind = reflect.TypeOf(AccessToken{}).Name()
AccessTokenGroupKind = schema.GroupKind{Group: KubernetesGroup, Kind: AccessTokenKind}.String()
AccessTokenKindAPIVersion = AccessTokenKind + "." + SchemeGroupVersion.String()
AccessTokenGroupVersionKind = SchemeGroupVersion.WithKind(AccessTokenKind)
)

// Variable type metadata
var (
VariableKind = reflect.TypeOf(Variable{}).Name()
Expand All @@ -72,6 +80,7 @@ var (
func init() {
SchemeBuilder.Register(&Group{}, &GroupList{})
SchemeBuilder.Register(&Member{}, &MemberList{})
SchemeBuilder.Register(&AccessToken{}, &AccessTokenList{})
SchemeBuilder.Register(&DeployToken{}, &DeployTokenList{})
SchemeBuilder.Register(&Variable{}, &VariableList{})
}
157 changes: 157 additions & 0 deletions apis/groups/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 60 additions & 0 deletions apis/groups/v1alpha1/zz_generated.managed.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4d869ff

Please sign in to comment.