Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 17x 16x 16x 16x 16x 16x 16x 16x 16x 16x 16x 16x 16x 16x 16x 2x 16x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 16x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 16x 4x 4x 16x 1x 19x 1x | /* * Copyright 2021 Harness Inc. All rights reserved. * Use of this source code is governed by the PolyForm Shield 1.0.0 license * that can be found in the licenses directory at the root of this repository, also available at * https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt. */ import React, { useContext, useState } from 'react' import { useParams } from 'react-router-dom' import * as Yup from 'yup' import { Heading, Layout, StepProps, Text, Container, Formik, FormInput, FormikForm as Form, Button, ModalErrorHandler, ModalErrorHandlerBinding, useToaster } from '@wings-software/uicore' import type { ConnectorInfoDTO, ConnectorRequestBody } from 'services/cd-ng' import { useCreateConnector } from 'services/cd-ng' import { DialogWithExtensionContext } from '@ce/common/DialogWithExtension/DialogWithExtension' import { useGetCloudFormationTemplate } from 'services/lw' import { useStrings } from 'framework/strings' import useRBACError from '@rbac/utils/useRBACError/useRBACError' import { OPTIMIZATION_FEATURE, CROSS_ACCOUNT_ACCESS, FEATURES_ENABLED } from '../constants' import type { feature } from '../constants' import css from './Steps.module.scss' interface AWSCODetails { roleARN: string externalID: string } const ConnectionDetailsStep: React.FC<StepProps<ConnectorInfoDTO>> = props => { const { accountId } = useParams<{ accountId: string orgIdentifier: string projectIdentifier: string }>() const { getString } = useStrings() const { prevStepData, nextStep } = props const { triggerExtension } = useContext(DialogWithExtensionContext) const [modalErrorHandler, setModalErrorHandler] = useState<ModalErrorHandlerBinding | undefined>() const connectorInfo = prevStepData as ConnectorInfoDTO const [showRoleView, setShowRoleView] = useState(false) // const [externalIDEnabled, setExternalIDEnabled] = useState(true) const [externalID, setExternalID] = useState(connectorInfo.spec.externalID as string) const [saving, setSaving] = useState(false) const { getRBACErrorMessage } = useRBACError() const { showError } = useToaster() const { mutate: createConnector } = useCreateConnector({ queryParams: { accountIdentifier: accountId } }) const { data, error } = useGetCloudFormationTemplate({ account_id: accountId, // eslint-disable-line queryParams: { accountIdentifier: accountId } }) Iif (error) { showError(error.message, undefined, 'ce.get.cf.tmpl.error') } const randomString = (): string => { return Math.random().toString(36).substring(2, 8) + Math.random().toString(36).substring(2, 8) } const createTemplate = (): void => { const cftPath: string = data?.response?.path as string Iif (!cftPath) { showError('Template path is empty', undefined, 'ce.create.tpml.error') return } // setExternalIDEnabled(false) const curEnabled: boolean = connectorInfo.spec.billingPermission const optimizationEnabled: boolean = connectorInfo.spec.optimizationPermission const eventsEnabled: boolean = connectorInfo.spec.eventsPermission const rand = randomString() const stackName = `harness-ce-iam-${rand}` const reqPath = 'https://console.aws.amazon.com/cloudformation/home?#/stacks/quickcreate' const lambdaExecName = `HarnessCELambdaExecRole${rand}` const roleName = `HarnessCERole-${rand}` const url = `${reqPath}?stackName=${stackName}&templateURL=${cftPath}¶m_ExternalId=${externalID}¶m_CurEnabled=${curEnabled}¶m_OptimizationEnabled=${optimizationEnabled}¶m_EventsEnabled=${eventsEnabled}¶m_LambdaExecutionRoleName=${lambdaExecName}¶m_RoleName=${roleName}` window.open(url) } const saveAndContinue = async (awsCoDetails: AWSCODetails): Promise<void> => { setSaving(true) const requiredFeatures: feature[] = [] Eif (prevStepData?.spec?.optimizationPermission) { requiredFeatures.push(OPTIMIZATION_FEATURE) connectorInfo.spec[CROSS_ACCOUNT_ACCESS] = { crossAccountRoleArn: awsCoDetails.roleARN, externalId: awsCoDetails.externalID } } connectorInfo.spec[FEATURES_ENABLED] = requiredFeatures try { modalErrorHandler?.hide() const connector: ConnectorRequestBody = { connector: connectorInfo } await createConnector(connector) setSaving(false) nextStep?.(connectorInfo) } catch (e) { setSaving(false) modalErrorHandler?.showDanger(getRBACErrorMessage(e)) } } const handleFollowInstructionsClick = () => { setShowRoleView(true) triggerExtension() } return ( <Formik initialValues={{ roleARN: connectorInfo.spec.roleARN, externalID: connectorInfo.spec.externalID }} validationSchema={Yup.object().shape({ roleARN: Yup.string().trim().required(getString('ce.connector.AWS.crossAccountRole.validation.arnRequired')), externalID: Yup.string() .trim() .required(getString('ce.connector.AWS.crossAccountRole.validation.extIDRequired')) })} formName="connectionDetails" onSubmit={formData => { saveAndContinue({ ...formData, externalID: formData.externalID.trim(), roleARN: formData.roleARN.trim() }) }} > {() => ( <Form className={css.fullHeight}> <ModalErrorHandler bind={setModalErrorHandler} /> <Layout.Vertical spacing="large" className={css.containerLayout}> <Heading level={2} style={{ fontSize: '18px', color: 'grey800' }}> {getString('ce.connector.AWS.crossAccountRole.title')} </Heading> <Container padding={{ top: 'large', bottom: 'large' }}> <Text font={{ weight: 'bold' }}>{getString('ce.connector.AWS.crossAccountRole.text')}</Text> <Container background={'blue300'} padding={'large'} margin={{ top: 'medium' }}> <Text font="normal" style={{ lineHeight: '25px' }}> {getString('ce.connector.AWS.crossAccountRole.requirementExplanation')} </Text> </Container> </Container> <Container> <Button color="blue700" intent="primary" minimal onClick={handleFollowInstructionsClick}> <Text font={{ weight: 'bold' }} color="blue700"> {getString('ce.connector.AWS.crossAccountRole.instructionLabel')} </Text> </Button> </Container> {showRoleView && ( <Layout.Vertical spacing="large"> <FormInput.Text name="externalID" label={getString('ce.connector.AWS.crossAccountRole.externalID')} onChange={(e: React.ChangeEvent<HTMLInputElement>) => { setExternalID(e.target.value) }} // disabled={!externalIDEnabled} /> <FormInput.Text name="roleARN" label={getString('ce.connector.AWS.crossAccountRole.arn')} /> <div> <Button intent="primary" text={getString('ce.connector.AWS.crossAccountRole.templateLaunchText')} onClick={createTemplate} // disabled={!externalIDEnabled} /> </div> <div> <Button intent="primary" text={getString('ce.connector.AWS.overview.submitText')} rightIcon="chevron-right" disabled={saving} loading={saving} type="submit" /> </div> </Layout.Vertical> )} </Layout.Vertical> </Form> )} </Formik> ) } export default ConnectionDetailsStep |