-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
13585: [Backport stable/8.2] Ban process instances through admin API r=oleschoenburg a=rodrigo-lourenco-lopes ## Description Manual backport of #13550 Co-authored-by: Christopher Zell <[email protected]> Co-authored-by: rodrigolourencolopes <[email protected]> Co-authored-by: Ole Schönburg <[email protected]>
- Loading branch information
Showing
21 changed files
with
453 additions
and
43 deletions.
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
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
46 changes: 46 additions & 0 deletions
46
dist/src/main/java/io/camunda/zeebe/shared/management/BanInstanceEndpoint.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,46 @@ | ||
/* | ||
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under | ||
* one or more contributor license agreements. See the NOTICE file distributed | ||
* with this work for additional information regarding copyright ownership. | ||
* Licensed under the Zeebe Community License 1.1. You may not use this file | ||
* except in compliance with the Zeebe Community License 1.1. | ||
*/ | ||
package io.camunda.zeebe.shared.management; | ||
|
||
import io.camunda.zeebe.gateway.Loggers; | ||
import java.util.concurrent.CompletionException; | ||
import org.slf4j.Logger; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.actuate.endpoint.annotation.Selector; | ||
import org.springframework.boot.actuate.endpoint.annotation.Selector.Match; | ||
import org.springframework.boot.actuate.endpoint.annotation.WriteOperation; | ||
import org.springframework.boot.actuate.endpoint.web.WebEndpointResponse; | ||
import org.springframework.boot.actuate.endpoint.web.annotation.WebEndpoint; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
@WebEndpoint(id = "banning") | ||
public final class BanInstanceEndpoint { | ||
private static final Logger LOG = Loggers.GATEWAY_LOGGER; | ||
final BanInstanceService banInstanceService; | ||
|
||
@Autowired | ||
public BanInstanceEndpoint(final BanInstanceService banInstanceService) { | ||
this.banInstanceService = banInstanceService; | ||
} | ||
|
||
@WriteOperation | ||
public WebEndpointResponse<?> post( | ||
@Selector(match = Match.SINGLE) final long processInstanceKey) { | ||
try { | ||
LOG.info("Send AdminRequest to ban instance with key {}", processInstanceKey); | ||
banInstanceService.banInstance(processInstanceKey); | ||
return new WebEndpointResponse<>(WebEndpointResponse.STATUS_NO_CONTENT); | ||
} catch (final CompletionException e) { | ||
return new WebEndpointResponse<>( | ||
e.getCause(), WebEndpointResponse.STATUS_INTERNAL_SERVER_ERROR); | ||
} catch (final Exception e) { | ||
return new WebEndpointResponse<>(e, WebEndpointResponse.STATUS_INTERNAL_SERVER_ERROR); | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
dist/src/main/java/io/camunda/zeebe/shared/management/BanInstanceService.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,28 @@ | ||
/* | ||
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under | ||
* one or more contributor license agreements. See the NOTICE file distributed | ||
* with this work for additional information regarding copyright ownership. | ||
* Licensed under the Zeebe Community License 1.1. You may not use this file | ||
* except in compliance with the Zeebe Community License 1.1. | ||
*/ | ||
package io.camunda.zeebe.shared.management; | ||
|
||
import io.camunda.zeebe.gateway.admin.BrokerAdminRequest; | ||
import io.camunda.zeebe.gateway.impl.broker.BrokerClient; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public final class BanInstanceService { | ||
|
||
private final BrokerClient client; | ||
|
||
@Autowired | ||
public BanInstanceService(final BrokerClient client) { | ||
this.client = client; | ||
} | ||
|
||
public void banInstance(final long key) { | ||
client.sendRequest(new BrokerAdminRequest().banInstance(key)); | ||
} | ||
} |
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
Oops, something went wrong.