|
@@ -1,74 +0,0 @@
|
|
|
-/*
|
|
|
- *
|
|
|
- * Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
|
- *
|
|
|
- * Redistribution and use in source and binary forms, with or without
|
|
|
- * modification, are permitted provided that the following conditions are met:
|
|
|
- *
|
|
|
- * Redistributions of source code must retain the above copyright notice,
|
|
|
- * this list of conditions and the following disclaimer.
|
|
|
- * Redistributions in binary form must reproduce the above copyright
|
|
|
- * notice, this list of conditions and the following disclaimer in the
|
|
|
- * documentation and/or other materials provided with the distribution.
|
|
|
- * Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
- * contributors may be used to endorse or promote products derived from
|
|
|
- * this software without specific prior written permission.
|
|
|
- * Author: lengleng (wangiegie@gmail.com)
|
|
|
- *
|
|
|
- */
|
|
|
-
|
|
|
-package com.pig4cloud.pigx.common.security.component;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author lengleng
|
|
|
- * @date 2018/6/22
|
|
|
- */
|
|
|
-
|
|
|
-import cn.hutool.http.HttpStatus;
|
|
|
-import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
-import com.pig4cloud.pigx.common.core.constant.CommonConstant;
|
|
|
-import com.pig4cloud.pigx.common.core.exception.PigDeniedException;
|
|
|
-import com.pig4cloud.pigx.common.core.util.R;
|
|
|
-import lombok.AllArgsConstructor;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.springframework.security.access.AccessDeniedException;
|
|
|
-import org.springframework.security.oauth2.provider.error.OAuth2AccessDeniedHandler;
|
|
|
-import org.springframework.stereotype.Component;
|
|
|
-
|
|
|
-import javax.servlet.ServletException;
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-import java.io.IOException;
|
|
|
-import java.io.PrintWriter;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author lengleng
|
|
|
- * 授权拒绝处理器,覆盖默认的OAuth2AccessDeniedHandler
|
|
|
- * 包装失败信息到PigDeniedException
|
|
|
- */
|
|
|
-@Slf4j
|
|
|
-@Component
|
|
|
-@AllArgsConstructor
|
|
|
-public class PigAccessDeniedHandler extends OAuth2AccessDeniedHandler {
|
|
|
- private final ObjectMapper objectMapper;
|
|
|
-
|
|
|
- /**
|
|
|
- * 授权拒绝处理,使用R包装
|
|
|
- *
|
|
|
- * @param request request
|
|
|
- * @param response response
|
|
|
- * @param authException authException
|
|
|
- * @throws IOException IOException
|
|
|
- * @throws ServletException ServletException
|
|
|
- */
|
|
|
- @Override
|
|
|
- public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException authException) throws IOException, ServletException {
|
|
|
- log.info("授权失败,禁止访问 {}", request.getRequestURI());
|
|
|
- response.setCharacterEncoding(CommonConstant.UTF8);
|
|
|
- response.setContentType(CommonConstant.CONTENT_TYPE);
|
|
|
- R<String> result = new R<>(new PigDeniedException("授权失败,禁止访问"));
|
|
|
- response.setStatus(HttpStatus.HTTP_FORBIDDEN);
|
|
|
- PrintWriter printWriter = response.getWriter();
|
|
|
- printWriter.append(objectMapper.writeValueAsString(result));
|
|
|
- }
|
|
|
-}
|