All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kukababy.plus.pager.Valid Maven / Gradle / Ivy

The newest version!
package com.kukababy.plus.pager;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

/**
 * 
 * 描述:
 * 
* @author [email protected] * @date 2019年3月5日 下午10:46:38 */ public class Valid { /** * *
*
	 * 描述:
	 * 清除表达式里无效的字段命名,阻止无效客户端的攻击
	 * String validFields = "name,a.name;compName,b.name" ;
	 * 
*
* @param sqlFilter * @param validFields */ public static void cleanInvalidField(SqlFilter sqlFilter, String validFields) { List filters = sqlFilter.getFilters(); if (validFields != null) { cleanInvalidField(filters, validFields); } } /** * * 描述:
* *
	 * 清除表达式里无效的字段命名,阻止无效客户端的攻击
	 * String validFields = "name,a.name;compName,b.name" ;
	 * 
* *
* * @param filters * @param validFields */ public static void cleanInvalidField(List filters, String validFields) { if (validFields == null) { filters = null; } Map _validFields = new HashMap(); if (validFields != null) { String dars[] = validFields.split(";"); for (String dar : dars) { String fields[] = dar.split(","); _validFields.put(fields[0], fields[1]); } } if (filters != null && !filters.isEmpty()) { Iterator it = filters.iterator(); while (it.hasNext()) { Filter filter = it.next(); if (filter.getCol() == null) { it.remove(); } else { String col = _validFields.get(filter.getCol()); if (col == null) { it.remove(); } else { filter.setCol(col);// 换成数据库支持的字段名 } } } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy