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

com.diboot.core.methods.UpdateInRecycleBin Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.diboot.core.methods;

import com.baomidou.mybatisplus.core.enums.SqlMethod;
import com.baomidou.mybatisplus.core.injector.AbstractMethod;
import com.baomidou.mybatisplus.core.metadata.TableInfo;
import com.baomidou.mybatisplus.core.toolkit.sql.SqlScriptUtils;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.mapping.SqlSource;

public class UpdateInRecycleBin extends AbstractMethod {
    public UpdateInRecycleBin() {
        this(RecycleBinSqlMethod.UPDATE.getMethod());
    }

    public UpdateInRecycleBin(String name) {
        super(name);
    }

    @Override
    public MappedStatement injectMappedStatement(Class mapperClass, Class modelClass, TableInfo tableInfo) {
        RecycleBinSqlMethod sqlMethod = RecycleBinSqlMethod.UPDATE;
        String sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(),
                sqlSet(true, true, tableInfo, true, ENTITY, ENTITY_DOT),
                sqlWhereEntityWrapper(true, tableInfo), sqlComment());
        SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass);
        return this.addUpdateMappedStatement(mapperClass, modelClass, methodName, sqlSource);
    }

    @Override
    protected String sqlWhereEntityWrapper(boolean newLine, TableInfo table) {
        String sqlScript = table.getAllSqlWhere(true, true, false,  WRAPPER_ENTITY_DOT);
        sqlScript = SqlScriptUtils.convertIf(sqlScript, String.format("%s != null", WRAPPER_ENTITY),
                true);
        sqlScript += (NEWLINE + " AND NOT (" + table.getLogicDeleteSql(false, true) + ") " + NEWLINE);
        String normalSqlScript = SqlScriptUtils.convertIf(String.format("AND ${%s}", WRAPPER_SQLSEGMENT),
                String.format("%s != null and %s != '' and %s", WRAPPER_SQLSEGMENT, WRAPPER_SQLSEGMENT,
                        WRAPPER_NONEMPTYOFNORMAL), true);
        normalSqlScript += NEWLINE;
        normalSqlScript += SqlScriptUtils.convertIf(String.format(" ${%s}", WRAPPER_SQLSEGMENT),
                String.format("%s != null and %s != '' and %s", WRAPPER_SQLSEGMENT, WRAPPER_SQLSEGMENT,
                        WRAPPER_EMPTYOFNORMAL), true);
        sqlScript += normalSqlScript;
        sqlScript = SqlScriptUtils.convertChoose(String.format("%s != null", WRAPPER), sqlScript,
                table.getLogicDeleteSql(false, true));
        sqlScript = SqlScriptUtils.convertWhere(sqlScript);
        return newLine ? NEWLINE + sqlScript : sqlScript;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy