java自定义签名拦截器,请求有正确的签名才可以访问接口

上述用postman工具模拟客户端请求接口,

实现的需求: 必须在head里有正确的签名, 才可以访问系统中的接口,否则,进行拦截

实现方案:先给用户生成一个签名,提供给用户,用户对签名进行加密后,请求头auth_signature携带加密后的签名访问接口,拦截器对加密后的签名进行解密,判断签名是否正确,是否过期,签名是否已进行认证等业务逻辑,都验证通过后方可访问系统中的接口

步骤:

1、先生成 appKey和secret提供给用户:

String appKey = IdUtil.nanoId(12);
String secret = IdUtil.fastSimpleUUID();

2、用户对签名进行加密后,访问请求头里,如上图postman示例:

public static void main(String[] args) {
    String appKey = "DRUEWDRUEWDRUEWDRUEW";
    String secret = "5fa055e7f2f2d45fa055e7f2f2d4";
    long timestamp = System.currentTimeMillis();
     模拟签名加密:
    String lisi = SecureUtil.aes(SecureUtil.md5(new DateTime().toString("yyyyMMdd")).getBytes()).encryptHex(appKey+"&"+secret+"&"+timestamp);
    System.out.println(lisi);
   模拟签名解密:
    String s = SecureUtil.aes(SecureUtil.md5(new DateTime().toString("yyyyMMdd")).getBytes()).decryptStr(lisi);
    System.out.println(s);
}

3:自定义个拦截器,进行解密,判断解密后的是否符合要求:

@Configuration
public class InterceptorConfig implements WebMvcConfigurer {
    @Resource
    private OpenApiAuthInterceptor openApiAuthInterceptor;

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        //开放api拦截器
        registry.addInterceptor(openApiAuthInterceptor).addPathPatterns("/**/openApi/**");
    }
@Slf4j
@Component
public class OpenApiAuthInterceptor implements HandlerInterceptor {
    @Resource
    private OpenapiAuthManageBiz openapiAuthManageBiz;
    @Resource
    private OpenApiRequestRecordMapper openApiRequestRecordMapper;

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        String contextPath = request.getServletPath();
        //先获取请求头中的签名
        String signature = request.getHeader("auth_signature");
        if(StrUtil.isEmpty(signature)){
            //签名为空的情况
            setResponse(response,401,"请求接口失败,签名不可为空");
            return false;
        }
        //对签名进行解密
        try {
            String s = SecureUtil.aes(SecureUtil.md5(new DateTime().toString("yyyyMMdd")).getBytes()).decryptStr(signature);
            String[] split = s.split("&");
            if(split.length < 3){
                setResponse(response,401,"请求接口失败,签名有误");
                return false;
            }
            //分别获取 appKey,secret和请求接口时间戳
            String appKey = split[0];
            String secret = split[1];
            Long timestamp = Convert.toLong(split[2]);
            //校验签名的时效性
            if((System.currentTimeMillis()-2*60*1000)>timestamp){
                setResponse(response,401,"请求接口失败,签名已过期");
                return false;
            }
            //校验 appKey, secret 以及访问接口权限
            OpenapiAuthManage openapiAuthManage = new OpenapiAuthManage();
            String checkResult = openapiAuthManageBiz.checkAuth(appKey, secret, contextPath, openapiAuthManage);
            if(StrUtil.isNotEmpty(checkResult)){
                setResponse(response,401,checkResult);
                return false;
            }
            //接口调用记录
            saveRequestRecord(request, contextPath, openapiAuthManage);
        } catch (Exception e) {
            log.error("请求开放接口签名异常,{}",e.getMessage());
            setResponse(response,401,"请求接口失败,签名有误");
            return false;
        }

