LAPTOP-SB56SG4Q\86185
3 years ago
19 changed files with 1444 additions and 1 deletions
Binary file not shown.
@ -1,3 +1,6 @@ |
|||||||
# open-JSD-8752 |
# open-JSD-8752 |
||||||
|
|
||||||
JSD-8752 导出权限按钮分内外网白名单控制显示 |
JSD-8752 导出权限按钮分内外网白名单控制显示\ |
||||||
|
免责说明:该源码为第三方爱好者提供,不保证源码和方案的可靠性,也不提供任何形式的源码教学指导和协助!\ |
||||||
|
仅作为开发者学习参考使用!禁止用于任何商业用途!\ |
||||||
|
为保护开发者隐私,开发者信息已隐去!若原开发者希望公开自己的信息,可联系hugh处理。 |
@ -0,0 +1,25 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><plugin> |
||||||
|
<id>com.eco.plugin.xxxx.authcon</id> |
||||||
|
<name><![CDATA[导出按钮权限控制]]></name> |
||||||
|
<active>yes</active> |
||||||
|
<version>1.0.5</version> |
||||||
|
<env-version>10.0</env-version> |
||||||
|
<jartime>2018-07-31</jartime> |
||||||
|
<vendor>fr.open</vendor> |
||||||
|
<description><![CDATA[导出按钮权限控制]]></description> |
||||||
|
<change-notes><![CDATA[ |
||||||
|
]]></change-notes> |
||||||
|
<main-package>com.eco.plugin.xxxx.authcon</main-package> |
||||||
|
|
||||||
|
<lifecycle-monitor class="com.eco.plugin.xxxx.authcon.config.InitializeMonitor"/> |
||||||
|
|
||||||
|
<extra-decision> |
||||||
|
<GlobalRequestFilterProvider class="com.eco.plugin.xxxx.authcon.filter.ExportFilter"/> |
||||||
|
<WebResourceProvider class="com.eco.plugin.xxxx.authcon.webresource.WebResourceProvider2"/> |
||||||
|
<WebResourceProvider class="com.eco.plugin.xxxx.authcon.webresource.WebResourceProvider"/> |
||||||
|
<HttpHandlerProvider class="com.eco.plugin.xxxx.authcon.handler.ExtendAttrHandlerProvider"/> |
||||||
|
<URLAliasProvider class="com.eco.plugin.xxxx.authcon.handler.URLAliasProvide"/> |
||||||
|
</extra-decision> |
||||||
|
|
||||||
|
<function-recorder class="com.eco.plugin.xxxx.authcon.config.PluginSimpleConfigWink"/> |
||||||
|
</plugin> |
@ -0,0 +1,21 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.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 2018-12-04 |
||||||
|
*/ |
||||||
|
public class InitializeMonitor extends AbstractPluginLifecycleMonitor { |
||||||
|
@Override |
||||||
|
public void afterRun(PluginContext pluginContext) { |
||||||
|
PluginSimpleConfigWink.getInstance(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void beforeStop(PluginContext pluginContext) { |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,48 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.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 = "IP配置") |
||||||
|
@EnableMetrics |
||||||
|
public class PluginSimpleConfigWink extends DefaultConfiguration { |
||||||
|
|
||||||
|
private static volatile PluginSimpleConfigWink config = null; |
||||||
|
|
||||||
|
@Focus(id="com.eco.plugin.xxxx.authcon.config", text = "IP配置", source = Original.PLUGIN) |
||||||
|
public static PluginSimpleConfigWink getInstance() { |
||||||
|
if (config == null) { |
||||||
|
config = ConfigContext.getConfigInstance(PluginSimpleConfigWink.class); |
||||||
|
} |
||||||
|
return config; |
||||||
|
} |
||||||
|
|
||||||
|
@Identifier(value = "ip", name = "IP配置", description = "IP配置", status = Status.SHOW) |
||||||
|
private Conf<String> ip = Holders.simple(""); |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public String getIp() { |
||||||
|
return ip.get(); |
||||||
|
} |
||||||
|
|
||||||
|
public void setIp(String url) { |
||||||
|
this.ip.set(url); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Object clone() throws CloneNotSupportedException { |
||||||
|
PluginSimpleConfigWink cloned = (PluginSimpleConfigWink) super.clone(); |
||||||
|
// cloned.text = (Conf<String>) text.clone();
|
||||||
|
// cloned.count = (Conf<Integer>) count.clone();
|
||||||
|
// cloned.price = (Conf<Double>) price.clone();
|
||||||
|
// cloned.time = (Conf<Long>) time.clone();
|
||||||
|
// cloned.student = (Conf<Boolean>) student.clone();
|
||||||
|
return cloned; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,48 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.filter; |
||||||
|
|
||||||
|
import com.eco.plugin.wink.authcon.utils.FRUtils; |
||||||
|
import com.eco.plugin.wink.authcon.utils.IPWhiteUtils; |
||||||
|
import com.eco.plugin.wink.authcon.utils.ResponseUtils; |
||||||
|
import com.fr.decision.fun.impl.AbstractGlobalRequestFilterProvider; |
||||||
|
import com.fr.record.analyzer.EnableMetrics; |
||||||
|
import com.fr.stable.fun.Authorize; |
||||||
|
|
||||||
|
import javax.servlet.FilterChain; |
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
@EnableMetrics |
||||||
|
@Authorize(callSignKey = "com.fr.plugin.xxxx.ccsso") |
||||||
|
public class ExportFilter extends AbstractGlobalRequestFilterProvider { |
||||||
|
@Override |
||||||
|
public String filterName() { |
||||||
|
return "exportFilter"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String[] urlPatterns() { |
||||||
|
return new String[]{"/*"}; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void doFilter(HttpServletRequest req, HttpServletResponse res, FilterChain chain ){ |
||||||
|
String op = req.getParameter("op"); |
||||||
|
|
||||||
|
if("export".equals(op) && !IPWhiteUtils.inWhite(req)){ |
||||||
|
ResponseUtils.failedResponse(res,"非白名单无权使用白名单功能"); |
||||||
|
return ; |
||||||
|
} |
||||||
|
|
||||||
|
release(req,res,chain); |
||||||
|
} |
||||||
|
|
||||||
|
//放行拦截器
|
||||||
|
private void release(HttpServletRequest req, HttpServletResponse res, FilterChain chain) { |
||||||
|
try{ |
||||||
|
chain.doFilter(req,res); |
||||||
|
}catch (Exception e){ |
||||||
|
FRUtils.FRLogInfo("拦截失败"); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
@ -0,0 +1,13 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.handler; |
||||||
|
|
||||||
|
import com.fr.decision.fun.HttpHandler; |
||||||
|
import com.fr.decision.fun.impl.AbstractHttpHandlerProvider; |
||||||
|
|
||||||
|
public class ExtendAttrHandlerProvider extends AbstractHttpHandlerProvider { |
||||||
|
@Override |
||||||
|
public HttpHandler[] registerHandlers() { |
||||||
|
return new HttpHandler[]{ |
||||||
|
new IsIPWhite() |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,44 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.handler; |
||||||
|
|
||||||
|
import com.eco.plugin.wink.authcon.utils.IPWhiteUtils; |
||||||
|
import com.eco.plugin.wink.authcon.utils.ResponseUtils; |
||||||
|
import com.fr.decision.fun.impl.BaseHttpHandler; |
||||||
|
import com.fr.plugin.transform.FunctionRecorder; |
||||||
|
import com.fr.third.springframework.web.bind.annotation.RequestMethod; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
@FunctionRecorder |
||||||
|
public class IsIPWhite extends BaseHttpHandler { |
||||||
|
|
||||||
|
|
||||||
|
public IsIPWhite() { |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public RequestMethod getMethod() { |
||||||
|
return RequestMethod.GET; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getPath() { |
||||||
|
return "/isIPWhite"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean isPublic() { |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void handle(HttpServletRequest req, HttpServletResponse res) throws Exception { |
||||||
|
//获取请求参数
|
||||||
|
ResponseUtils.successResponse(res, String.valueOf(IPWhiteUtils.inWhite(req))); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
@ -0,0 +1,14 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.handler; |
||||||
|
|
||||||
|
import com.fr.decision.fun.impl.AbstractURLAliasProvider; |
||||||
|
import com.fr.decision.webservice.url.alias.URLAlias; |
||||||
|
import com.fr.decision.webservice.url.alias.URLAliasFactory; |
||||||
|
|
||||||
|
public class URLAliasProvide extends AbstractURLAliasProvider { |
||||||
|
@Override |
||||||
|
public URLAlias[] registerAlias() { |
||||||
|
return new URLAlias[]{ |
||||||
|
URLAliasFactory.createPluginAlias("/isIPWhite","/isIPWhite",true), |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,255 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.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; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,341 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.utils; |
||||||
|
|
||||||
|
import com.fr.data.NetworkHelper; |
||||||
|
import com.fr.decision.mobile.terminal.TerminalHandler; |
||||||
|
import com.fr.decision.webservice.v10.login.LoginService; |
||||||
|
import com.fr.stable.web.Device; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.io.IOException; |
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.HashSet; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Set; |
||||||
|
import java.util.regex.Matcher; |
||||||
|
import java.util.regex.Pattern; |
||||||
|
|
||||||
|
public class IPUtils { |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 私有IP: |
||||||
|
* A类 10.0.0.0-10.255.255.255 |
||||||
|
* B类 172.16.0.0-172.31.255.255 |
||||||
|
* C类 192.168.0.0-192.168.255.255 |
||||||
|
* |
||||||
|
* 127这个网段是环回地址 |
||||||
|
* localhost |
||||||
|
*/ |
||||||
|
static List<Pattern> ipFilterRegexList = new ArrayList<>(); |
||||||
|
|
||||||
|
static { |
||||||
|
Set<String> ipFilter = new HashSet<String>(); |
||||||
|
ipFilter.add("^10\\.(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])" |
||||||
|
+ "\\.(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])" + "\\.(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])$"); |
||||||
|
// B类地址范围: 172.16.0.0---172.31.255.255
|
||||||
|
ipFilter.add("^172\\.(1[6789]|2[0-9]|3[01])\\" + ".(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])\\" |
||||||
|
+ ".(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])$"); |
||||||
|
// C类地址范围: 192.168.0.0---192.168.255.255
|
||||||
|
ipFilter.add("^192\\.168\\.(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])\\" |
||||||
|
+ ".(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[0-9])$"); |
||||||
|
ipFilter.add("127.0.0.1"); |
||||||
|
ipFilter.add("0.0.0.0"); |
||||||
|
ipFilter.add("localhost"); |
||||||
|
for (String tmp : ipFilter) { |
||||||
|
ipFilterRegexList.add(Pattern.compile(tmp)); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
// IP的正则,这个正则不能验证第一组数字为0的情况
|
||||||
|
private static Pattern pattern = Pattern |
||||||
|
.compile("([1-9]\\d?|1\\d{2}|2[01]\\d|22[0-3])\\." |
||||||
|
+ "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\." |
||||||
|
+ "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\." |
||||||
|
+ "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})"); |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* getAvaliIpList:(根据IP白名单设置获取可用的IP列表). |
||||||
|
* |
||||||
|
* @date 2020-11-11 下午02:50:20 |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
|
||||||
|
private static Set<String> getAvaliIpList(String allowIp) { |
||||||
|
|
||||||
|
Set<String> ipList = new HashSet<String>(); |
||||||
|
for (String allow : allowIp.replaceAll("\\s", "").split(",")) { |
||||||
|
if (allow.indexOf("*") > -1) { |
||||||
|
String[] ips = allow.split("\\."); |
||||||
|
String[] from = new String[] { "0", "0", "0", "0" }; |
||||||
|
String[] end = new String[] { "255", "255", "255", "255" }; |
||||||
|
List<String> tem = new ArrayList<String>(); |
||||||
|
for (int i = 0; i < ips.length; i++) |
||||||
|
if (ips[i].indexOf("*") > -1) { |
||||||
|
//todo 直接用等于,不能正确获取类似192.168.**.*这种格式的ip段
|
||||||
|
tem = complete(ips[i]); |
||||||
|
from[i] = null; |
||||||
|
end[i] = null; |
||||||
|
} else { |
||||||
|
from[i] = ips[i]; |
||||||
|
end[i] = ips[i]; |
||||||
|
} |
||||||
|
|
||||||
|
StringBuffer fromIP = new StringBuffer(); |
||||||
|
StringBuffer endIP = new StringBuffer(); |
||||||
|
for (int i = 0; i < 4; i++) |
||||||
|
if (from[i] != null) { |
||||||
|
fromIP.append(from[i]).append("."); |
||||||
|
endIP.append(end[i]).append("."); |
||||||
|
} else { |
||||||
|
fromIP.append("[*]."); |
||||||
|
endIP.append("[*]."); |
||||||
|
} |
||||||
|
fromIP.deleteCharAt(fromIP.length() - 1); |
||||||
|
endIP.deleteCharAt(endIP.length() - 1); |
||||||
|
|
||||||
|
for (String s : tem) { |
||||||
|
String ip = fromIP.toString().replace("[*]", |
||||||
|
s.split(";")[0]) |
||||||
|
+ "-" |
||||||
|
+ endIP.toString().replace("[*]", s.split(";")[1]); |
||||||
|
if (validate(ip)) { |
||||||
|
ipList.add(ip); |
||||||
|
} |
||||||
|
} |
||||||
|
} else { |
||||||
|
if (validate(allow)) { |
||||||
|
ipList.add(allow); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
return ipList; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 对单个IP节点进行范围限定 |
||||||
|
* |
||||||
|
* @param arg |
||||||
|
* @return 返回限定后的IP范围,格式为List[10;19, 100;199] |
||||||
|
*/ |
||||||
|
private static List<String> complete(String arg) { |
||||||
|
List<String> com = new ArrayList<String>(); |
||||||
|
if (arg.length() == 1) { |
||||||
|
com.add("0;255"); |
||||||
|
} else if (arg.length() == 2) { |
||||||
|
String s1 = complete(arg, 1); |
||||||
|
if (s1 != null) |
||||||
|
com.add(s1); |
||||||
|
String s2 = complete(arg, 2); |
||||||
|
if (s2 != null) |
||||||
|
com.add(s2); |
||||||
|
} else { |
||||||
|
String s1 = complete(arg, 1); |
||||||
|
if (s1 != null) |
||||||
|
com.add(s1); |
||||||
|
} |
||||||
|
return com; |
||||||
|
} |
||||||
|
|
||||||
|
private static String complete(String arg, int length) { |
||||||
|
String from = ""; |
||||||
|
String end = ""; |
||||||
|
if (length == 1) { |
||||||
|
from = arg.replace("*", "0"); |
||||||
|
end = arg.replace("*", "9"); |
||||||
|
} else { |
||||||
|
from = arg.replace("*", "00"); |
||||||
|
end = arg.replace("*", "99"); |
||||||
|
} |
||||||
|
if (Integer.valueOf(from) > 255) |
||||||
|
return null; |
||||||
|
if (Integer.valueOf(end) > 255) |
||||||
|
end = "255"; |
||||||
|
return from + ";" + end; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 在添加至白名单时进行格式校验 |
||||||
|
* |
||||||
|
* @param ip |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private static boolean validate(String ip) { |
||||||
|
for (String s : ip.split("-")) |
||||||
|
if (!pattern.matcher(s).matches()) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* checkLoginIP:(根据IP,及可用Ip列表来判断ip是否包含在白名单之中). |
||||||
|
* @date 2017-4-17 下午03:01:03 |
||||||
|
* @param ip |
||||||
|
* @param ipList |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private static boolean checkLoginIP(String ip, Set<String> ipList) { |
||||||
|
if (ipList.isEmpty() || ipList.contains(ip)) |
||||||
|
return true; |
||||||
|
else { |
||||||
|
for (String allow : ipList) { |
||||||
|
if (allow.indexOf("-") > -1) { |
||||||
|
String[] from = allow.split("-")[0].split("\\."); |
||||||
|
String[] end = allow.split("-")[1].split("\\."); |
||||||
|
String[] tag = ip.split("\\."); |
||||||
|
|
||||||
|
// 对IP从左到右进行逐段匹配
|
||||||
|
boolean check = true; |
||||||
|
for (int i = 0; i < 4; i++) { |
||||||
|
int s = Integer.valueOf(from[i]); |
||||||
|
int t = Integer.valueOf(tag[i]); |
||||||
|
int e = Integer.valueOf(end[i]); |
||||||
|
if (!(s <= t && t <= e)) { |
||||||
|
check = false; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
if (check) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* checkLoginIP:(根据IP地址,及IP白名单设置规则判断IP是否包含在白名单). |
||||||
|
* @date 2017-4-17 下午03:01:37 |
||||||
|
* @param ip |
||||||
|
* @param ipWhiteConfig |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static boolean checkLoginIP(String ip,String ipWhiteConfig){ |
||||||
|
Set<String> ipList = getAvaliIpList(ipWhiteConfig); |
||||||
|
return checkLoginIP(ip, ipList); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 获取真实IP 原逻辑 |
||||||
|
* @param request |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static String getRealIp2(HttpServletRequest request) { |
||||||
|
// 这个一般是Nginx反向代理设置的参数
|
||||||
|
String ip = request.getHeader("X-Real-IP"); |
||||||
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getHeader("X-Forwarded-For"); |
||||||
|
} |
||||||
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getHeader("Proxy-Client-IP"); |
||||||
|
} |
||||||
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getHeader("WL-Proxy-Client-IP"); |
||||||
|
} |
||||||
|
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getRemoteAddr(); |
||||||
|
} |
||||||
|
// 处理多IP的情况(只取第一个IP)
|
||||||
|
if (ip != null && ip.contains(",")) { |
||||||
|
String[] ipArray = ip.split(","); |
||||||
|
ip = ipArray[0]; |
||||||
|
} |
||||||
|
//FineLoggerFactory.getLogger().info("[ENC]客户端IP为[{}]",ip);
|
||||||
|
return ip; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 获取真实IP 客户逻辑 |
||||||
|
* @param request |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static String getRealIp(HttpServletRequest request) { |
||||||
|
String ip = request.getHeader("X-Forwarded-For"); |
||||||
|
if (ip==null||ip.length()==0||"unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getHeader("X-Real-IP"); |
||||||
|
} |
||||||
|
if (ip==null||ip.length()==0||"unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getHeader("Proxy-Client-IP"); |
||||||
|
} |
||||||
|
if (ip==null||ip.length()==0||"unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getHeader("WL-Proxy-Client-IP"); |
||||||
|
} |
||||||
|
if (ip==null||ip.length()==0||"unknown".equalsIgnoreCase(ip)) { |
||||||
|
ip = request.getRemoteAddr(); |
||||||
|
} |
||||||
|
|
||||||
|
// 处理多IP的情况(只取第一个IP)
|
||||||
|
if (ip != null && ip.contains(",")) { |
||||||
|
String[] ipArray = ip.split(","); |
||||||
|
ip = ipArray[0]; |
||||||
|
} |
||||||
|
|
||||||
|
return ip; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 判断IP是否内网IP |
||||||
|
* @Title: ipIsInner |
||||||
|
* @param ip |
||||||
|
* @return: boolean |
||||||
|
*/ |
||||||
|
public static boolean ipIsInner(String ip) { |
||||||
|
boolean isInnerIp = false; |
||||||
|
for (Pattern tmp : ipFilterRegexList) { |
||||||
|
Matcher matcher = tmp.matcher(ip); |
||||||
|
if (matcher.find()) { |
||||||
|
isInnerIp = true; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
return isInnerIp; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
// token有效性检验
|
||||||
|
public static boolean checkTokenValid(HttpServletRequest req, String token) { |
||||||
|
|
||||||
|
// 判断该token是否还保存在状态服务器中,也就是判断该token是否还有用
|
||||||
|
try { |
||||||
|
Device device = NetworkHelper.getDevice(req); |
||||||
|
LoginService.getInstance().loginStatusValid(token, TerminalHandler.getTerminal(req, device)); |
||||||
|
return true; |
||||||
|
} catch (Exception e) { |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 判断是否是内网IP "192.168.1.1," + //设置单个IP的白名单
|
||||||
|
* "192.168.*.2," + //设置ip通配符,对一个ip段进行匹配
|
||||||
|
* "192.168.3.17-192.168.3.38"; //设置一个IP范围
|
||||||
|
* @param ip |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static boolean isInnerIP(String ip,String ipWhite) throws IOException { |
||||||
|
String ip4[]=ip.split("\\."); |
||||||
|
if(ip4.length==4) { |
||||||
|
return checkLoginIP(ip,ipWhite); |
||||||
|
}else{ |
||||||
|
return false; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,77 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.utils; |
||||||
|
|
||||||
|
import com.eco.plugin.wink.authcon.config.PluginSimpleConfigWink; |
||||||
|
import com.fr.data.NetworkHelper; |
||||||
|
import com.fr.decision.webservice.v10.config.ConfigService; |
||||||
|
import com.fr.decision.webservice.v10.login.TokenResource; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.plugin.transform.FunctionRecorder; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
import com.fr.third.springframework.web.util.WebUtils; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.io.IOException; |
||||||
|
|
||||||
|
@FunctionRecorder |
||||||
|
public class IPWhiteUtils{ |
||||||
|
|
||||||
|
private static String ipWhite; |
||||||
|
private static String servletName="decision"; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 判断是否是白名单IP "192.168.1.1," + //设置单个IP的白名单
|
||||||
|
* "192.168.*.2," + //设置ip通配符,对一个ip段进行匹配
|
||||||
|
* "192.168.3.17-192.168.3.38"; //设置一个IP范围
|
||||||
|
* @param req |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static boolean inWhite(HttpServletRequest req) { |
||||||
|
try { |
||||||
|
servletName = ConfigService.getInstance().getBasicParam().getServletPathName(); |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error("[ENC]获取servletName失败"); |
||||||
|
e.printStackTrace(); |
||||||
|
} |
||||||
|
|
||||||
|
ipWhite= PluginSimpleConfigWink.getInstance().getIp(); |
||||||
|
|
||||||
|
String ip= IPUtils.getRealIp(req); |
||||||
|
//内网标记
|
||||||
|
boolean isInnerIPFlag= false; |
||||||
|
try { |
||||||
|
isInnerIPFlag = IPUtils.isInnerIP(ip,ipWhite); |
||||||
|
} catch (IOException e) { |
||||||
|
FineLoggerFactory.getLogger().error("[ENC]判断IP失败"); |
||||||
|
} |
||||||
|
|
||||||
|
//移动设备标记
|
||||||
|
boolean isMobileFlag=NetworkHelper.getDevice(req).isMobile(); |
||||||
|
|
||||||
|
//移动端原生登陆标记
|
||||||
|
boolean isMobileLoginFlag=req.getRequestURI().contains(servletName+"/login") && !isInnerIPFlag; |
||||||
|
|
||||||
|
//微信登陆标记
|
||||||
|
boolean isDingLoginFlag=req.getRequestURI().contains("weixin/single/login") && isMobileFlag; |
||||||
|
|
||||||
|
String token = TokenResource.COOKIE.getToken(req); |
||||||
|
//是否登陆标记
|
||||||
|
boolean isHasTokenFlag=!StringUtils.isEmpty(token) && IPUtils.checkTokenValid(req, token); |
||||||
|
|
||||||
|
//移动端原生登陆标记
|
||||||
|
boolean isResourcesFlag=req.getRequestURI().contains(servletName+"/resources"); |
||||||
|
|
||||||
|
boolean isHasDingCookie=WebUtils.getCookie(req, "LOGIN_TYPE") != null; |
||||||
|
|
||||||
|
FineLoggerFactory.getLogger().debug("[ENC]内网[{}]|移动设备[{}]|移动原生登陆[{}]|微信登陆[{}]|是否登陆[{}]|请求[{}]",isInnerIPFlag,isMobileFlag,isMobileLoginFlag,isDingLoginFlag,isHasTokenFlag,req.getRequestURI()); |
||||||
|
|
||||||
|
if(isInnerIPFlag || isResourcesFlag || isHasDingCookie){ |
||||||
|
return true; |
||||||
|
} |
||||||
|
else if(isDingLoginFlag){ |
||||||
|
return true; |
||||||
|
} else{ |
||||||
|
return false; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,94 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.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 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(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,227 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.utils; |
||||||
|
|
||||||
|
import com.fr.base.TemplateUtils; |
||||||
|
import com.fr.data.NetworkHelper; |
||||||
|
import com.fr.io.utils.ResourceIOUtils; |
||||||
|
import com.fr.json.JSONObject; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
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) { |
||||||
|
FineLoggerFactory.getLogger().info("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(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
FineLoggerFactory.getLogger().info("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<String, String> parameterMap){ |
||||||
|
if(parameterMap == null){ |
||||||
|
parameterMap = new HashMap<String, String>(); |
||||||
|
} |
||||||
|
|
||||||
|
try { |
||||||
|
String macPage = TemplateUtils.renderTemplate(path, parameterMap); |
||||||
|
WebUtils.printAsString(res, macPage); |
||||||
|
}catch (Exception e){ |
||||||
|
FineLoggerFactory.getLogger().info("跳转页面异常"); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.webresource; |
||||||
|
|
||||||
|
import com.fr.decision.fun.impl.AbstractWebResourceProvider; |
||||||
|
import com.fr.plugin.transform.FunctionRecorder; |
||||||
|
import com.fr.report.web.ReportMainComponent; |
||||||
|
import com.fr.web.struct.Atom; |
||||||
|
import com.fr.web.struct.Component; |
||||||
|
import com.fr.web.struct.browser.RequestClient; |
||||||
|
import com.fr.web.struct.category.ScriptPath; |
||||||
|
import com.fr.web.struct.category.StylePath; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by fr.open on 2019/1/16. |
||||||
|
*/ |
||||||
|
@FunctionRecorder |
||||||
|
public class WebResourceProvider extends AbstractWebResourceProvider { |
||||||
|
@Override |
||||||
|
public Atom attach() { |
||||||
|
return ReportMainComponent.KEY; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Atom client() { |
||||||
|
return new Component() { |
||||||
|
@Override |
||||||
|
public ScriptPath script(RequestClient requestClient) { |
||||||
|
return ScriptPath.build("/com/eco/plugin/xxxx/authcon/js/authcon.js"); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public StylePath style(RequestClient requestClient) { |
||||||
|
return StylePath.EMPTY; |
||||||
|
// return StylePath.build("/com/fr/plugin/jdfSSO/css/icon.css");
|
||||||
|
} |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
package com.eco.plugin.xxxx.authcon.webresource; |
||||||
|
|
||||||
|
import com.fr.decision.fun.impl.AbstractWebResourceProvider; |
||||||
|
import com.fr.form.web.FormMainComponent; |
||||||
|
import com.fr.plugin.transform.FunctionRecorder; |
||||||
|
import com.fr.web.struct.Atom; |
||||||
|
import com.fr.web.struct.Component; |
||||||
|
import com.fr.web.struct.browser.RequestClient; |
||||||
|
import com.fr.web.struct.category.ScriptPath; |
||||||
|
import com.fr.web.struct.category.StylePath; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by fr.open on 2019/1/16. |
||||||
|
*/ |
||||||
|
@FunctionRecorder |
||||||
|
public class WebResourceProvider2 extends AbstractWebResourceProvider { |
||||||
|
@Override |
||||||
|
public Atom attach() { |
||||||
|
return FormMainComponent.KEY; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Atom client() { |
||||||
|
return new Component() { |
||||||
|
@Override |
||||||
|
public ScriptPath script(RequestClient requestClient) { |
||||||
|
return ScriptPath.build("/com/eco/plugin/xxxx/authcon/js/authcon2.js"); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public StylePath style(RequestClient requestClient) { |
||||||
|
return StylePath.EMPTY; |
||||||
|
// return StylePath.build("/com/fr/plugin/jdfSSO/css/icon.css");
|
||||||
|
} |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,100 @@ |
|||||||
|
window.onload = function(){ |
||||||
|
var needHide2 = needHide(); |
||||||
|
|
||||||
|
if(!needHide2){ |
||||||
|
var op = getQueryString("op"); |
||||||
|
if("write_plus" == op){ |
||||||
|
hideNewExport(); |
||||||
|
}else{ |
||||||
|
hideExport(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
function needHide(){ |
||||||
|
var isWhite = false; |
||||||
|
|
||||||
|
$.ajax({ |
||||||
|
type:"get", |
||||||
|
async:false, |
||||||
|
url:"/webroot/decision/url/isIPWhite", |
||||||
|
success:function(data){ |
||||||
|
var isWhitea = data.data; |
||||||
|
isWhite = (isWhitea == 'true' || isWhitea); |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
return JSON.parse(isWhite); |
||||||
|
} |
||||||
|
|
||||||
|
function hideExport(){ |
||||||
|
var btnrows =$(".fr-btn-arrow"); |
||||||
|
|
||||||
|
for(var i =0;i< btnrows.length;i++){ |
||||||
|
var btnrow = $(btnrows[i]); |
||||||
|
var parent =btnrow.parent().parent(); |
||||||
|
var id =parent.attr('id'); |
||||||
|
var ispring = btnrow.children().hasClass("x-emb-print"); |
||||||
|
|
||||||
|
if(id == "fr-btn-" && !ispring){ |
||||||
|
var exportBtn = parent.parent().parent(); |
||||||
|
var sp1 = exportBtn.next(); |
||||||
|
exportBtn.remove(); |
||||||
|
sp1.remove(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
var exP = $("#fr-btn-ExcelP").parent().parent(); |
||||||
|
var sp2 = exP.next(); |
||||||
|
exP.remove(); |
||||||
|
sp2.remove(); |
||||||
|
|
||||||
|
var pdf = $("#fr-btn-PDF").parent().parent(); |
||||||
|
var sp3 = pdf.next(); |
||||||
|
pdf.remove(); |
||||||
|
sp3.remove(); |
||||||
|
|
||||||
|
var exo = $("#fr-btn-ExcelO").parent().parent(); |
||||||
|
var sp4 = exo.next(); |
||||||
|
exo.remove(); |
||||||
|
sp4.remove(); |
||||||
|
|
||||||
|
var exs = $("#fr-btn-ExcelS").parent().parent(); |
||||||
|
var sp5 = exs.next(); |
||||||
|
exs.remove(); |
||||||
|
sp5.remove(); |
||||||
|
|
||||||
|
var word = $("#fr-btn-Word").parent().parent(); |
||||||
|
var sp6 = word.next(); |
||||||
|
word.remove(); |
||||||
|
sp6.remove(); |
||||||
|
} |
||||||
|
|
||||||
|
function hideNewExport(){ |
||||||
|
var toolbar = $(".wt-toolbar").find(".bi-text"); |
||||||
|
var exportstr = "导出,PDF,分页导出,原样导出,分页分Sheet导出,Word" |
||||||
|
toolbar.each(function(){ |
||||||
|
var obj =$(this); |
||||||
|
var text =obj.html(); |
||||||
|
var isbh = exportstr.indexOf(text) != '-1'; |
||||||
|
|
||||||
|
if(isbh){ |
||||||
|
var ele = obj.parent().parent().parent().parent(); |
||||||
|
var next = ele.next(); |
||||||
|
|
||||||
|
ele.remove(); |
||||||
|
next.remove(); |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
function getQueryString(name) { |
||||||
|
var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i'); |
||||||
|
var r = window.location.search.substr(1).match(reg); |
||||||
|
if (r != null) { |
||||||
|
return unescape(r[2]); |
||||||
|
} |
||||||
|
return null; |
||||||
|
} |
@ -0,0 +1,59 @@ |
|||||||
|
window.onload = function(){ |
||||||
|
var needHide2 = needHide(); |
||||||
|
|
||||||
|
if(!needHide2){ |
||||||
|
setTimeout(function(){ |
||||||
|
hideExport(); |
||||||
|
},200); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
function needHide(){ |
||||||
|
var isWhite = false; |
||||||
|
|
||||||
|
$.ajax({ |
||||||
|
type:"get", |
||||||
|
async:false, |
||||||
|
url:"/webroot/decision/url/isIPWhite", |
||||||
|
success:function(data){ |
||||||
|
var isWhitea = data.data; |
||||||
|
isWhite = (isWhitea == 'true' || isWhitea); |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
return JSON.parse(isWhite); |
||||||
|
} |
||||||
|
|
||||||
|
function hideExport(){ |
||||||
|
var exportBtn = $("#fr-btn-Export").parent().parent(); |
||||||
|
var sp1 = exportBtn.next(); |
||||||
|
exportBtn.remove(); |
||||||
|
sp1.remove(); |
||||||
|
|
||||||
|
var exP = $("#fr-btn-ExcelP").parent().parent(); |
||||||
|
var sp2 = exP.next(); |
||||||
|
exP.remove(); |
||||||
|
sp2.remove(); |
||||||
|
|
||||||
|
var pdf = $("#fr-btn-PDF").parent().parent(); |
||||||
|
var sp3 = pdf.next(); |
||||||
|
pdf.remove(); |
||||||
|
sp3.remove(); |
||||||
|
|
||||||
|
var exo = $("#fr-btn-ExcelO").parent().parent(); |
||||||
|
var sp4 = exo.next(); |
||||||
|
exo.remove(); |
||||||
|
sp4.remove(); |
||||||
|
|
||||||
|
var exs = $("#fr-btn-ExcelS").parent().parent(); |
||||||
|
var sp5 = exs.next(); |
||||||
|
exs.remove(); |
||||||
|
sp5.remove(); |
||||||
|
|
||||||
|
var word = $("#fr-btn-Word").parent().parent(); |
||||||
|
var sp6 = word.next(); |
||||||
|
word.remove(); |
||||||
|
sp6.remove(); |
||||||
|
|
||||||
|
} |
Binary file not shown.
Loading…
Reference in new issue