Documentation ¶
Index ¶
Constants ¶
View Source
const ( TypeString = "string" TypeSelect = "select" TypeBool = "bool" TypeText = "text" TypeNumber = "number" )
View Source
const ( // site VERSION = "version" SiteTitle = "site_title" Announcement = "announcement" AllowIndexed = "allow_indexed" AllowMounted = "allow_mounted" RobotsTxt = "robots_txt" Logo = "logo" Favicon = "favicon" MainColor = "main_color" // preview TextTypes = "text_types" AudioTypes = "audio_types" VideoTypes = "video_types" ImageTypes = "image_types" ProxyTypes = "proxy_types" ProxyIgnoreHeaders = "proxy_ignore_headers" AudioAutoplay = "audio_autoplay" VideoAutoplay = "video_autoplay" // global HideFiles = "hide_files" CustomizeHead = "customize_head" CustomizeBody = "customize_body" LinkExpiration = "link_expiration" SignAll = "sign_all" PrivacyRegs = "privacy_regs" OcrApi = "ocr_api" FilenameCharMapping = "filename_char_mapping" ForwardDirectLinkParams = "forward_direct_link_params" IgnoreDirectLinkParams = "ignore_direct_link_params" WebauthnLoginEnabled = "webauthn_login_enabled" // index SearchIndex = "search_index" AutoUpdateIndex = "auto_update_index" IgnorePaths = "ignore_paths" MaxIndexDepth = "max_index_depth" // aria2 Aria2Uri = "aria2_uri" Aria2Secret = "aria2_secret" // transmission TransmissionUri = "transmission_uri" TransmissionSeedtime = "transmission_seedtime" // single Token = "token" IndexProgress = "index_progress" // SSO SSOClientId = "sso_client_id" SSOClientSecret = "sso_client_secret" SSOLoginEnabled = "sso_login_enabled" SSOLoginPlatform = "sso_login_platform" SSOOIDCUsernameKey = "sso_oidc_username_key" SSOOrganizationName = "sso_organization_name" SSOApplicationName = "sso_application_name" SSOEndpointName = "sso_endpoint_name" SSOJwtPublicKey = "sso_jwt_public_key" SSOExtraScopes = "sso_extra_scopes" SSOAutoRegister = "sso_auto_register" SSODefaultDir = "sso_default_dir" SSODefaultPermission = "sso_default_permission" SSOCompatibilityMode = "sso_compatibility_mode" // ldap LdapLoginEnabled = "ldap_login_enabled" LdapServer = "ldap_server" LdapManagerDN = "ldap_manager_dn" LdapManagerPassword = "ldap_manager_password" LdapUserSearchBase = "ldap_user_search_base" LdapUserSearchFilter = "ldap_user_search_filter" LdapDefaultPermission = "ldap_default_permission" LdapDefaultDir = "ldap_default_dir" LdapLoginTips = "ldap_login_tips" // s3 S3Buckets = "s3_buckets" S3AccessKeyId = "s3_access_key_id" S3SecretAccessKey = "s3_secret_access_key" // qbittorrent QbittorrentUrl = "qbittorrent_url" QbittorrentSeedtime = "qbittorrent_seedtime" // ftp FTPPublicHost = "ftp_public_host" FTPPasvPortMap = "ftp_pasv_port_map" FTPProxyUserAgent = "ftp_proxy_user_agent" FTPMandatoryTLS = "ftp_mandatory_tls" FTPImplicitTLS = "ftp_implicit_tls" FTPTLSPrivateKeyPath = "ftp_tls_private_key_path" FTPTLSPublicCertPath = "ftp_tls_public_cert_path" )
View Source
const ( UNKNOWN = iota FOLDER // OFFICE VIDEO AUDIO TEXT IMAGE )
View Source
const (
NoTaskKey = "no_task"
)
ContextKey is the type of context keys.
Variables ¶
View Source
var ( BuiltAt string GoVersion string GitAuthor string GitCommit string Version string = "dev" WebVersion string )
View Source
var ( RawIndexHtml string ManageHtml string IndexHtml string )
View Source
var FilenameCharMap = make(map[string]string)
View Source
var PrivacyReg []*regexp.Regexp
View Source
var SSHSigners []ssh.Signer
View Source
var SlicesMap = make(map[string][]string)
View Source
var ( // StoragesLoaded loaded success if empty StoragesLoaded = false )
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Force bool `json:"force" env:"FORCE"` SiteURL string `json:"site_url" env:"SITE_URL"` Cdn string `json:"cdn" env:"CDN"` JwtSecret string `json:"jwt_secret" env:"JWT_SECRET"` TokenExpiresIn int `json:"token_expires_in" env:"TOKEN_EXPIRES_IN"` Database Database `json:"database" envPrefix:"DB_"` Meilisearch Meilisearch `json:"meilisearch" envPrefix:"MEILISEARCH_"` Scheme Scheme `json:"scheme"` TempDir string `json:"temp_dir" env:"TEMP_DIR"` BleveDir string `json:"bleve_dir" env:"BLEVE_DIR"` DistDir string `json:"dist_dir"` Log LogConfig `json:"log"` DelayedStart int `json:"delayed_start" env:"DELAYED_START"` MaxConnections int `json:"max_connections" env:"MAX_CONNECTIONS"` TlsInsecureSkipVerify bool `json:"tls_insecure_skip_verify" env:"TLS_INSECURE_SKIP_VERIFY"` Tasks TasksConfig `json:"tasks" envPrefix:"TASKS_"` Cors Cors `json:"cors" envPrefix:"CORS_"` S3 S3 `json:"s3" envPrefix:"S3_"` FTP FTP `json:"ftp" envPrefix:"FTP_"` SFTP SFTP `json:"sftp" envPrefix:"SFTP_"` }
func DefaultConfig ¶
func DefaultConfig() *Config
type Database ¶
type Database struct { Type string `json:"type" env:"TYPE"` Host string `json:"host" env:"HOST"` Port int `json:"port" env:"PORT"` User string `json:"user" env:"USER"` Password string `json:"password" env:"PASS"` Name string `json:"name" env:"NAME"` DBFile string `json:"db_file" env:"FILE"` TablePrefix string `json:"table_prefix" env:"TABLE_PREFIX"` SSLMode string `json:"ssl_mode" env:"SSL_MODE"` DSN string `json:"dsn" env:"DSN"` }
type FTP ¶ added in v3.41.0
type FTP struct { Enable bool `json:"enable" env:"ENABLE"` Listen string `json:"listen" env:"LISTEN"` FindPasvPortAttempts int `json:"find_pasv_port_attempts" env:"FIND_PASV_PORT_ATTEMPTS"` ActiveTransferPortNon20 bool `json:"active_transfer_port_non_20" env:"ACTIVE_TRANSFER_PORT_NON_20"` IdleTimeout int `json:"idle_timeout" env:"IDLE_TIMEOUT"` ConnectionTimeout int `json:"connection_timeout" env:"CONNECTION_TIMEOUT"` DisableActiveMode bool `json:"disable_active_mode" env:"DISABLE_ACTIVE_MODE"` DefaultTransferBinary bool `json:"default_transfer_binary" env:"DEFAULT_TRANSFER_BINARY"` EnableActiveConnIPCheck bool `json:"enable_active_conn_ip_check" env:"ENABLE_ACTIVE_CONN_IP_CHECK"` EnablePasvConnIPCheck bool `json:"enable_pasv_conn_ip_check" env:"ENABLE_PASV_CONN_IP_CHECK"` }
type Meilisearch ¶ added in v3.31.0
type Scheme ¶
type Scheme struct { Address string `json:"address" env:"ADDR"` HttpPort int `json:"http_port" env:"HTTP_PORT"` HttpsPort int `json:"https_port" env:"HTTPS_PORT"` ForceHttps bool `json:"force_https" env:"FORCE_HTTPS"` CertFile string `json:"cert_file" env:"CERT_FILE"` KeyFile string `json:"key_file" env:"KEY_FILE"` UnixFile string `json:"unix_file" env:"UNIX_FILE"` UnixFilePerm string `json:"unix_file_perm" env:"UNIX_FILE_PERM"` }
type TaskConfig ¶ added in v3.29.0
type TasksConfig ¶ added in v3.29.0
type TasksConfig struct { Download TaskConfig `json:"download" envPrefix:"DOWNLOAD_"` Transfer TaskConfig `json:"transfer" envPrefix:"TRANSFER_"` Upload TaskConfig `json:"upload" envPrefix:"UPLOAD_"` Copy TaskConfig `json:"copy" envPrefix:"COPY_"` }
Click to show internal directories.
Click to hide internal directories.