mirror of https://github.com/Xhofe/alist
				
				
				
			
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
package conf
 | 
						|
 | 
						|
const (
 | 
						|
	TypeString = "string"
 | 
						|
	TypeSelect = "select"
 | 
						|
	TypeBool   = "bool"
 | 
						|
	TypeText   = "text"
 | 
						|
	TypeNumber = "number"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	// site
 | 
						|
	VERSION      = "version"
 | 
						|
	ApiUrl       = "api_url"
 | 
						|
	BasePath     = "base_path"
 | 
						|
	SiteTitle    = "site_title"
 | 
						|
	Announcement = "announcement"
 | 
						|
 | 
						|
	Logo      = "logo"
 | 
						|
	Favicon   = "favicon"
 | 
						|
	MainColor = "main_color"
 | 
						|
 | 
						|
	// preview
 | 
						|
	TextTypes  = "text_types"
 | 
						|
	AudioTypes = "audio_types"
 | 
						|
	VideoTypes = "video_types"
 | 
						|
	ImageTypes = "image_types"
 | 
						|
	//OfficeTypes   = "office_types"
 | 
						|
	ProxyTypes    = "proxy_types"
 | 
						|
	OfficeViewers = "office_viewers"
 | 
						|
	PdfViewers    = "pdf_viewers"
 | 
						|
	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"
 | 
						|
	SearchIndex         = "search_index"
 | 
						|
 | 
						|
	// aria2
 | 
						|
	Aria2Uri    = "aria2_uri"
 | 
						|
	Aria2Secret = "aria2_secret"
 | 
						|
 | 
						|
	// single
 | 
						|
	Token         = "token"
 | 
						|
	IndexProgress = "index_progress"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	UNKNOWN = iota
 | 
						|
	FOLDER
 | 
						|
	//OFFICE
 | 
						|
	VIDEO
 | 
						|
	AUDIO
 | 
						|
	TEXT
 | 
						|
	IMAGE
 | 
						|
)
 |