Commit caa9ba48 authored by lenboo's avatar lenboo
Browse files

check tenant is available

parent fd89dff3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -211,6 +211,7 @@ public enum Status {
    DELETE_SCHEDULE_CRON_BY_ID_ERROR(50024,"delete schedule by id error"),
    BATCH_DELETE_PROCESS_DEFINE_ERROR(50025,"batch delete process definition error"),
    BATCH_DELETE_PROCESS_DEFINE_BY_IDS_ERROR(50026,"batch delete process definition by ids {0} error"),
    TENANT_NOT_SUITABLE(50027,"there is not any tenant suitable, please choose a tenant available."),

    HDFS_NOT_STARTUP(60001,"hdfs not startup"),
    HDFS_TERANT_RESOURCES_FILE_EXISTS(60002,"resource file exists,please delete resource first"),
+24 −7
Original line number Diff line number Diff line
@@ -110,6 +110,13 @@ public class ExecutorService extends BaseService{
            return result;
        }

        if (!checkTenantSuitable(processDefinition)){
            logger.error("there is not any vaild tenant for the process definition: id:{},name:{}, ",
                    processDefinition.getId(), processDefinition.getName());
            putMsg(result, Status.TENANT_NOT_SUITABLE);
            return result;
        }

        /**
         * create command
         */
@@ -190,15 +197,10 @@ public class ExecutorService extends BaseService{
        if (status != Status.SUCCESS) {
            return checkResult;
        }

        // checkTenantExists();
        Tenant tenant = processDao.getTenantForProcess(processDefinition.getTenantId(),
                processDefinition.getUserId());
        if(tenant == null){
        if (!checkTenantSuitable(processDefinition)){
            logger.error("there is not any vaild tenant for the process definition: id:{},name:{}, ",
                    processDefinition.getId(), processDefinition.getName());
            putMsg(result, Status.PROCESS_INSTANCE_NOT_EXIST, processInstanceId);
            return result;
            putMsg(result, Status.TENANT_NOT_SUITABLE);
        }

        switch (executeType) {
@@ -240,6 +242,21 @@ public class ExecutorService extends BaseService{
        return result;
    }

    /**
     * check tenant suitable
     * @param processDefinition
     * @return
     */
    private boolean checkTenantSuitable(ProcessDefinition processDefinition) {
        // checkTenantExists();
        Tenant tenant = processDao.getTenantForProcess(processDefinition.getTenantId(),
                processDefinition.getUserId());
        if(tenant == null){
            return false;
        }
        return true;
    }

    /**
     * Check the state of process instance and the type of operation match
     *
+5 −0
Original line number Diff line number Diff line
@@ -210,6 +210,11 @@ public class FetchTaskThread implements Runnable{

                            Tenant tenant = processDao.getTenantForProcess(processInstance.getTenantId(),
                                    processDefine.getUserId());
                            if(tenant == null){
                                logger.error("cannot find suitable tenant for the task:{}, process instance tenant:{}, process definition tenant:{}",
                                        taskInstance.getName(),processInstance.getTenantId(), processDefine.getTenantId());
                                continue;
                            }

                            // check and create Linux users
                            FileUtils.createWorkDirAndUserIfAbsent(execLocalPath,