        return true;
    }}

    public String checkAuth(String appKey, String secret, String apiPath, OpenapiAuthManage openapiAuthManage) {
        //根据appKey获取授权
        OpenapiAuthManage authByAppKey = getAuthByAppKey(appKey);
        BeanUtil.copyProperties(authByAppKey,openapiAuthManage);
        if (authByAppKey == null || !authByAppKey.getStatus().equals(1)) {
            return  "请求接口失败,appKey不存在或已被停用";
        }
        //校验secret
        if (!authByAppKey.getSecret().equals(secret)) {
            return  "请求接口失败,无效的secret";
        }
        //校验接口权限
        if (authByAppKey.getApiRange().equals(0)) {
            Boolean aBoolean = checkApiPermission(authByAppKey, apiPath);
            if (!aBoolean) {
                return  "请求接口失败,请求了权限之外的接口或停用的接口";
            }
        }
        return "";
    }
    public OpenapiAuthManage getAuthByAppKey(String appKey){
        Example example = new Example(OpenapiAuthManage.class);
        Example.Criteria criteria = example.createCriteria();
        criteria.andEqualTo("appKey",appKey);
        List<OpenapiAuthManage> list = mapper.selectByExample(example);
        if (CollUtil.isNotEmpty(list)){
            return list.get(0);
        }
        return null;
    }
    public Boolean checkApiPermission(OpenapiAuthManage authByAppKey,String apiPath){
        String applyApis = authByAppKey.getApplyApis();
        List<Map> list = JsonUtils.jsonToList(applyApis, Map.class);
        if(CollUtil.isNotEmpty(list)){
            for (Map map : list) {
                if(apiPath.equals(map.get("path"))){
                    //校验接口是否被停用
                    //根据api路径获取api
                    OpenApi openApi = openApiBiz.queryApiByPath(apiPath);
                    if(openApi.getStatus().equals(1)){
                        return true;
                    }
                }
            }
        }
        return false;
    }

课程简介这是一门使用Java语言SpringBoot框架,从0开发一个RESTful API应用,接近企业级的项目(我的云音乐),课程包含了基础内容,高级内容,项目封装,项目重构等知识,99%代码为手写;因为这是项目课程;所以不会深入到源码讲解某个知识点,以及原理,但会粗略的讲解下基础原理;主要是讲解如何使用系统功能,流行的第三方框架,第三方服务,完成接近企业级项目,目的是让大家,学到真正的企业级项目开发技术。适用人群刚刚毕业的学生想提高职场竞争力想学从零开发SpringBoot项目想提升SpringBoot项目开发技术想学习SpringBoot项目架构技术想学习企业级项目开发技术就是想学习SpringBoot开发能学到什么从0开发一个类似企业级项目学会能做出市面上90%通用API快速增加1到2年实际开发经验刚毕业学完后能找到满意的工作已经工作学完后最高涨薪30%课程信息全课程目前是82章,155小时,每节视频都经过精心剪辑。在线学习分辨率最高1080P课程知识点1~11章:学习方法,项目架构,编码规范,Postman使用方法,Git和Github版本控制12~16章:搭建开发环境,快速入门SpringBoot框架17~20章:快速入门MySQL数据库21~30章:MyBatis,登录注册,找回密码,发送短信,发送邮件,企业级接口配置31~41章:实现歌单,歌单标签,音乐,列表分页,视频,评论,好友功能42~48章:阿里云OSS,话题,MyBatis-plus,应用监控49~53章:Redis使用,集成Redis,SpringCache,HTTP缓存54~58章:Elasticsearch使用,集成Elasticsearch,使用ES搜索59~61章:商城,集成支付宝SDK,支付宝支付62~64章:常用哈希和加密算法,接口加密和签名65~67章:实时挤掉用户,企业级项目测试环境,企业级接口文档68~69章:SpringBoot全站HTTPS,自签证书,申请免费证书70~73章:云MySQL数据库,云Redis数据库使用,轻量级应用部署环境,域名解析74~80章:Docker使用,生产级Kubernetes集群,域名解析,集群全站HTTPS81~82章:增强和重构项目,课程总结,后续学习计划
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值