-
Notifications
You must be signed in to change notification settings - Fork 91
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
Patch approval service #154
Open
IsharaSilva
wants to merge
8
commits into
wso2:feature-workflow-engine-simple
Choose a base branch
from
IsharaSilva:patch-approval-service
base: feature-workflow-engine-simple
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9f71095
add new approval service
IsharaSilva 850c4fa
add new approval service
IsharaSilva c0a8683
add new approval service
IsharaSilva 4553925
add new approval service
IsharaSilva e7dc2ae
add new approval service
IsharaSilva b89af13
add new approval service
IsharaSilva 52008da
add new approval service
IsharaSilva 4de9b56
add new approval service
IsharaSilva 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 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 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 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 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
53 changes: 53 additions & 0 deletions
53
...so2/carbon/identity/api/user/approval/common/factory/OSGISimpleWorkflowEngineService.java
This file contains 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) 2022, WSO2 LLC. (http://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. | ||
*/ | ||
|
||
package org.wso2.carbon.identity.api.user.approval.common.factory; | ||
|
||
import org.springframework.beans.factory.config.AbstractFactoryBean; | ||
import org.wso2.carbon.context.PrivilegedCarbonContext; | ||
import org.wso2.carbon.identity.workflow.engine.SimpleWorkflowEngineApprovalService; | ||
|
||
/** | ||
* Factory Beans serves as a factory for creating other beans within the IOC container. This factory bean is used to | ||
* instantiate the ApprovalEventService type of object inside the container. | ||
*/ | ||
public class OSGISimpleWorkflowEngineService extends AbstractFactoryBean<SimpleWorkflowEngineApprovalService> { | ||
|
||
private SimpleWorkflowEngineApprovalService simpleWorkflowEngineApprovalService; | ||
|
||
@Override | ||
public Class<?> getObjectType() { | ||
|
||
return Object.class; | ||
} | ||
|
||
@Override | ||
protected SimpleWorkflowEngineApprovalService createInstance() throws RuntimeException { | ||
|
||
if (this.simpleWorkflowEngineApprovalService == null) { | ||
SimpleWorkflowEngineApprovalService simpleWorkflowEngineApprovalService = (SimpleWorkflowEngineApprovalService) PrivilegedCarbonContext. | ||
getThreadLocalCarbonContext().getOSGiService(SimpleWorkflowEngineApprovalService.class, null); | ||
if (simpleWorkflowEngineApprovalService != null) { | ||
this.simpleWorkflowEngineApprovalService = simpleWorkflowEngineApprovalService; | ||
} else { | ||
throw new RuntimeException("Unable to retrieve ApprovalEvent service."); | ||
} | ||
} | ||
return this.simpleWorkflowEngineApprovalService; | ||
} | ||
} |
This file contains 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 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 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 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 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 |
---|---|---|
|
@@ -17,37 +17,83 @@ | |
package org.wso2.carbon.identity.rest.api.user.approval.v1.impl; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.wso2.carbon.identity.api.user.approval.common.ApprovalConstant; | ||
import org.wso2.carbon.identity.core.util.IdentityUtil; | ||
import org.wso2.carbon.identity.rest.api.user.approval.v1.MeApiService; | ||
import org.wso2.carbon.identity.rest.api.user.approval.v1.core.UserApprovalService; | ||
import org.wso2.carbon.identity.rest.api.user.approval.v1.dto.StateDTO; | ||
import org.wso2.carbon.identity.rest.api.user.approval.v1.dto.TaskSummaryDTO; | ||
import org.wso2.carbon.identity.workflow.engine.SimpleWorkflowEngineApprovalService; | ||
import org.wso2.carbon.identity.workflow.engine.dto.StateDTO; | ||
import org.wso2.carbon.identity.workflow.engine.internal.dao.WorkflowEventRequestDAO; | ||
import org.wso2.carbon.identity.workflow.engine.internal.dao.impl.WorkflowEventRequestDAOImpl; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.Stream; | ||
import javax.ws.rs.core.Response; | ||
|
||
/** | ||
* API service implementation of a logged in user's approval operations | ||
* API service implementation of a logged-in user's approval operations | ||
*/ | ||
public class MeApiServiceImpl extends MeApiService { | ||
|
||
private SimpleWorkflowEngineApprovalService simpleWorkflowEngineApprovalService; | ||
private UserApprovalService userApprovalService; | ||
private static boolean enableApprovalsFromSimpleWorkflowEngine = Boolean.parseBoolean(IdentityUtil.getProperty( | ||
ApprovalConstant.SIMPLE_WORKFLOW_ENGINE_APPROVALS)); | ||
private static boolean enableApprovalsFromBPEL = Boolean.parseBoolean(IdentityUtil.getProperty( | ||
ApprovalConstant.BPEL_ENGINE_APPROVALS)); | ||
|
||
public MeApiServiceImpl() { | ||
|
||
} | ||
Comment on lines
+47
to
+49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove if not needed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. need it. |
||
|
||
@Autowired | ||
UserApprovalService userApprovalService; | ||
public MeApiServiceImpl(SimpleWorkflowEngineApprovalService simpleWorkflowEngineApprovalService, | ||
UserApprovalService userApprovalService) { | ||
|
||
super(); | ||
this.simpleWorkflowEngineApprovalService = simpleWorkflowEngineApprovalService; | ||
this.userApprovalService = userApprovalService; | ||
} | ||
|
||
@Override | ||
public Response getApprovalTaskInfo(String taskId) { | ||
|
||
WorkflowEventRequestDAO workflowEventRequestDAO = new WorkflowEventRequestDAOImpl(); | ||
String taskDataDTO = workflowEventRequestDAO.getTask(taskId); | ||
if (taskDataDTO != null) { | ||
return Response.ok().entity(simpleWorkflowEngineApprovalService.getTaskData(taskId)).build(); | ||
} | ||
return Response.ok().entity(userApprovalService.getTaskData(taskId)).build(); | ||
} | ||
|
||
@Override | ||
public Response listApprovalTasksForLoggedInUser(Integer limit, Integer offset, List<String> status) { | ||
|
||
return Response.ok().entity(userApprovalService.listTasks(limit, offset, status)).build(); | ||
if (enableApprovalsFromSimpleWorkflowEngine && !enableApprovalsFromBPEL) { | ||
return Response.ok().entity(simpleWorkflowEngineApprovalService.listTasks(limit, offset, status)).build(); | ||
} else if (enableApprovalsFromBPEL && !enableApprovalsFromSimpleWorkflowEngine) { | ||
return Response.ok().entity(userApprovalService.listTasks(limit, offset, status)).build(); | ||
} | ||
List<TaskSummaryDTO> BPELApprovalList = userApprovalService.listTasks(limit, offset, status); | ||
List<org.wso2.carbon.identity.workflow.engine.dto.TaskSummaryDTO> simpleWorkflowEngineApprovalList = | ||
simpleWorkflowEngineApprovalService.listTasks(limit, offset, status); | ||
List<Object> allPendingList = Stream.concat(BPELApprovalList.stream(), simpleWorkflowEngineApprovalList. | ||
stream()).collect(Collectors.toList()); | ||
return Response.ok().entity(allPendingList).build(); | ||
} | ||
|
||
@Override | ||
public Response updateStateOfTask(String taskId, StateDTO nextState) { | ||
|
||
userApprovalService.updateStatus(taskId, nextState); | ||
WorkflowEventRequestDAO workflowEventRequestDAO = new WorkflowEventRequestDAOImpl(); | ||
String taskDataDTO = workflowEventRequestDAO.getTask(taskId); | ||
if (taskDataDTO != null) { | ||
simpleWorkflowEngineApprovalService.updateStatus(taskId, nextState); | ||
return Response.ok().build(); | ||
} | ||
new UserApprovalService().updateStatus(taskId, nextState); | ||
return Response.ok().build(); | ||
} | ||
} |
This file contains 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 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
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 if these imports can be removed
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.
Yes. no need.