From 8347c88ee078686542cf68861311527e5319c1f2 Mon Sep 17 00:00:00 2001 From: SmithaManjunath <smanjunath@microsoft.com> Date: Fri, 28 Jan 2022 09:29:27 +0530 Subject: [PATCH] add delete api --- .../org/opengroup/osdu/indexer/api/CleanupIndiciesApi.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/api/CleanupIndiciesApi.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/api/CleanupIndiciesApi.java index 21c0551aa..b1145b844 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/api/CleanupIndiciesApi.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/api/CleanupIndiciesApi.java @@ -38,8 +38,10 @@ import org.opengroup.osdu.indexer.service.IndexerService; import org.opengroup.osdu.indexer.service.IndicesServiceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; @@ -64,6 +66,9 @@ public class CleanupIndiciesApi { @Inject private IndicesServiceImpl indicesService; + + private static final String PRE_AUTH = "@authorizationFilter.hasPermission('"+ SearchServiceRole.ADMIN + "')" ; + @ApiIgnore @PostMapping(path = "/index-cleanup", consumes = "application/json") @PreAuthorize("@authorizationFilter.hasPermission('" + SearchServiceRole.ADMIN + "')") @@ -102,6 +107,8 @@ public class CleanupIndiciesApi { } } + @DeleteMapping(value = "/delete-index-for-kind", produces = MediaType.APPLICATION_JSON_VALUE) + @PreAuthorize(PRE_AUTH) public ResponseEntity deleteIndex(@RequestParam("kind") @NotBlank @ValidKind String kind) { try { String index = elasticIndexNameResolver.getIndexNameFromKind(kind); -- GitLab