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

org.dromara.jpom.model.data.RepositoryModel Maven / Gradle / Ivy

There is a newer version: 2.11.9
Show newest version
/*
 * Copyright (c) 2019 Of Him Code Technology Studio
 * Jpom is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 * 			http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 */
package org.dromara.jpom.model.data;

import cn.hutool.core.util.EnumUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpUtil;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import org.dromara.jpom.build.BuildUtil;
import org.dromara.jpom.common.Const;
import org.dromara.jpom.db.TableName;
import org.dromara.jpom.model.BaseEnum;
import org.dromara.jpom.model.BaseGroupModel;
import org.dromara.jpom.model.enums.GitProtocolEnum;

import java.util.HashMap;
import java.util.Map;

/**
 * @author Hotstrip
 * 仓库地址实体类
 */
@TableName(value = "REPOSITORY",
    nameKey = "i18n.repository_info.22cd")
@Data
@EqualsAndHashCode(callSuper = true)
public class RepositoryModel extends BaseGroupModel {
    /**
     * 名称
     */
    private String name;
    /**
     * 仓库地址
     */
    private String gitUrl;
    /**
     * 仓库类型{0: GIT, 1: SVN}
     */
    private Integer repoType;
    /**
     * 拉取代码的协议{0: http, 1: ssh}
     *
     * @see GitProtocolEnum
     */
    private Integer protocol;
    /**
     * 登录用户
     */
    private String userName;
    /**
     * 登录密码
     */
    private String password;
    /**
     * SSH RSA 公钥
     */
    @Deprecated
    private String rsaPub;
    /**
     * SSH RSA 私钥
     */
    private String rsaPrv;
    /**
     * 排序
     */
    private Float sortValue;
    /**
     * 仓库连接超时时间
     */
    private Integer timeout;

    /**
     * 返回协议类型,如果为 null 会尝试识别 http
     *
     * @return 枚举的值(1/0)
     * @see GitProtocolEnum
     */
    public Integer getProtocol() {
        if (protocol != null) {
            return protocol;
        }
        String gitUrl = this.getGitUrl();
        if (StrUtil.isEmpty(gitUrl)) {
            return null;
        }
        if (HttpUtil.isHttps(gitUrl) || HttpUtil.isHttp(gitUrl)) {
            return GitProtocolEnum.HTTP.getCode();
        }
        return null;
    }

    /**
     * 转换为 map
     *
     * @return map
     */
    public Map toMap() {
        //
        Map map = new HashMap<>(10);
        map.put("url", this.getGitUrl());
        map.put("protocol", this.getProtocol());
        Integer protocolCode = this.getProtocol();
        GitProtocolEnum protocol = EnumUtil.likeValueOf(GitProtocolEnum.class, protocolCode);
        if (protocol != null) {
            map.put("protocolStr", protocol.name());
        }
        map.put("username", this.getUserName());
        map.put("password", this.getPassword());
        map.put(Const.WORKSPACE_ID_REQ_HEADER, this.getWorkspaceId());
        map.put("rsaFile", BuildUtil.getRepositoryRsaFile(this));
        map.put("timeout", this.getTimeout());
        return map;
    }

    /**
     * 仓库类型
     */
    @Getter
    public enum RepoType implements BaseEnum {
        /**
         * git
         */
        Git(0, "Git"),
        Svn(1, "Svn"),
        ;
        private final int code;
        private final String desc;

        RepoType(int code, String desc) {
            this.code = code;
            this.desc = desc;
        }
    }

    @Override
    protected boolean hasCreateUser() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy