blob: 1b1e63b267eb37f574fe20a36fbfea2d276ca459 [file] [log] [blame]
/*
* 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.ignite.internal.rest.exception.handler;
import io.micronaut.context.annotation.Requires;
import io.micronaut.http.HttpRequest;
import io.micronaut.http.HttpResponse;
import io.micronaut.http.server.exceptions.ExceptionHandler;
import jakarta.inject.Singleton;
import java.util.Set;
import org.apache.ignite.internal.lang.IgniteInternalException;
import org.apache.ignite.internal.rest.api.Problem;
import org.apache.ignite.internal.rest.constants.HttpCode;
import org.apache.ignite.internal.rest.problem.HttpProblemResponse;
import org.apache.ignite.lang.ErrorGroups.DisasterRecovery;
import org.apache.ignite.lang.ErrorGroups.DistributionZones;
/**
* Handles {@link IgniteInternalException} and represents it as a rest response.
*/
@Singleton
@Requires(classes = {IgniteInternalException.class, ExceptionHandler.class})
public class IgniteInternalExceptionHandler implements ExceptionHandler<IgniteInternalException, HttpResponse<? extends Problem>> {
private static final Set<Integer> BAD_REQUEST_CODES = Set.of(
DistributionZones.ZONE_NOT_FOUND_ERR,
DisasterRecovery.PARTITIONS_NOT_FOUND_ERR,
DisasterRecovery.NODES_NOT_FOUND_ERR
);
@Override
public HttpResponse<? extends Problem> handle(HttpRequest request, IgniteInternalException exception) {
if (BAD_REQUEST_CODES.contains(exception.code())) {
return HttpProblemResponse.from(
Problem.fromHttpCode(HttpCode.BAD_REQUEST)
.detail(exception.getMessage())
.traceId(exception.traceId())
.code(exception.codeAsString())
);
}
return HttpProblemResponse.from(
Problem.fromHttpCode(HttpCode.INTERNAL_SERVER_ERROR)
.traceId(exception.traceId())
.code(exception.codeAsString())
.detail(exception.getMessage())
);
}
}