Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub proxy part 1.5: integration in web ui #49561

Merged
merged 2 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions lib/web/ui/integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ type IntegrationAWSOIDCSpec struct {
Audience string `json:"audience,omitempty"`
}

// IntegrationGitHub contains the specific fields for the `github` subkind integration.
type IntegrationGitHub struct {
Organization string `json:"organization"`
}

// CheckAndSetDefaults for the aws oidc integration spec.
func (r *IntegrationAWSOIDCSpec) CheckAndSetDefaults() error {
if r.RoleARN == "" {
Expand Down Expand Up @@ -104,6 +109,8 @@ type Integration struct {
SubKind string `json:"subKind,omitempty"`
// AWSOIDC contains the fields for `aws-oidc` subkind integration.
AWSOIDC *IntegrationAWSOIDCSpec `json:"awsoidc,omitempty"`
// GitHub contains the fields for `github` subkind integration.
GitHub *IntegrationGitHub `json:"github,omitempty"`
}

// CheckAndSetDefaults for the create request.
Expand All @@ -123,6 +130,16 @@ func (r *Integration) CheckAndSetDefaults() error {
}
}

switch r.SubKind {
case types.IntegrationSubKindGitHub:
if r.GitHub == nil {
return trace.BadParameter("missing spec for GitHub integrations")
}
if err := types.ValidateGitHubOrganizationName(r.GitHub.Organization); err != nil {
return trace.Wrap(err)
}
}

return nil
}

Expand Down Expand Up @@ -195,6 +212,14 @@ func MakeIntegration(ig types.Integration) (*Integration, error) {
IssuerS3Prefix: s3Prefix,
Audience: ig.GetAWSOIDCIntegrationSpec().Audience,
}
case types.IntegrationSubKindGitHub:
spec := ig.GetGitHubIntegrationSpec()
if spec == nil {
return nil, trace.BadParameter("missing spec for GitHub integrations")
}
ret.GitHub = &IntegrationGitHub{
Organization: spec.Organization,
}
}

return ret, nil
Expand Down
84 changes: 84 additions & 0 deletions lib/web/ui/integration_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/*
* Teleport
* Copyright (C) 2024 Gravitational, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package ui

import (
"testing"

"github.com/stretchr/testify/require"

"github.com/gravitational/teleport/api/types"
)

func TestMakeIntegration(t *testing.T) {
oidcIntegration, err := types.NewIntegrationAWSOIDC(
types.Metadata{
Name: "aws-oidc",
},
&types.AWSOIDCIntegrationSpecV1{
RoleARN: "arn:aws:iam::123456789012:role/OidcRole",
},
)
require.NoError(t, err)

githubIntegration, err := types.NewIntegrationGitHub(
types.Metadata{
Name: "github-my-org",
},
&types.GitHubIntegrationSpecV1{
Organization: "my-org",
},
)
require.NoError(t, err)

testCases := []struct {
integration types.Integration
want Integration
}{
{
integration: oidcIntegration,
want: Integration{
Name: "aws-oidc",
SubKind: types.IntegrationSubKindAWSOIDC,
AWSOIDC: &IntegrationAWSOIDCSpec{
RoleARN: "arn:aws:iam::123456789012:role/OidcRole",
},
},
},
{
integration: githubIntegration,
want: Integration{
Name: "github-my-org",
SubKind: types.IntegrationSubKindGitHub,
GitHub: &IntegrationGitHub{
Organization: "my-org",
},
},
},
}

for _, tc := range testCases {
t.Run(tc.integration.GetName(), func(t *testing.T) {
actual, err := MakeIntegration(tc.integration)
require.NoError(t, err)
require.NotNil(t, actual)
require.Equal(t, tc.want, *actual)
})
}
}
4 changes: 4 additions & 0 deletions web/packages/teleport/src/Integrations/IntegrationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,10 @@ const IconCell = ({ item }: { item: IntegrationLike }) => {
formattedText = 'Azure OIDC';
icon = <IconContainer name="azure" />;
break;
case IntegrationKind.GitHub:
formattedText = item.name;
icon = <IconContainer name="github" />;
break;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ test('fetch integration list: fetchIntegrations()', async () => {
items: [
awsOidcIntegration,
awsOidcIntegrationWithAudience,
githubIntegration,
nonAwsOidcIntegration,
],
nextKey: 'some-key',
Expand Down Expand Up @@ -93,6 +94,17 @@ test('fetch integration list: fetchIntegrations()', async () => {
},
statusCode: IntegrationStatusCode.Running,
},
{
kind: 'github',
name: 'github-my-org',
resourceType: 'integration',
spec: {
roleArn: undefined,
audience: undefined,
},
details: 'GitHub Organization "my-org"',
statusCode: IntegrationStatusCode.Running,
},
{
kind: 'abc',
name: 'non-aws-oidc-integration',
Expand Down Expand Up @@ -232,6 +244,13 @@ const awsOidcIntegrationWithAudience = {
audience: IntegrationAudience.AwsIdentityCenter,
},
};
const githubIntegration = {
name: 'github-my-org',
subKind: 'github',
github: {
organization: 'my-org',
},
};

const mockAwsDbs = [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ export function makeIntegrations(json: any): Integration[] {

function makeIntegration(json: any): Integration {
json = json || {};
const { name, subKind, awsoidc } = json;
const { name, subKind, awsoidc, github } = json;
return {
resourceType: 'integration',
name,
Expand All @@ -433,6 +433,9 @@ function makeIntegration(json: any): Integration {
issuerS3Prefix: awsoidc?.issuerS3Prefix,
audience: awsoidc?.audience,
},
details: github
? `GitHub Organization "${github.organization}"`
: undefined,
// The integration resource does not have a "status" field, but is
// a required field for the table that lists both plugin and
// integration resources together. As discussed, the only
Expand Down
1 change: 1 addition & 0 deletions web/packages/teleport/src/services/integrations/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export enum IntegrationKind {
AwsOidc = 'aws-oidc',
AzureOidc = 'azure-oidc',
ExternalAuditStorage = 'external-audit-storage',
GitHub = 'github',
}

/**
Expand Down
Loading