mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
// Package epuboptions for EPUB creation.
|
|
package epuboptions
|
|
|
|
type EPUBOptions struct {
|
|
// Output
|
|
Input string `yaml:"-" json:"input"`
|
|
Output string `yaml:"-" json:"output"`
|
|
Author string `yaml:"-" json:"author"`
|
|
Title string `yaml:"-" json:"title"`
|
|
|
|
//Config
|
|
TitlePage int `yaml:"title_page" json:"title_page"`
|
|
LimitMb int `yaml:"limit_mb" json:"limit_mb"`
|
|
StripFirstDirectoryFromToc bool `yaml:"strip_first_directory" json:"strip_first_directory"`
|
|
SortPathMode int `yaml:"sort_path_mode" json:"sort_path_mode"`
|
|
Image Image `yaml:"image" json:"image"`
|
|
|
|
// Other
|
|
Dry bool `yaml:"-" json:"dry"`
|
|
DryVerbose bool `yaml:"-" json:"dry_verbose"`
|
|
Quiet bool `yaml:"-" json:"-"`
|
|
Json bool `yaml:"-" json:"-"`
|
|
Workers int `yaml:"-" json:"workers"`
|
|
}
|
|
|
|
func (o EPUBOptions) WorkersRatio(pct int) (nbWorkers int) {
|
|
nbWorkers = o.Workers * pct / 100
|
|
if nbWorkers < 1 {
|
|
nbWorkers = 1
|
|
}
|
|
return
|
|
}
|
|
|
|
func (o EPUBOptions) ImgStorage() string {
|
|
return o.Output + ".tmp"
|
|
}
|