zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.changhong.epc.config.tool;
 
import com.changhong.epc.constter.system.RestParamConst;
import com.changhong.ssc.data.autho.base.struct.Condition;
import com.changhong.ssc.data.autho.base.struct.DataPermission;
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
 
import java.util.Collection;
 
/**
 * 获得权限条件数据
 * @author WangYX
 *
 */
@FunctionalInterface
public interface PowerParam extends RestParamConst {
    
    String getValue(String key);
 
    default String getSql(Collection<Condition> powerDatas, String alias, String tableName){
        if(ObjectUtil.empty(powerDatas)){
            return "";
        }
        StringBuilder param = new StringBuilder();
        String sql;
        for(Condition power : powerDatas){
            if(param.length() == 0){
                param.append(getSql(power, alias, tableName));
            }else{
                sql = getSql(power, alias, tableName);
                if(ObjectUtil.notEmpty(sql)){
                    param.append(" AND ")
                         .append(sql);
                }
            }
        }
        return param.toString();
    }
    
    /**
     * 获得条件sql
     * @param alias
     * @return
     */
    default String getSql(DataPermission powerData, String alias, String tableName){
        if(ObjectUtil.empty(powerData.getConditions())){
            return "";
        }
        StringBuilder param = new StringBuilder();
        for(Condition con : powerData.getConditions()){
            if(param.length() == 0){
                param.append(getSql(con, alias, tableName));
            }else{
                param.append(" AND ")
                     .append(getSql(con, alias, tableName));
            }
        }
        return param.toString();
    }
    
    default String getSql(Condition con, String alias, String tableName){
//        Assert.condition(con.getOperator() == null, new IEMRuntimeException().setchildIEMExc("operator == null"));
        con.setValue(getValue(con.getValue()));
        return Operator.values()[con.getOperator()].getSql(con, alias, tableName);
    }
}