diff --git a/README.md b/README.md
index b33b37d..a59f586 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
# open-JSD-9368
-JSD-9368 JWT单点登录
\ No newline at end of file
+JSD-9368 JWT单点登录\
+免责说明:该源码为第三方爱好者提供,不保证源码和方案的可靠性,也不提供任何形式的源码教学指导和协助!\
+仅作为开发者学习参考使用!禁止用于任何商业用途!\
+为保护开发者隐私,开发者信息已隐去!若原开发者希望公开自己的信息,可联系hugh处理。
\ No newline at end of file
diff --git a/lib/jackson-all-1.9.1.jar b/lib/jackson-all-1.9.1.jar
new file mode 100644
index 0000000..f92126f
Binary files /dev/null and b/lib/jackson-all-1.9.1.jar differ
diff --git a/lib/jackson-annotations-2.9.0.jar b/lib/jackson-annotations-2.9.0.jar
new file mode 100644
index 0000000..c602d75
Binary files /dev/null and b/lib/jackson-annotations-2.9.0.jar differ
diff --git a/lib/jackson-core-2.9.8.jar b/lib/jackson-core-2.9.8.jar
new file mode 100644
index 0000000..362f1f3
Binary files /dev/null and b/lib/jackson-core-2.9.8.jar differ
diff --git a/lib/jackson-databind-2.9.8.jar b/lib/jackson-databind-2.9.8.jar
new file mode 100644
index 0000000..2d8687b
Binary files /dev/null and b/lib/jackson-databind-2.9.8.jar differ
diff --git a/lib/jjwt-api-0.11.1.jar b/lib/jjwt-api-0.11.1.jar
new file mode 100644
index 0000000..9b70c48
Binary files /dev/null and b/lib/jjwt-api-0.11.1.jar differ
diff --git a/lib/jjwt-impl-0.11.1.jar b/lib/jjwt-impl-0.11.1.jar
new file mode 100644
index 0000000..ea35b70
Binary files /dev/null and b/lib/jjwt-impl-0.11.1.jar differ
diff --git a/lib/jjwt-jackson-0.11.1.jar b/lib/jjwt-jackson-0.11.1.jar
new file mode 100644
index 0000000..0c81497
Binary files /dev/null and b/lib/jjwt-jackson-0.11.1.jar differ
diff --git a/plugin.xml b/plugin.xml
new file mode 100644
index 0000000..87c8c45
--- /dev/null
+++ b/plugin.xml
@@ -0,0 +1,20 @@
+
+ com.eco.plugin.xxxx.ncgdjtsso
+
+ yes
+ 1.0.1
+ 10.0
+ 2018-07-31
+ fr.open
+
+
+ com.eco.plugin.xxxx.ncgdjtsso
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/config/InitializeMonitor.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/config/InitializeMonitor.java
new file mode 100644
index 0000000..69db497
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/config/InitializeMonitor.java
@@ -0,0 +1,21 @@
+package com.eco.plugin.xxxx.ncgdjtsso.config;
+
+import com.fr.plugin.context.PluginContext;
+import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor;
+
+/**
+ * @author fr.open
+ * @version 10.0
+ * Created by fr.open on 2021-12-03
+ */
+public class InitializeMonitor extends AbstractPluginLifecycleMonitor {
+ @Override
+ public void afterRun(PluginContext pluginContext) {
+ PluginSimpleConfig.getInstance();
+ }
+
+ @Override
+ public void beforeStop(PluginContext pluginContext) {
+
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/config/PluginSimpleConfig.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/config/PluginSimpleConfig.java
new file mode 100644
index 0000000..ea0944c
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/config/PluginSimpleConfig.java
@@ -0,0 +1,68 @@
+package com.eco.plugin.xxxx.ncgdjtsso.config;
+
+import com.fr.config.*;
+import com.fr.config.holder.Conf;
+import com.fr.config.holder.factory.Holders;
+import com.fr.intelli.record.Focus;
+import com.fr.intelli.record.Original;
+import com.fr.record.analyzer.EnableMetrics;
+
+@Visualization(category = "单点登录配置")
+@EnableMetrics
+public class PluginSimpleConfig extends DefaultConfiguration {
+
+ private static volatile PluginSimpleConfig config = null;
+
+ @Focus(id="com.eco.plugin.xxxx.ncgdjtsso.config", text = "单点登录配置", source = Original.PLUGIN)
+ public static PluginSimpleConfig getInstance() {
+ if (config == null) {
+ config = ConfigContext.getConfigInstance(PluginSimpleConfig.class);
+ }
+ return config;
+ }
+
+ @Identifier(value = "clientId", name = "应用id", description = "应用id", status = Status.SHOW)
+ private Conf clientId = Holders.simple("");
+
+ @Identifier(value = "logouturl", name = "统一平台注销地址", description = "统一平台注销地址", status = Status.SHOW)
+ private Conf logouturl = Holders.simple("");
+
+ @Identifier(value = "pubkey", name = "publicKey", description = "publicKey", status = Status.SHOW)
+ private Conf pubkey = Holders.simple("");
+
+ public String getClientId() {
+ return clientId.get();
+ }
+
+ public void setClientId(String url) {
+ this.clientId.set(url);
+ }
+
+ public String getLogouturl() {
+ return logouturl.get();
+ }
+
+ public void setLogouturl(String url) {
+ this.logouturl.set(url);
+ }
+
+ public String getPubkey() {
+ return pubkey.get();
+ }
+
+ public void setPubkey(String url) {
+ this.pubkey.set(url);
+ }
+
+ @Override
+ public Object clone() throws CloneNotSupportedException {
+ PluginSimpleConfig cloned = (PluginSimpleConfig) super.clone();
+// cloned.text = (Conf) text.clone();
+// cloned.count = (Conf) count.clone();
+// cloned.price = (Conf) price.clone();
+// cloned.time = (Conf) time.clone();
+// cloned.student = (Conf) student.clone();
+ return cloned;
+ }
+
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/controller/ControllerRegisterProvider.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/controller/ControllerRegisterProvider.java
new file mode 100644
index 0000000..e0e461f
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/controller/ControllerRegisterProvider.java
@@ -0,0 +1,14 @@
+package com.eco.plugin.xxxx.ncgdjtsso.controller;
+
+import com.fr.decision.fun.impl.AbstractControllerRegisterProvider;
+import com.fr.plugin.transform.FunctionRecorder;
+
+@FunctionRecorder
+public class ControllerRegisterProvider extends AbstractControllerRegisterProvider {
+ @Override
+ public Class>[] getControllers() {
+ return new Class[]{
+ ControllerSelf.class
+ };
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/controller/ControllerSelf.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/controller/ControllerSelf.java
new file mode 100644
index 0000000..39a1d7b
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/controller/ControllerSelf.java
@@ -0,0 +1,88 @@
+package com.eco.plugin.xxxx.ncgdjtsso.controller;
+
+import com.eco.plugin.xxxx.ncgdjtsso.config.PluginSimpleConfig;
+import com.eco.plugin.xxxx.ncgdjtsso.utils.FRUtils;
+import com.eco.plugin.xxxx.ncgdjtsso.utils.JwtUtil;
+import com.eco.plugin.xxxx.ncgdjtsso.utils.ResponseUtils;
+import com.eco.plugin.xxxx.ncgdjtsso.utils.Utils;
+import com.fr.decision.webservice.annotation.LoginStatusChecker;
+import com.fr.plugin.context.PluginContexts;
+import com.fr.plugin.transform.FunctionRecorder;
+import com.fr.stable.fun.Authorize;
+import com.fr.third.springframework.stereotype.Controller;
+import com.fr.third.springframework.web.bind.annotation.GetMapping;
+import com.fr.third.springframework.web.bind.annotation.ResponseBody;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
+import java.io.IOException;
+import java.util.Map;
+
+@Controller
+@LoginStatusChecker(required = false)
+@FunctionRecorder
+@Authorize(callSignKey = "com.eco.plugin.xxxx.ncgdjtsso")
+public class ControllerSelf {
+
+ @GetMapping(value = "/ssologin")
+ @ResponseBody
+ public void ssologin(HttpServletRequest req,HttpServletResponse res){
+ if (PluginContexts.currentContext().isAvailable()) {
+ HttpSession session = req.getSession(true);
+
+ String token = req.getParameter("token");
+ if (Utils.isNotNullStr(token)) {
+ session.setAttribute("ssotoken", token);
+ }
+
+ //获取用户信息
+ Map result = validJwtFromRequest(req,res,token);
+
+ if(result == null){
+ ResponseUtils.responseText(res,"token校验失败");
+ return ;
+ }
+
+ String status = String.valueOf(result.get("status"));
+
+ //无权限
+ if ("9".equals(status))
+ {
+ ResponseUtils.responseText(res,"对不起,您无权限访问帆软系统!请联系管理员");
+ return;
+ }
+
+ //token为空或者验证失败
+ if (Utils.isNullStr(token) && !"0".equals(status)) {
+ //注销系统
+ session.invalidate();
+ try {
+ res.sendRedirect(PluginSimpleConfig.getInstance().getLogouturl());
+ } catch (IOException e) {
+ FRUtils.FRLogError("跳转异常");
+ }
+ return;
+ } else {
+ // token 验证成功后查询用户信息并设定登录成功状态。如果用户不存在给出页面提示。
+ // 以下是平台的认证登录,非基础平台的请按照自己系统认证逻辑处理。
+ String userName = (String) result.get(JwtUtil.USERNAME_KEY);
+ FRUtils.FRLogInfo("userName:"+userName);
+ String redirect = req.getParameter("redirect");
+ FRUtils.login(req,res,userName,redirect);
+ return;
+ }
+ }
+
+ ResponseUtils.responseText(res,"插件授权过期,请联系管理员!");
+ }
+
+ private Map validJwtFromRequest(HttpServletRequest req, HttpServletResponse res, String sessionToken) {
+ Map result = null;
+ try {
+ result = JwtUtil.getJwtTokenValidator().validateToken(sessionToken);
+ } catch (Exception e) {
+ FRUtils.FRLogError("验证token异常:"+e.getMessage());
+ }
+ return result;
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/FRUtils.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/FRUtils.java
new file mode 100644
index 0000000..32a5ae7
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/FRUtils.java
@@ -0,0 +1,255 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import com.fr.base.ServerConfig;
+import com.fr.base.TableData;
+import com.fr.decision.authority.AuthorityContext;
+import com.fr.decision.authority.data.User;
+import com.fr.decision.webservice.login.LogInOutResultInfo;
+import com.fr.decision.webservice.utils.DecisionServiceConstants;
+import com.fr.decision.webservice.v10.login.LoginService;
+import com.fr.decision.webservice.v10.login.event.LogInOutEvent;
+import com.fr.decision.webservice.v10.user.UserService;
+import com.fr.event.EventDispatcher;
+import com.fr.file.TableDataConfig;
+import com.fr.log.FineLoggerFactory;
+import com.fr.stable.StringUtils;
+import com.fr.stable.query.QueryFactory;
+import com.fr.stable.query.restriction.RestrictionFactory;
+import com.fr.web.utils.WebUtils;
+
+import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
+import java.io.IOException;
+import java.util.List;
+
+public class FRUtils {
+ /**
+ * 判断用户是否存在
+ * @param userName
+ * @return
+ */
+ public static boolean isUserExist(String userName){
+ if (StringUtils.isEmpty(userName)) {
+ return false;
+ } else {
+ try {
+ List var1 = AuthorityContext.getInstance().getUserController().find(QueryFactory.create().addRestriction(RestrictionFactory.eq("userName", userName)));
+ return var1 != null && !var1.isEmpty();
+ } catch (Exception var2) {
+ FineLoggerFactory.getLogger().error(var2.getMessage());
+ return false;
+ }
+ }
+ }
+
+ /**
+ * 判断是否登录FR
+ * @param req
+ * @return
+ */
+ public static boolean isLogin(HttpServletRequest req){
+ return LoginService.getInstance().isLogged(req);
+ }
+
+ /**
+ * 帆软登录
+ * @param httpServletRequest
+ * @param httpServletResponse
+ * @param userName
+ * @param url
+ */
+ public static void login(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse,String userName,String url){
+
+ FineLoggerFactory.getLogger().info("FRLOG:用户名:"+userName);
+ FineLoggerFactory.getLogger().info("FRLOG:跳转链接:"+url);
+
+
+ //判断用户名是否为空
+ if(!Utils.isNullStr(userName)){
+ if(isUserExist(userName)){
+ String FRToken = "";
+
+ try {
+ //HttpSession session = httpServletRequest.getSession(true);
+
+ FRToken = LoginService.getInstance().login(httpServletRequest, httpServletResponse, userName);
+
+ //httpServletRequest.setAttribute(DecisionServiceConstants.FINE_AUTH_TOKEN_NAME,FRToken);
+
+ //session.setAttribute(DecisionServiceConstants.FINE_AUTH_TOKEN_NAME, FRToken);
+ EventDispatcher.fire(LogInOutEvent.LOGIN,new LogInOutResultInfo(httpServletRequest,httpServletResponse,userName,true));
+ FineLoggerFactory.getLogger().info("FRLOG:登陆成功!");
+
+ if(!Utils.isNullStr(url)){
+ httpServletResponse.sendRedirect(url);
+ }
+ } catch (Exception e) {
+ ResponseUtils.failedResponse(httpServletResponse,"登录异常,请联系管理员!");
+ FineLoggerFactory.getLogger().info("FRLOG:登录异常,请联系管理员!");
+ FineLoggerFactory.getLogger().info("FRLOGException:"+e.getMessage());
+ }
+ }else{
+ ResponseUtils.failedResponse(httpServletResponse,"用户在报表系统中不存在!");
+ FineLoggerFactory.getLogger().info("FRLOG:用户在报表系统中不存在!");
+ }
+ }else{
+ ResponseUtils.failedResponse(httpServletResponse,"用户名不能为空!");
+ FineLoggerFactory.getLogger().info("FRLOG:用户名不能为空!");
+ }
+ }
+
+ /**
+ * 帆软登录
+ * @param httpServletRequest
+ * @param httpServletResponse
+ * @param token
+ * @param url
+ */
+ public static void loginByToken(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse,String token,String url){
+
+ FineLoggerFactory.getLogger().info("FRLOG:token:"+token);
+ FineLoggerFactory.getLogger().info("FRLOG:跳转链接:"+url);
+
+
+ //判断用户名是否为空
+ if(!Utils.isNullStr(token)){
+ writeToken2Cookie(httpServletResponse,token,-1);
+
+ HttpSession session = httpServletRequest.getSession(true);
+
+ httpServletRequest.setAttribute(DecisionServiceConstants.FINE_AUTH_TOKEN_NAME,token);
+
+ session.setAttribute(DecisionServiceConstants.FINE_AUTH_TOKEN_NAME, token);
+
+ if(!Utils.isNullStr(url)){
+ try {
+ httpServletResponse.sendRedirect(url);
+ } catch (IOException e) {
+ ResponseUtils.failedResponse(httpServletResponse,"跳转异常!");
+ FineLoggerFactory.getLogger().info("FRLOG:跳转异常!");
+ }
+ }
+ }else{
+ ResponseUtils.failedResponse(httpServletResponse,"token不能为空!");
+ FineLoggerFactory.getLogger().info("FRLOG:token不能为空!");
+ }
+ }
+
+ /**
+ * 获取token
+ * @param httpServletRequest
+ * @param httpServletResponse
+ * @param username
+ * @return
+ */
+ public static String getToken(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse,String username){
+ String token = "";
+ try {
+ token = LoginService.getInstance().login(httpServletRequest, httpServletResponse, username);
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info("FRLOG:获取token失败"+e.getMessage());
+ }
+
+ return token;
+ }
+
+ private static void writeToken2Cookie(HttpServletResponse var1, String var2, int var3) {
+ try {
+ if (StringUtils.isNotEmpty(var2)) {
+ Cookie var4 = new Cookie("fine_auth_token", var2);
+ long var5 = var3 == -2 ? 1209600000L : (long)var3;
+ var4.setMaxAge((int)var5);
+ var4.setPath(ServerConfig.getInstance().getCookiePath());
+ var1.addCookie(var4);
+ Cookie var7 = new Cookie("fine_remember_login", String.valueOf(var3 == -2 ? -2 : -1));
+ var7.setMaxAge((int)var5);
+ var7.setPath(ServerConfig.getInstance().getCookiePath());
+ var1.addCookie(var7);
+ } else {
+ FineLoggerFactory.getLogger().error("empty token cannot save.");
+ }
+ } catch (Exception var8) {
+ FineLoggerFactory.getLogger().error(var8.getMessage(), var8);
+ }
+
+ }
+
+ /**
+ *
+ * @param httpServletRequest
+ * @param httpServletResponse
+ */
+ public static void logout(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse)
+ {
+ if(!isLogin(httpServletRequest)){
+ return ;
+ }
+
+ try {
+ LoginService.getInstance().logout(httpServletRequest,httpServletResponse);
+ } catch (Exception e) {
+ ResponseUtils.failedResponse(httpServletResponse,"登出异常,请联系管理员!");
+ FineLoggerFactory.getLogger().info("FRLOG:登出异常,请联系管理员!");
+ FineLoggerFactory.getLogger().info("FRLOGException:"+e.getMessage());
+ }
+ }
+
+ /**
+ * 打印FR日志
+ * @param message
+ */
+ public static void FRLogInfo(String message){
+ FineLoggerFactory.getLogger().info("FRLOG:"+message);
+ }
+
+ /**
+ * 打印FR日志-error
+ * @param message
+ */
+ public static void FRLogError(String message){
+ FineLoggerFactory.getLogger().error("FRLOG:"+message);
+ }
+
+
+ /**
+ * 根据用户名获取用户信息
+ * @param userName
+ * @return
+ */
+ public static User getFRUserByUserName(String userName){
+ try {
+ return UserService.getInstance().getUserByUserName(userName);
+ } catch (Exception e) {
+ FRLogInfo("获取用户信息异常:"+e.getMessage());
+ }
+
+ return null;
+ }
+
+ /**
+ * 解密FR密码
+ * @param password
+ * @return
+ */
+// public static String decryptFRPsd(String password){
+// FRLogInfo("解密密码:"+password);
+// return TransmissionTool.decrypt(password);
+// }
+
+ /**
+ * 获取带参数的访问链接
+ * @return
+ */
+ public static String getAllUrl(HttpServletRequest httpServletRequest){
+ return WebUtils.getOriginalURL(httpServletRequest);
+ }
+
+ public static TableData getTableData(String serverDataSetName){
+ TableData userInfo = TableDataConfig.getInstance().getTableData("serverDataSetName");
+
+// DataModel userInfoDM = userInfo.createDataModel(Calculator.createCalculator());
+ return userInfo;
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/HttpUtils.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/HttpUtils.java
new file mode 100644
index 0000000..0be61ee
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/HttpUtils.java
@@ -0,0 +1,262 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import com.fr.log.FineLoggerFactory;
+import com.fr.third.org.apache.http.HttpEntity;
+import com.fr.third.org.apache.http.HttpResponse;
+import com.fr.third.org.apache.http.HttpStatus;
+import com.fr.third.org.apache.http.NameValuePair;
+import com.fr.third.org.apache.http.client.CookieStore;
+import com.fr.third.org.apache.http.client.entity.UrlEncodedFormEntity;
+import com.fr.third.org.apache.http.client.methods.HttpGet;
+import com.fr.third.org.apache.http.client.methods.HttpPost;
+import com.fr.third.org.apache.http.conn.ssl.NoopHostnameVerifier;
+import com.fr.third.org.apache.http.entity.StringEntity;
+import com.fr.third.org.apache.http.impl.client.BasicCookieStore;
+import com.fr.third.org.apache.http.impl.client.CloseableHttpClient;
+import com.fr.third.org.apache.http.impl.client.HttpClients;
+import com.fr.third.org.apache.http.impl.cookie.BasicClientCookie;
+import com.fr.third.org.apache.http.message.BasicNameValuePair;
+import com.fr.third.org.apache.http.ssl.SSLContexts;
+import com.fr.third.org.apache.http.ssl.TrustStrategy;
+import com.fr.third.org.apache.http.util.EntityUtils;
+
+import javax.net.ssl.SSLContext;
+import javax.servlet.http.Cookie;
+import java.io.UnsupportedEncodingException;
+import java.security.cert.CertificateException;
+import java.security.cert.X509Certificate;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+public class HttpUtils {
+
+ /**
+ * httpGet请求
+ * @param url
+ * @return
+ */
+ public static String httpGet(String url,Cookie[] cookies,Map header){
+ FineLoggerFactory.getLogger().info("FRLOG:HttpUtils.get--url:"+url);
+
+ //创建httpClient
+ CloseableHttpClient httpclient = createHttpClient(cookies);
+
+ HttpGet getMethod = new HttpGet(url);
+
+ if(header != null && header.size() > 0){
+ Set keySet = header.keySet();
+
+ for(String key : keySet){
+ getMethod.setHeader(key,header.get(key));
+ }
+ }
+
+ try {
+ HttpResponse response = httpclient.execute(getMethod);
+ int status =response.getStatusLine().getStatusCode();
+ HttpEntity entity = response.getEntity();
+ String returnResult = EntityUtils.toString(entity, "utf-8");
+
+ FineLoggerFactory.getLogger().info("FRLOG:HttpUtils.get--status:"+status);
+ FineLoggerFactory.getLogger().info("FRLOG:HttpUtils.get--returnResult:"+returnResult);
+
+ httpclient.close();
+
+ if (status == HttpStatus.SC_OK) {
+ return returnResult;
+ }
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info("FRLOG:HttpUtils.get--exception:"+e.getMessage());
+ }
+
+ try {
+ httpclient.close();
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info("FRLOG:http关闭异常:"+e.getMessage());
+ }
+
+ return "";
+ }
+
+ /**
+ * HttpPost请求
+ * @param postMethod
+ * @return
+ */
+ private static String HttpPost(HttpPost postMethod){
+ CloseableHttpClient httpclient = createHttpClient(null);
+
+ try {
+ HttpResponse response = httpclient.execute(postMethod);
+ int status = response.getStatusLine().getStatusCode();
+ HttpEntity entity = response.getEntity();
+ String returnResult = EntityUtils.toString(entity, "utf-8");
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPost:status:"+status);
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPost:returnResult:"+returnResult);
+ httpclient.close();
+
+ if (status == HttpStatus.SC_OK) {
+ return returnResult;
+ }
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPost:exception:"+e.getMessage());
+ }
+
+ try {
+ httpclient.close();
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info("FRLOG:http关闭异常:"+e.getMessage());
+ }
+
+ return "";
+ }
+
+ public static String HttpPostXML(String url, String xmlParam){
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPostXML:url:"+url);
+
+ HttpPost postMethod = new HttpPost(url);
+
+ postMethod.setHeader("Content-type", "text/html");
+ HttpEntity entity2 = null;
+ try {
+ entity2 = new StringEntity(xmlParam);
+ } catch (UnsupportedEncodingException e) {
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPostXML:参数异常:"+e.getMessage());
+ return "";
+ }
+
+ postMethod.setEntity(entity2);
+
+ return HttpPost(postMethod);
+ }
+
+ public static String HttpPostText(String url, String xmlParam){
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPostText:url:"+url);
+
+ HttpPost postMethod = new HttpPost(url);
+
+ postMethod.setHeader("Content-type", "text/plain");
+ HttpEntity entity2 = null;
+ try {
+ entity2 = new StringEntity(xmlParam);
+ } catch (UnsupportedEncodingException e) {
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPostText:参数异常:"+e.getMessage());
+ return "";
+ }
+
+ postMethod.setEntity(entity2);
+
+ return HttpPost(postMethod);
+ }
+
+ public static String HttpPostJson(String url, String param,Map header){
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPostJSON:url:"+url);
+
+ HttpPost postMethod = new HttpPost(url);
+
+ postMethod.setHeader("Content-Type","application/json");
+
+ if(header != null && header.size() > 0){
+ Set keySet = header.keySet();
+
+ for(String key : keySet){
+ postMethod.setHeader(key,header.get(key));
+ }
+ }
+
+ if(!Utils.isNullStr(param)){
+ HttpEntity entity2 = null;
+ try {
+ entity2 = new StringEntity(param);
+ } catch (UnsupportedEncodingException e) {
+ FineLoggerFactory.getLogger().info("FRLOG:HttpPostJSON:参数异常:"+e.getMessage());
+ return "";
+ }
+
+ postMethod.setEntity(entity2);
+ }
+
+ return HttpPost(postMethod);
+ }
+
+ public static String HttpPostWWWForm(String url, Map header,Map param){
+ FineLoggerFactory.getLogger().info("FRLOG:HttpWWWForm:url:"+url);
+
+ HttpPost postMethod = new HttpPost(url);
+
+ if(header != null && header.size() > 0){
+ Set keySet = header.keySet();
+
+ for(String key : keySet){
+ postMethod.setHeader(key,header.get(key));
+ }
+ }
+
+ if(param != null && param.size() > 0){
+ List params = new ArrayList(param.size());
+
+ for(Map.Entry map : param.entrySet()){
+ params.add(new BasicNameValuePair(map.getKey(), map.getValue()));
+ }
+
+ try {
+ postMethod.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
+ } catch (UnsupportedEncodingException e) {
+ FineLoggerFactory.getLogger().info("FRLOG:HttpWWWForm:异常:"+e.getMessage());
+ return "";
+ }
+ }
+
+ return HttpPost(postMethod);
+ }
+
+ private static CloseableHttpClient createHttpClient(Cookie[] cookies){
+
+ SSLContext sslContext = null;
+ try {
+ sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() {
+ @Override
+ public boolean isTrusted(X509Certificate[] x509Certificates, String s) throws CertificateException {
+ return true;
+ }
+ }).build();
+ } catch (Exception e) {
+ FRUtils.FRLogInfo("exception:"+e.getMessage());
+ }
+
+ CloseableHttpClient httpclient = null;
+
+ if(cookies != null && cookies.length > 0){
+ CookieStore cookieStore = cookieToCookieStore(cookies);
+
+ httpclient = HttpClients.custom().setSslcontext(sslContext).
+ setSSLHostnameVerifier(new NoopHostnameVerifier()).setDefaultCookieStore(cookieStore).build();
+ }
+ else{
+ httpclient = HttpClients.custom().setSslcontext(sslContext).
+ setSSLHostnameVerifier(new NoopHostnameVerifier()).build();
+ }
+
+ return httpclient;
+ }
+
+ /**
+ * cookies转cookieStore
+ * @param cookies
+ * @return
+ */
+ public static CookieStore cookieToCookieStore(Cookie[] cookies){
+ CookieStore cookieStore = new BasicCookieStore();
+
+ if(cookies != null && cookies.length>0){
+ for(Cookie cookie : cookies){
+ BasicClientCookie cookie1 = new BasicClientCookie(cookie.getName(), cookie.getValue());
+ cookieStore.addCookie(cookie1);
+ }
+ }
+
+ return cookieStore;
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/JwtTokenValidator.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/JwtTokenValidator.java
new file mode 100644
index 0000000..7c1c0cb
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/JwtTokenValidator.java
@@ -0,0 +1,40 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import io.jsonwebtoken.Claims;
+import io.jsonwebtoken.Jwts;
+
+import java.security.PublicKey;
+import java.util.Map;
+
+public class JwtTokenValidator {
+
+ /**
+ * 验证Token
+ * @param jwt
+ * @return
+ */
+ public Map validateToken(String sessionToken) {
+
+ PublicKey publicKey = ValidJwt.getPublic();//这段代码是获取公钥,
+
+ if(publicKey == null){
+ return JwtUtil.returnMsg("-1", "公钥获取失败");
+ }
+ Claims claims=null;
+ try {
+
+ claims = Jwts.parser().setSigningKey(publicKey)
+ .parseClaimsJws(sessionToken).getBody();
+ claims.put("status","0");
+ claims.put("msg","success");
+ } catch (Exception e) {
+ if(e.getLocalizedMessage().endsWith("milliseconds.")) {
+ return JwtUtil.returnMsg("-1", "Token time out");
+ }else {
+ return JwtUtil.returnMsg("-1", "Token 验证失败");
+ }
+ }
+ return claims;
+ }
+
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/JwtUtil.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/JwtUtil.java
new file mode 100644
index 0000000..58ae89c
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/JwtUtil.java
@@ -0,0 +1,35 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class JwtUtil {
+
+ private static JwtTokenValidator jwtTokenValidator;
+
+ public final static String ATTR_JWT_MAP = "jwt_map";
+ public final static String JWT_HEADER = "iplat-jwt";
+ public final static String USERNAME_KEY = "sub";
+ public final static String JWT_SOURCE = "jwt-source";
+ public final static String JWT_SOURCE_HEADER = "header";
+
+ public static JwtTokenValidator getJwtTokenValidator() {
+ if(jwtTokenValidator == null) {
+ setJwtTokenValidator();
+ }
+ return jwtTokenValidator;
+ }
+ private static void setJwtTokenValidator() {
+ jwtTokenValidator=new JwtTokenValidator();
+ }
+
+ /**
+ * 验证返回值处理
+ */
+ public static Map returnMsg(String status, String msg) {
+ Map result=new HashMap<>();
+ result.put("status", status);
+ result.put("msg", msg);
+ return result;
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/ResponseUtils.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/ResponseUtils.java
new file mode 100644
index 0000000..d4f03c4
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/ResponseUtils.java
@@ -0,0 +1,108 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import com.fr.json.JSONObject;
+import com.fr.log.FineLoggerFactory;
+import com.fr.web.utils.WebUtils;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.PrintWriter;
+
+public class ResponseUtils {
+ private static final int SUCCESS = 200;
+ private static final int FAILED = -1;
+
+ public static void successResponse(HttpServletResponse res, String body) {
+ response(res, body, SUCCESS);
+ }
+
+ public static void failedResponse(HttpServletResponse res, String body) {
+ response(res, body, FAILED);
+ }
+
+ private static void response(HttpServletResponse res, String body, int code) {
+ JSONObject object = new JSONObject();
+ PrintWriter pw;
+ try {
+ object.put("code", code);
+ object.put("data", body);
+ pw = WebUtils.createPrintWriter(res);
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info(e.getMessage());
+ return;
+ }
+ res.setContentType("application/json;charset=utf-8");
+ String result = object.toString();
+ pw.println(result);
+ pw.flush();
+ pw.close();
+ }
+
+ public static void response(HttpServletResponse res,JSONObject json){
+ PrintWriter pw;
+ try {
+ pw = WebUtils.createPrintWriter(res);
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info(e.getMessage());
+ return;
+ }
+ res.setContentType("application/json;charset=utf-8");
+ String result = json.toString();
+ pw.println(result);
+ pw.flush();
+ pw.close();
+ }
+
+ public static void responseText(HttpServletResponse res,String text){
+ PrintWriter pw;
+ try {
+ pw = WebUtils.createPrintWriter(res);
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info(e.getMessage());
+ return;
+ }
+ res.setContentType("text/html;charset=utf-8");
+ pw.println(text);
+ pw.flush();
+ pw.close();
+ }
+
+ public static void responseXml(HttpServletResponse res,String xml){
+ PrintWriter pw;
+ try {
+ pw = WebUtils.createPrintWriter(res);
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info(e.getMessage());
+ return;
+ }
+ res.setContentType("text/xml;charset=utf-8");
+ pw.println(xml);
+ pw.flush();
+ pw.close();
+ }
+
+ public static void setCSRFHeader(HttpServletResponse httpServletResponse){
+ httpServletResponse.setHeader("Access-Control-Allow-Origin", "*");
+ httpServletResponse.setHeader("Access-Control-Allow-Methods", "POST,GET,OPTIONS,DELETE,HEAD,PUT,PATCH");
+ httpServletResponse.setHeader("Access-Control-Max-Age", "36000");
+ httpServletResponse.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept,Authorization,authorization");
+ }
+
+ public static void responseJsonp(HttpServletRequest req, HttpServletResponse res, JSONObject json){
+ PrintWriter pw;
+ try {
+ pw = WebUtils.createPrintWriter(res);
+ } catch (Exception e) {
+ FineLoggerFactory.getLogger().info(e.getMessage());
+ return;
+ }
+ res.setContentType("text/javascript;charset=utf-8;charset=utf-8");
+ String result = json.toString();
+
+ String jsonp=req.getParameter("callback");
+
+ pw.println(jsonp+"("+result+")");
+ pw.flush();
+ pw.close();
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/Utils.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/Utils.java
new file mode 100644
index 0000000..4a22141
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/Utils.java
@@ -0,0 +1,244 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import com.fr.base.TemplateUtils;
+import com.fr.data.NetworkHelper;
+import com.fr.decision.webservice.v10.user.UserService;
+import com.fr.io.utils.ResourceIOUtils;
+import com.fr.json.JSONObject;
+import com.fr.stable.CodeUtils;
+import com.fr.stable.StringUtils;
+import com.fr.third.org.apache.commons.codec.digest.DigestUtils;
+import com.fr.web.utils.WebUtils;
+
+import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.BufferedReader;
+import java.io.InputStream;
+import java.net.URLEncoder;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.UUID;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+public class Utils {
+
+ /**
+ * 判断字符串是否为空
+ * @param str
+ * @return true 空字符串 false 非空字符串
+ */
+ public static boolean isNullStr(String str){
+ return !(str != null && !str.isEmpty() && !"null".equals(str));
+ }
+
+ /**
+ * 判断字符串是否非空
+ * @param str
+ * @return
+ */
+ public static boolean isNotNullStr(String str){
+ return !isNullStr(str);
+ }
+
+ /**
+ * MD5加密
+ * @param str
+ * @return
+ */
+ public static String getMd5Str(String str)
+ {
+ return DigestUtils.md5Hex(str);
+ }
+
+ /**
+ * 帆软shaEncode加密
+ */
+
+ public static String shaEncode(String str){
+ return CodeUtils.sha256Encode(str);
+ }
+
+ /**
+ * 获取uuid
+ */
+ public static String uuid(){
+ return UUID.randomUUID().toString();
+ }
+
+ /**
+ * 替换空字符串
+ * @param str
+ * @param replace
+ * @return
+ */
+ public static String replaceNullStr(String str,String replace){
+ if(isNullStr(str)){
+ return replace;
+ }
+
+ return str;
+ }
+
+ /**
+ * 获取请求体
+ * @param req
+ * @return
+ */
+ public static JSONObject getRequestBody(HttpServletRequest req){
+ StringBuffer sb = new StringBuffer();
+ String line = null;
+ try {
+ BufferedReader reader = req.getReader();
+ while ((line = reader.readLine()) != null)
+ sb.append(line);
+ } catch (Exception e) {
+ FRUtils.FRLogInfo("getRequestBody:exception:"+e.getMessage());
+ }
+ //将空格和换行符替换掉避免使用反序列化工具解析对象时失败
+ String jsonString = sb.toString().replaceAll("\\s","").replaceAll("\n","");
+
+ JSONObject json = new JSONObject(jsonString);
+
+ return json;
+ }
+
+ /**
+ * 获取ip
+ * @return
+ */
+ public static String getIp(HttpServletRequest req){
+ String realIp = req.getHeader("X-Real-IP");
+ String fw = req.getHeader("X-Forwarded-For");
+ if (StringUtils.isNotEmpty(fw) && !"unKnown".equalsIgnoreCase(fw)) {
+ int var3 = fw.indexOf(",");
+ return var3 != -1 ? fw.substring(0, var3) : fw;
+ } else {
+ fw = realIp;
+ if (StringUtils.isNotEmpty(realIp) && !"unKnown".equalsIgnoreCase(realIp)) {
+ return realIp;
+ } else {
+ if (StringUtils.isBlank(realIp) || "unknown".equalsIgnoreCase(realIp)) {
+ fw = req.getHeader("Proxy-Client-IP");
+ }
+
+ if (StringUtils.isBlank(fw) || "unknown".equalsIgnoreCase(fw)) {
+ fw = req.getHeader("WL-Proxy-Client-IP");
+ }
+
+ if (StringUtils.isBlank(fw) || "unknown".equalsIgnoreCase(fw)) {
+ fw = req.getHeader("HTTP_CLIENT_IP");
+ }
+
+ if (StringUtils.isBlank(fw) || "unknown".equalsIgnoreCase(fw)) {
+ fw = req.getHeader("HTTP_X_FORWARDED_FOR");
+ }
+
+ if (StringUtils.isBlank(fw) || "unknown".equalsIgnoreCase(fw)) {
+ fw = req.getRemoteAddr();
+ }
+
+ return fw;
+ }
+ }
+ }
+
+ /**
+ * 根据key获取cookie
+ * @param req
+ * @return
+ */
+ public static String getCookieByKey(HttpServletRequest req,String key){
+ Cookie[] cookies = req.getCookies();
+ String cookie = "";
+
+ if(cookies == null || cookies.length <=0){
+ return "";
+ }
+
+ for(int i = 0; i < cookies.length; i++) {
+ Cookie item = cookies[i];
+ if (item.getName().equalsIgnoreCase(key)) {
+ cookie = item.getValue();
+ }
+ }
+
+ FRUtils.FRLogInfo("cookie:"+cookie);
+
+ return cookie;
+ }
+
+ /**
+ * 判断是否是手机端的链接
+ * @param req
+ * @return
+ */
+ public static boolean isMobile(HttpServletRequest req) {
+ String[] mobileArray = {"iPhone", "iPad", "android", "windows phone", "xiaomi"};
+ String userAgent = req.getHeader("user-agent");
+ if (userAgent != null && userAgent.toUpperCase().contains("MOBILE")) {
+ for(String mobile : mobileArray) {
+ if(userAgent.toUpperCase().contains(mobile.toUpperCase())) {
+ return true;
+ }
+ }
+ }
+ return NetworkHelper.getDevice(req).isMobile();
+ }
+
+ /**
+ * 只编码中文
+ * @param url
+ * @return
+ */
+ public static String encodeCH(String url ){
+ Matcher matcher = Pattern.compile("[\\u4e00-\\u9fa5]").matcher(url);
+
+ while(matcher.find()){
+ String chn = matcher.group();
+ url = url.replaceAll(chn, URLEncoder.encode(chn));
+ }
+
+ return url;
+ }
+
+ /**
+ * 获取web-inf文件夹下的文件
+ * filename /resources/ip4enc.properties
+ */
+ public static InputStream getResourcesFile(String filename){
+ return ResourceIOUtils.read(filename);
+ }
+
+ public static void toErrorPage(HttpServletResponse res,String path,Map parameterMap){
+ if(parameterMap == null){
+ parameterMap = new HashMap();
+ }
+
+ try {
+ String macPage = TemplateUtils.renderTemplate(path, parameterMap);
+ WebUtils.printAsString(res, macPage);
+ }catch (Exception e){
+ FRUtils.FRLogError("跳转页面异常");
+ }
+
+ }
+
+ /**
+ * 判断是否是管理员
+ * @param username
+ * @return
+ */
+ public static boolean isAdmin(String username) throws Exception{
+ return UserService.getInstance().isAdmin(UserService.getInstance().getUserByUserName(username).getId());
+ }
+
+ public static String removeCode(String url){
+ if(!url.contains("?code") && !url.contains("&code")){
+ return url;
+ }
+
+ return url.substring(0,url.indexOf(url.contains("?code") ? "?code" : "&code"));
+ }
+}
diff --git a/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/ValidJwt.java b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/ValidJwt.java
new file mode 100644
index 0000000..ac63c6c
--- /dev/null
+++ b/src/main/java/com/eco/plugin/xxxx/ncgdjtsso/utils/ValidJwt.java
@@ -0,0 +1,31 @@
+package com.eco.plugin.xxxx.ncgdjtsso.utils;
+
+import com.eco.plugin.xxxx.ncgdjtsso.config.PluginSimpleConfig;
+import javax.xml.bind.DatatypeConverter;
+import java.security.KeyFactory;
+import java.security.NoSuchAlgorithmException;
+import java.security.PublicKey;
+import java.security.spec.InvalidKeySpecException;
+import java.security.spec.X509EncodedKeySpec;
+
+public class ValidJwt {
+ public static PublicKey getPublic(){
+ PublicKey publicKey=null;
+ String publicKeyStr= PluginSimpleConfig.getInstance().getPubkey();
+ byte [] decoded = DatatypeConverter.parseBase64Binary(publicKeyStr);
+ X509EncodedKeySpec spec = new X509EncodedKeySpec(decoded);
+ KeyFactory kf = null;
+ try {
+ kf = KeyFactory.getInstance("RSA");
+ } catch (NoSuchAlgorithmException e) {
+ FRUtils.FRLogError("validJwt exception:"+e.getMessage());
+ }
+ try {
+ publicKey= kf.generatePublic(spec);
+ } catch (InvalidKeySpecException e) {
+ FRUtils.FRLogError("validJwt exception2:"+e.getMessage());
+ }
+ return publicKey;
+ }
+}
+