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

org.apache.inlong.manager.pojo.module.ModuleDTO Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.inlong.manager.pojo.module;

import org.apache.inlong.manager.common.enums.ErrorCodeEnum;
import org.apache.inlong.manager.common.exceptions.BusinessException;
import org.apache.inlong.manager.common.util.CommonBeanUtils;
import org.apache.inlong.manager.common.util.JsonUtils;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Builder.Default;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.validation.constraints.NotNull;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Objects;

/**
 * Module request.
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel("Module info")
public class ModuleDTO {

    private static final Logger LOGGER = LoggerFactory.getLogger(ModuleDTO.class);

    @ApiModelProperty("Start command")
    private String startCommand;

    @ApiModelProperty("Stop command")
    private String stopCommand;

    @ApiModelProperty("Check command")
    private String checkCommand;

    @ApiModelProperty("Install command")
    private String installCommand;

    @ApiModelProperty("Uninstall command")
    private String uninstallCommand;

    @ApiModelProperty("History list of package")
    @Default
    private List packageHistoryList = new ArrayList<>();

    /**
     * Get the dto instance from the request
     */
    public static ModuleDTO getFromRequest(ModuleRequest request, String extParams, Integer packageId) {
        if (!StringUtils.isNotBlank(extParams)) {
            return CommonBeanUtils.copyProperties(request, ModuleDTO::new, true);
        }
        ModuleDTO dto = ModuleDTO.getFromJson(extParams);
        if (!Objects.equals(request.getPackageId(), packageId)) {
            List packageHistoryList = dto.getPackageHistoryList();
            if (packageHistoryList.size() > 10) {
                packageHistoryList.remove(packageHistoryList.size() - 1);
            }
            PackageHistory packageHistory = PackageHistory.builder()
                    .packageId(packageId)
                    .modifier(request.getCurrentUser())
                    .modifyTime(new Date())
                    .build();
            packageHistoryList.add(0, packageHistory);
            dto.setPackageHistoryList(packageHistoryList);
        }
        return CommonBeanUtils.copyProperties(request, dto, true);
    }

    /**
     * Get the dto instance from the JSON string.
     */
    public static ModuleDTO getFromJson(@NotNull String extParams) {
        try {
            return JsonUtils.parseObject(extParams, ModuleDTO.class);
        } catch (Exception e) {
            throw new BusinessException(ErrorCodeEnum.CLUSTER_INFO_INCORRECT,
                    ErrorCodeEnum.CLUSTER_INFO_INCORRECT.getMessage() + ": " + e.getMessage());
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy