123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #include <AWSClientAuthEditorSystemComponent.h>
- #include <ActionManager/Action/ActionManagerInterface.h>
- #include <AWSCoreBus.h>
- namespace AWSClientAuth
- {
- void AWSClientAuthEditorSystemComponent::Reflect(AZ::ReflectContext* context)
- {
- AZ::SerializeContext* serialize = azrtti_cast<AZ::SerializeContext*>(context);
- if (serialize)
- {
- serialize->Class<AWSClientAuthEditorSystemComponent, AZ::Component>()
- ;
- if (AZ::EditContext* ec = serialize->GetEditContext())
- {
- ec->Class<AWSClientAuthEditorSystemComponent>("AWSClientAuthEditor", "Provides Client Authentication and Authorization implementations")
- ->ClassElement(AZ::Edit::ClassElements::EditorData, "")
- ->Attribute(AZ::Edit::Attributes::AutoExpand, true);
- }
- }
- }
- void AWSClientAuthEditorSystemComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided)
- {
- provided.push_back(AZ_CRC_CE("AWSClientAuthEditorService"));
- }
- void AWSClientAuthEditorSystemComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible)
- {
- incompatible.push_back(AZ_CRC_CE("AWSClientAuthEditorService"));
- }
- void AWSClientAuthEditorSystemComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required)
- {
- required.push_back(AZ_CRC_CE("AWSCoreService"));
- }
- void AWSClientAuthEditorSystemComponent::GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType&)
- {
- }
- void AWSClientAuthEditorSystemComponent::Activate()
- {
- AzToolsFramework::ActionManagerRegistrationNotificationBus::Handler::BusConnect();
- }
- void AWSClientAuthEditorSystemComponent::Deactivate()
- {
- AzToolsFramework::ActionManagerRegistrationNotificationBus::Handler::BusDisconnect();
- }
- void AWSClientAuthEditorSystemComponent::OnMenuBindingHook()
- {
- constexpr const char* AWSClientAuth[] =
- {
- "Client Auth Gem" ,
- "client_auth_gem" ,
- ":/Notifications/download.svg",
- ""
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::CreateSubMenu, AWSCore::AWSMenuIdentifier, AWSClientAuth, 100);
- const auto& submenuIdentifier = AWSClientAuth[1];
- constexpr const char* AWSClientAuthGemOverview[] =
- {
- "Client Auth Gem overview" ,
- "client_auth_gem_overview" ,
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSClientAuthGemOverview, 0);
- constexpr const char* AWSSetupClientAuthGem[] =
- {
- "Setup Client Auth Gem",
- "setup_client_auth_gem",
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/setup/"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSSetupClientAuthGem, 0);
- constexpr const char* AWSClientAuthCDKAndResourcesUrl[] =
- {
- "CDK application and resource mappings",
- "cdk_application_and_resource_mappings",
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/setup/#3-deploy-the-cdk-application"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSClientAuthCDKAndResourcesUrl, 0);
- constexpr const char* AWSClientAuthScriptCanvasAndLua[] =
- {
- "Scripting reference",
- "scripting_reference",
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/scripting/"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSClientAuthScriptCanvasAndLua, 0);
- constexpr const char* AWSClientAuth3rdPartyAuthProvider[] =
- {
- "3rd Party developer authentication provider support",
- "3rd_party_developer_authentication_provider_support",
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/authentication-providers/#using-a-custom-provider"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSClientAuth3rdPartyAuthProvider, 0);
- constexpr const char* AWSClientAuthCustomAuthProvider[] =
- {
- "Custom developer authentication provider support",
- "custom_developer_authentication_provider_support",
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/authentication-providers/#using-a-custom-provider"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSClientAuthCustomAuthProvider, 0);
- constexpr const char* AWSClientAuthAPI[] =
- {
- "API reference",
- "api_reference",
- ":/Notifications/link.svg",
- "https://o3de.org/docs/user-guide/gems/reference/aws/aws-client-auth/cpp-api/"
- };
- AWSCore::AWSCoreEditorRequestBus::Broadcast(&AWSCore::AWSCoreEditorRequests::AddExternalLinkAction, submenuIdentifier, AWSClientAuthAPI, 0);
- }
- } // namespace AWSClientAuth
|