[ https://issues.apache.org/jira/browse/GEODE-8095?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17146498#comment-17146498 ]
ASF GitHub Bot commented on GEODE-8095: --------------------------------------- mhansonp commented on a change in pull request #5300: URL: https://github.com/apache/geode/pull/5300#discussion_r446309399 ########## File path: geode-web-management/src/main/java/org/apache/geode/management/internal/rest/controllers/RestoreRedundancyOperationController.java ########## @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for additional information regarding + * copyright ownership. The ASF 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.apache.geode.management.internal.rest.controllers; + +import static org.apache.geode.management.configuration.Links.URI_VERSION; +import static org.apache.geode.management.operation.RestoreRedundancyRequest.RESTORE_REDUNDANCY_ENDPOINT; + +import java.util.Optional; + +import io.swagger.annotations.ApiOperation; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import org.apache.geode.internal.security.SecurityService; +import org.apache.geode.management.api.ClusterManagementListOperationsResult; +import org.apache.geode.management.api.ClusterManagementOperationResult; +import org.apache.geode.management.operation.RestoreRedundancyRequest; +import org.apache.geode.management.runtime.RestoreRedundancyResults; + +@RestController("restoreRedundancyOperation") +@RequestMapping(URI_VERSION) +public class RestoreRedundancyOperationController extends AbstractManagementController { + @ApiOperation(value = "start restore-redundancy") + @PreAuthorize("@securityService.authorize('DATA', 'MANAGE')") + @PostMapping(RESTORE_REDUNDANCY_ENDPOINT) + public ResponseEntity<ClusterManagementOperationResult<RestoreRedundancyRequest, RestoreRedundancyResults>> startRestoreRedundancy( + @RequestBody RestoreRedundancyRequest operation) { + operation.setOperator( + Optional.ofNullable(securityService).map(SecurityService::getSubject).map(Object::toString) + .orElse(null)); + ClusterManagementOperationResult<RestoreRedundancyRequest, RestoreRedundancyResults> result = + clusterManagementService + .start(operation); + return new ResponseEntity<>(result, HttpStatus.ACCEPTED); + } + + @ApiOperation(value = "list restore-redundancy") + @PreAuthorize("@securityService.authorize('DATA', 'MANAGE')") Review comment: How do I check it? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > Create restore redundancy and status redundancy REST API commands > ----------------------------------------------------------------- > > Key: GEODE-8095 > URL: https://issues.apache.org/jira/browse/GEODE-8095 > Project: Geode > Issue Type: Bug > Components: rest (admin) > Reporter: Anilkumar Gingade > Assignee: Mark Hanson > Priority: Major > Labels: GeodeOperationAPI > Fix For: 1.14.0 > > > Add two REST API commands to allow redundancy to be restored and to check the > current redundancy status. > Similar to: https://issues.apache.org/jira/browse/GEODE-7954 > More on restore redundancy can be found at > https://cwiki.apache.org/confluence/display/GEODE/Redundancy+Gfsh+Commands -- This message was sent by Atlassian Jira (v8.3.4#803005)