1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
package config
import (
"encoding/json"
"fmt"
"log/slog"
"os"
"github.com/go-playground/validator/v10"
)
type Config struct {
Input InputConfig `json:"Input" validate:"required"`
Converters []ConverterConfig `json:"Converters" validate:"required"`
MaxProcessThreads int `json:"MaxProcessThreads" validate:"required,min=1"`
MaxPreProcessThreads int `json:"MaxPreProcessThreads" validate:"min=1;gtefield=MaxProcessThreads"`
LogLevel slog.Level `json:"LogLevel" validate:"required"`
}
type InputConfig struct {
Storage InputStorageConfig `json:"Storage" validate:"required"`
KnownExtensions []string `json:"KnownExtensions" validate:"required,min=0,dive,min=1"`
CacheProcessed bool `json:"CacheProcessed"`
CacheProcessedCsvPath string `json:"CacheProcessedCsvPath" validate:"filepath"`
}
type InputStorageConfig struct {
Type string `json:"Type" validate:"required,oneof=b2 s3 local-unix"`
Config any `json:"Config" validate:"required"`
}
func (sc *InputStorageConfig) UnmarshalJSON(data []byte) error {
var tmp struct {
Type string `json:"Type"`
Config json.RawMessage `json:"Config"`
}
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
sc.Type = tmp.Type
switch tmp.Type {
case "b2":
var b2Config B2Config
if err := json.Unmarshal(tmp.Config, &b2Config); err != nil {
return fmt.Errorf("unmarshal B2Config: %w", err)
}
sc.Config = &b2Config
case "s3":
var s3Config S3Config
if err := json.Unmarshal(tmp.Config, &s3Config); err != nil {
return fmt.Errorf("unmarshal S3Config: %w", err)
}
sc.Config = &s3Config
case "local-unix":
var localUnixConfig InputLocalUnixConfig
if err := json.Unmarshal(tmp.Config, &localUnixConfig); err != nil {
return fmt.Errorf("unmarshal LocalUnixConfig: %w", err)
}
sc.Config = &localUnixConfig
default:
return fmt.Errorf("unsupported storage type: %s", tmp.Type)
}
return nil
}
type ConverterConfig struct {
Type string `json:"Type" validate:"required,oneof=webp jpeg"`
Config any `json:"Config" validate:"required"`
Output OutputConfig `json:"Output" validate:"required"`
}
func (pc *ConverterConfig) UnmarshalJSON(data []byte) error {
var tmp struct {
Type string `json:"Type"`
Config json.RawMessage `json:"Config"`
Output OutputConfig `json:"Output"`
}
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
pc.Type = tmp.Type
pc.Output = tmp.Output
switch tmp.Type {
case "webp":
var webpConfig WebpConfig
if err := json.Unmarshal(tmp.Config, &webpConfig); err != nil {
return fmt.Errorf("unmarshal WebpConfig: %w", err)
}
pc.Config = &webpConfig
case "jpeg":
var jpegConfig JpegConfig
if err := json.Unmarshal(tmp.Config, &jpegConfig); err != nil {
return fmt.Errorf("unmarshal JpegConfig: %w", err)
}
pc.Config = &jpegConfig
default:
return fmt.Errorf("unsupported storage type: %s", tmp.Type)
}
return nil
}
type WebpConfig struct {
Quality int `json:"Quality" validate:"required,min=1,max=100"`
Size SizeConfig `json:"Size"`
}
type JpegConfig struct {
ExtensionName string `json:"ExtensionName" validate:"alpha"`
Quality int `json:"Quality" validate:"required,min=1,max=100"`
Size SizeConfig `json:"Size"`
}
type SizeConfig struct {
MaxWidth int `json:"MaxWidth"`
MaxHeight int `json:"MaxHeight"`
}
type OutputStorageConfig struct {
Type string `json:"Type" validate:"required,oneof=b2 s3 local-unix"`
Config any `json:"Config" validate:"required"`
}
func (sc *OutputStorageConfig) UnmarshalJSON(data []byte) error {
var tmp struct {
Type string `json:"Type"`
Config json.RawMessage `json:"Config"`
}
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
sc.Type = tmp.Type
switch tmp.Type {
case "b2":
var b2Config B2Config
if err := json.Unmarshal(tmp.Config, &b2Config); err != nil {
return fmt.Errorf("unmarshal B2Config: %w", err)
}
sc.Config = &b2Config
case "s3":
var s3Config S3Config
if err := json.Unmarshal(tmp.Config, &s3Config); err != nil {
return fmt.Errorf("unmarshal S3Config: %w", err)
}
sc.Config = &s3Config
case "local-unix":
var localUnixConfig OutputLocalUnixConfig
if err := json.Unmarshal(tmp.Config, &localUnixConfig); err != nil {
return fmt.Errorf("unmarshal LocalUnixConfig: %w", err)
}
sc.Config = &localUnixConfig
default:
return fmt.Errorf("unsupported storage type: %s", tmp.Type)
}
return nil
}
type B2Config struct {
BucketName string `json:"BucketName" validate:"required,min=1"`
Region string `json:"Region" validate:"required,min=1"`
Prefix string `json:"Prefix"`
KeyID string `json:"KeyID"`
ApplicationKey string `json:"ApplicationKey"`
}
type S3Config struct {
BucketName string `json:"BucketName" validate:"required,min=1"`
Region string `json:"Region" validate:"required,min=1"`
Prefix string `json:"Prefix"`
Endpoint string `json:"Endpoint"`
UsePathStyle bool `json:"UsePathStyle"`
AccessKeyID string `json:"AccessKeyID"`
SecretAccessKey string `json:"SecretAccessKey"`
}
type InputLocalUnixConfig struct {
MaxDepth int `json:"MaxDepth" validate:"required,min=0"`
Path string `json:"Path" validate:"required,min=1"`
}
type OutputConfig struct {
RewriteOn string `json:"RewriteOn" validate:"oneof=Never UnequalHashInCache Always"`
Storage OutputStorageConfig `json:"Storage" validate:"required"`
}
type OutputLocalUnixConfig struct {
Path string `json:"Path" validate:"required,min=1,dirpath"`
DirPermissionMode string `json:"DirPermissionMode" validate:"required,min=3"`
FilePermissionMode string `json:"FilePermissionMode" validate:"required,min=3"`
AttributesImplementation string `json:"AttributesImplementation" validate:"required,oneof=xattr none"`
}
func LoadConfig(path string, config *Config) error {
fileBytes, err := os.ReadFile(path)
if err != nil {
return err
}
expandedFileBytes := []byte(os.ExpandEnv(string(fileBytes)))
if err = json.Unmarshal(expandedFileBytes, config); err != nil {
return err
}
for i := range config.Converters {
if config.Converters[i].Output.RewriteOn == "" {
config.Converters[i].Output.RewriteOn = "UnequalHashInCache"
}
}
return nil
}
func InitConfig(path string) (*Config, error) {
config := &Config{}
if err := LoadConfig(path, config); err != nil {
return nil, err
}
validate := validator.New(validator.WithRequiredStructEnabled())
if err := validate.Struct(config); err != nil {
return nil, err
}
return config, nil
}
|