feat: 新增 sa-token-okhttps 插件,整合 OkHttps 作为请求处理器模块

This commit is contained in:
click33
2025-05-16 00:43:41 +08:00
parent 760cac764b
commit 6ce8f38aaf
9 changed files with 180 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>sa-token-plugin</artifactId>
<groupId>cn.dev33</groupId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sa-token-okhttps</artifactId>
<dependencies>
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-core</artifactId>
</dependency>
<dependency>
<groupId>cn.zhxu</groupId>
<artifactId>okhttps</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,47 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* 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 cn.dev33.satoken.http;
import cn.dev33.satoken.SaManager;
import cn.zhxu.okhttps.OkHttps;
import java.util.Map;
/**
* Http 请求处理器, OkHttps 版实现
*
* @author click33
* @since 1.43.0
*/
public class SaHttpTemplateForOkHttps implements SaHttpTemplate {
@Override
public String get(String url) {
SaManager.log.debug("发起请求GET{}", url);
String res = OkHttps.sync(url).get().getBody().toString();
SaManager.log.debug("返回结果:{}", res);
return res;
}
@Override
public String postByFormData(String url, Map<String, Object> params) {
SaManager.log.debug("发起请求POST{}\t参数{}", url, params);
String res = OkHttps.sync(url).addBodyPara(params).post().getBody().toString();
SaManager.log.debug("返回结果:{}", res);
return res;
}
}

View File

@@ -0,0 +1,35 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* 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 cn.dev33.satoken.plugin;
import cn.dev33.satoken.SaManager;
import cn.dev33.satoken.http.SaHttpTemplateForOkHttps;
/**
* SaToken 插件安装Http 请求处理器 - OkHttps 版
*
* @author click33
* @since 1.43.0
*/
public class SaTokenPluginForOkHttps implements SaTokenPlugin {
@Override
public void install() {
// 设置 OkHttps 作为 Http 请求处理器
SaManager.setSaHttpTemplate(new SaHttpTemplateForOkHttps());
}
}

View File

@@ -0,0 +1 @@
cn.dev33.satoken.plugin.SaTokenPluginForOkHttps