-
Notifications
You must be signed in to change notification settings - Fork 339
Improve Sift configuration page #9510
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7fa34f7
Improve Sift connector configuration page
NipuniBhagya f4a6f99
Add new Sift connector configurations
NipuniBhagya 8ca88e8
Add support to hide event publishing configurations
NipuniBhagya 91b0b1d
Add changeset file
NipuniBhagya fa65e5b
Fix eslint issues
NipuniBhagya e5f3761
Resolve PR comments
NipuniBhagya 8b42af7
Fix eslint rule pattern
NipuniBhagya 830cba2
Merge branch 'master' into sift-config
NipuniBhagya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,9 @@ | ||
| --- | ||
| "@wso2is/admin.server-configurations.v1": minor | ||
| "@wso2is/admin.core.v1": minor | ||
| "@wso2is/theme": minor | ||
| "@wso2is/console": minor | ||
| "@wso2is/i18n": minor | ||
| --- | ||
|
|
||
| Improve Sift configuration page |
This file contains hidden or 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
77 changes: 77 additions & 0 deletions
77
features/admin.server-configurations.v1/api/event-publishing-configurations.ts
This file contains hidden or 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,77 @@ | ||
| /** | ||
| * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com). | ||
| * | ||
| * WSO2 LLC. licenses this file to you 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. | ||
| */ | ||
|
|
||
|
|
||
| import { AsgardeoSPAClient, HttpClientInstance } from "@asgardeo/auth-react"; | ||
| import { RequestConfigInterface } from "@wso2is/admin.core.v1/hooks/use-request"; | ||
| import { store } from "@wso2is/admin.core.v1/store"; | ||
| import { IdentityAppsApiException } from "@wso2is/core/exceptions"; | ||
| import { HttpMethods } from "@wso2is/core/models"; | ||
| import { AxiosError, AxiosResponse } from "axios"; | ||
| import { ServerConfigurationsConstants } from "../constants/server-configurations-constants"; | ||
| import { FraudDetectionConfigurationsInterface } from "../models/fraud-detection"; | ||
|
|
||
| /** | ||
| * Initialize an axios Http client. | ||
| * | ||
| */ | ||
| const httpClient: HttpClientInstance = AsgardeoSPAClient.getInstance().httpRequest.bind( | ||
| AsgardeoSPAClient.getInstance()); | ||
|
|
||
| /** | ||
| * Function to update the Event Publishing Configurations. | ||
| */ | ||
| const updateEventPublishingConfigurations = ( | ||
| payload: FraudDetectionConfigurationsInterface | ||
| ): Promise<FraudDetectionConfigurationsInterface> => { | ||
| const requestConfig: RequestConfigInterface = { | ||
| data: payload, | ||
| headers: { | ||
| Accept: "application/json", | ||
| "Content-Type": "application/json" | ||
| }, | ||
| method: HttpMethods.PUT, | ||
| url: store.getState().config.endpoints.fraudDetectionConfigurations | ||
| }; | ||
|
|
||
| return httpClient(requestConfig) | ||
| .then((response: AxiosResponse) => { | ||
| if (response.status !== 200) { | ||
| throw new IdentityAppsApiException( | ||
| ServerConfigurationsConstants.CONFIGS_UPDATE_REQUEST_INVALID_STATUS_CODE_ERROR, | ||
| null, | ||
| response.status, | ||
| response.request, | ||
| response, | ||
| response.config); | ||
| } | ||
|
|
||
| return Promise.resolve(response.data); | ||
| }) | ||
| .catch((error: AxiosError) => { | ||
| throw new IdentityAppsApiException( | ||
| ServerConfigurationsConstants.CONFIGS_UPDATE_REQUEST_ERROR, | ||
| error.stack, | ||
| error.code, | ||
| error.request, | ||
| error.response, | ||
| error.config); | ||
| }); | ||
| }; | ||
|
|
||
| export default updateEventPublishingConfigurations; | ||
53 changes: 53 additions & 0 deletions
53
features/admin.server-configurations.v1/api/use-fraud-detection-configurations.ts
This file contains hidden or 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,53 @@ | ||
| /** | ||
| * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com). | ||
| * | ||
| * WSO2 LLC. licenses this file to you 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. | ||
| */ | ||
|
|
||
| import useRequest, { | ||
| RequestConfigInterface, | ||
| RequestErrorInterface, | ||
| RequestResultInterface | ||
| } from "@wso2is/admin.core.v1/hooks/use-request"; | ||
| import { store } from "@wso2is/admin.core.v1/store"; | ||
| import { HttpMethods } from "@wso2is/core/models"; | ||
| import { FraudDetectionConfigurationsInterface } from "../models/fraud-detection"; | ||
|
|
||
| const useFraudDetectionConfigurations = <Data = FraudDetectionConfigurationsInterface, Error = RequestErrorInterface>( | ||
| shouldFetch: boolean = true | ||
| ): RequestResultInterface<Data, Error> => { | ||
| const requestConfig: RequestConfigInterface = { | ||
| headers: { | ||
| Accept: "application/json", | ||
| "Content-Type": "application/json" | ||
| }, | ||
| method: HttpMethods.GET, | ||
| url: store.getState().config.endpoints.fraudDetectionConfigurations | ||
| }; | ||
|
|
||
| const { data, error, isLoading, isValidating, mutate } = useRequest<Data, Error>( | ||
| shouldFetch ? requestConfig : null | ||
| ); | ||
|
|
||
| return { | ||
| data: data as Data, | ||
| error, | ||
| isLoading, | ||
| isValidating, | ||
| mutate | ||
| }; | ||
| }; | ||
|
|
||
| export default useFraudDetectionConfigurations; |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check other files as well :)