All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.coodex.concrete.jaxrs.ConcreteExceptionMapper Maven / Gradle / Ivy

There is a newer version: 0.5.3-RC1
Show newest version
/*
 * Copyright (c) 2018 coodex.org ([email protected])
 *
 * Licensed 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.coodex.concrete.jaxrs;

import org.coodex.concrete.common.ConcreteException;
import org.coodex.concrete.common.ErrorCodes;
import org.coodex.concrete.common.ErrorInfo;
import org.coodex.concrete.common.ThrowableMapperFacade;
import org.coodex.config.Config;
import org.coodex.util.LazyServiceLoader;
import org.coodex.util.ServiceLoader;
import org.coodex.util.Singleton;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;
import java.lang.reflect.InvocationTargetException;

import static org.coodex.concrete.jaxrs.JaxRSHelper.HEADER_ERROR_OCCURRED;

/**
 * Created by davidoff shen on 2016-11-01.
 */
@Provider
public class ConcreteExceptionMapper implements ExceptionMapper {


    private final static Logger log = LoggerFactory.getLogger(ConcreteExceptionMapper.class);
    private final static ServiceLoader CODE_MAPPER_SERVICE_LOADER = new LazyServiceLoader(new DefaultErrorCodeMapper()) {
    };
    private final static Singleton warnOnServerError = Singleton.with(
            () -> Config.getValue("jaxrs.serverError.trace", true)
    );


    /**
     * @param errorCode errorCode
     * @return 根据错误号返回响应的响应状态,4xx为客户端问题,5xx为服务端问题,也可由项目自行重载
     */
    protected Response.Status getStatus(int errorCode) {
        return CODE_MAPPER_SERVICE_LOADER.get().toStatus(errorCode);
    }


    @Override
    public Response toResponse(Throwable exception) {
//        int errorCode = ErrorCodes.UNKNOWN_ERROR;
//
//        ConcreteException concreteException = ConcreteHelper.findException(exception);
//
//
//        if (concreteException != null) {
//            errorCode = concreteException.getCode();
//            exception = concreteException;
//        }

        ErrorInfo errorInfo = ThrowableMapperFacade.toErrorInfo(exception);
        Response.Status /*status = null;
        if (exception instanceof WebApplicationException) {
            try {
                status = Response.Status.fromStatusCode(((WebApplicationException) exception).getResponse().getStatus());
                errorInfo.setCode(status.getStatusCode());
            } catch (Throwable ignore) {
            }
        }
        if (status == null)*/ status = getStatus(errorInfo.getCode());

        if (warnOnServerError.get() && status.getFamily() == Response.Status.Family.SERVER_ERROR) {
            Throwable th = exception;
            if (exception instanceof ConcreteException) {
                if (((ConcreteException) exception).getCode() != ErrorCodes.UNKNOWN_ERROR) {
                    th = null;
                } else {
                    th = exception.getCause();
                    if (th instanceof InvocationTargetException) {
                        th = th.getCause();
                    }
                }
            }
            if (th != null) {
                log.warn("exception occurred: {}", th.getLocalizedMessage(), th);
            } else if (exception != null) {
                log.warn("exception occurred: {}", exception.getLocalizedMessage(), exception);
            }
        }


        return Response.status(status)
                .header("Content-Type", MediaType.APPLICATION_JSON)
                .header(HEADER_ERROR_OCCURRED, true)
                .entity(errorInfo)
                .build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy