VionConfig.java 1.34 KB
package com.viontech.fanxing.commons.config;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.annotation.Configuration;

import java.util.List;

/**
 * .
 *
 * @author 谢明辉
 * @date 2021/9/8
 */
@RefreshScope
@Configuration
@Getter
@Setter
@ConfigurationProperties(prefix = "vion")
public class VionConfig {

    private Image image;
    /** 是否启用转发 */
    private boolean enableForward;
    /** auth 服务地址 */
    private String authPath;
    private Gateway gateway;
    /** 支持的视频格式列表 */
    private List<String> supportedVideoFormats;
    /** 需要跳过 token 验证的 url 的正则表达式列表 */
    private List<String> skipAuth;


    public @Getter
    @Setter
    static class Image {
        /** images 本地存储路径 */
        private String path;
        /** 图片保存天数 */
        private Integer keep;
        /** 访问 images 前缀,images 包含录像文件和分析图片 */
        private String urlPrefix;
    }

    public @Getter
    @Setter
    static class Gateway {
        /** 网关 ip,以后可能改为 nginx */
        private String ip;
        /** 网关端口 */
        private String port;
    }

}