mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-04-01 20:34:23 +02:00
* Implements processing option to control meta stripping * Update based on code review comments Change name of option to "stripmeta" and change how we handle config vs request setting logic * Fix indentation style typo * Fix indentation style typo * Use full metadata naming for config and variables Co-authored-by: John Koehl <johnk@zillowgroup.com> Co-authored-by: John Koehl <jkoehl>
This commit is contained in:
parent
bb695fa2c4
commit
616ec996b3
@ -428,6 +428,17 @@ It's highly recommended to prefer `cachebuster` option over URL query string bec
|
|||||||
|
|
||||||
Default: empty
|
Default: empty
|
||||||
|
|
||||||
|
#### Strip Metadata
|
||||||
|
|
||||||
|
```
|
||||||
|
strip_metadata:%strip_metadata
|
||||||
|
sm:%strip_metadata
|
||||||
|
```
|
||||||
|
|
||||||
|
When set to `1`, `t` or `true`, imgproxy will strip the metadata (EXIF, IPTC, etc.) on JPEG and WebP output images. Normally this is controlled by the [IMGPROXY_STRIP_METADATA](configuration.md#miscellaneous) configuration but this procesing option allows the configuration to be set for each request.
|
||||||
|
|
||||||
|
Default: `false`
|
||||||
|
|
||||||
#### Filename
|
#### Filename
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -639,7 +639,7 @@ func saveImageToFitBytes(po *processingOptions, img *vipsImage) ([]byte, context
|
|||||||
img.CopyMemory()
|
img.CopyMemory()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
result, cancel, err := img.Save(po.Format, quality, conf.StripMetadata)
|
result, cancel, err := img.Save(po.Format, quality, po.StripMetadata)
|
||||||
if len(result) <= po.MaxBytes || quality <= 10 || err != nil {
|
if len(result) <= po.MaxBytes || quality <= 10 || err != nil {
|
||||||
return result, cancel, err
|
return result, cancel, err
|
||||||
}
|
}
|
||||||
@ -767,5 +767,5 @@ func processImage(ctx context.Context) ([]byte, context.CancelFunc, error) {
|
|||||||
return saveImageToFitBytes(po, img)
|
return saveImageToFitBytes(po, img)
|
||||||
}
|
}
|
||||||
|
|
||||||
return img.Save(po.Format, po.Quality, conf.StripMetadata)
|
return img.Save(po.Format, po.Quality, po.StripMetadata)
|
||||||
}
|
}
|
||||||
|
@ -126,23 +126,24 @@ type watermarkOptions struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type processingOptions struct {
|
type processingOptions struct {
|
||||||
ResizingType resizeType
|
ResizingType resizeType
|
||||||
Width int
|
Width int
|
||||||
Height int
|
Height int
|
||||||
Dpr float64
|
Dpr float64
|
||||||
Gravity gravityOptions
|
Gravity gravityOptions
|
||||||
Enlarge bool
|
Enlarge bool
|
||||||
Extend extendOptions
|
Extend extendOptions
|
||||||
Crop cropOptions
|
Crop cropOptions
|
||||||
Padding paddingOptions
|
Padding paddingOptions
|
||||||
Trim trimOptions
|
Trim trimOptions
|
||||||
Format imageType
|
Format imageType
|
||||||
Quality int
|
Quality int
|
||||||
MaxBytes int
|
MaxBytes int
|
||||||
Flatten bool
|
Flatten bool
|
||||||
Background rgbColor
|
Background rgbColor
|
||||||
Blur float32
|
Blur float32
|
||||||
Sharpen float32
|
Sharpen float32
|
||||||
|
StripMetadata bool
|
||||||
|
|
||||||
CacheBuster string
|
CacheBuster string
|
||||||
|
|
||||||
@ -211,22 +212,23 @@ var (
|
|||||||
func newProcessingOptions() *processingOptions {
|
func newProcessingOptions() *processingOptions {
|
||||||
newProcessingOptionsOnce.Do(func() {
|
newProcessingOptionsOnce.Do(func() {
|
||||||
_newProcessingOptions = processingOptions{
|
_newProcessingOptions = processingOptions{
|
||||||
ResizingType: resizeFit,
|
ResizingType: resizeFit,
|
||||||
Width: 0,
|
Width: 0,
|
||||||
Height: 0,
|
Height: 0,
|
||||||
Gravity: gravityOptions{Type: gravityCenter},
|
Gravity: gravityOptions{Type: gravityCenter},
|
||||||
Enlarge: false,
|
Enlarge: false,
|
||||||
Extend: extendOptions{Enabled: false, Gravity: gravityOptions{Type: gravityCenter}},
|
Extend: extendOptions{Enabled: false, Gravity: gravityOptions{Type: gravityCenter}},
|
||||||
Padding: paddingOptions{Enabled: false},
|
Padding: paddingOptions{Enabled: false},
|
||||||
Trim: trimOptions{Enabled: false, Threshold: 10, Smart: true},
|
Trim: trimOptions{Enabled: false, Threshold: 10, Smart: true},
|
||||||
Quality: conf.Quality,
|
Quality: conf.Quality,
|
||||||
MaxBytes: 0,
|
MaxBytes: 0,
|
||||||
Format: imageTypeUnknown,
|
Format: imageTypeUnknown,
|
||||||
Background: rgbColor{255, 255, 255},
|
Background: rgbColor{255, 255, 255},
|
||||||
Blur: 0,
|
Blur: 0,
|
||||||
Sharpen: 0,
|
Sharpen: 0,
|
||||||
Dpr: 1,
|
Dpr: 1,
|
||||||
Watermark: watermarkOptions{Opacity: 1, Replicate: false, Gravity: gravityOptions{Type: gravityCenter}},
|
Watermark: watermarkOptions{Opacity: 1, Replicate: false, Gravity: gravityOptions{Type: gravityCenter}},
|
||||||
|
StripMetadata: conf.StripMetadata,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -848,6 +850,14 @@ func applyFilenameOption(po *processingOptions, args []string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func applyMetaStripmetaOption(po *processingOptions, args []string) error {
|
||||||
|
if len(args[0]) > 0 {
|
||||||
|
po.StripMetadata = parseBoolOption(args[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func applyProcessingOption(po *processingOptions, name string, args []string) error {
|
func applyProcessingOption(po *processingOptions, name string, args []string) error {
|
||||||
switch name {
|
switch name {
|
||||||
case "format", "f", "ext":
|
case "format", "f", "ext":
|
||||||
@ -894,6 +904,8 @@ func applyProcessingOption(po *processingOptions, name string, args []string) er
|
|||||||
return applyCacheBusterOption(po, args)
|
return applyCacheBusterOption(po, args)
|
||||||
case "filename", "fn":
|
case "filename", "fn":
|
||||||
return applyFilenameOption(po, args)
|
return applyFilenameOption(po, args)
|
||||||
|
case "strip_metadata", "sm":
|
||||||
|
return applyMetaStripmetaOption(po, args)
|
||||||
}
|
}
|
||||||
|
|
||||||
return fmt.Errorf("Unknown processing option: %s", name)
|
return fmt.Errorf("Unknown processing option: %s", name)
|
||||||
|
@ -405,6 +405,16 @@ func (s *ProcessingOptionsTestSuite) TestParsePathAdvancedCachebuster() {
|
|||||||
assert.Equal(s.T(), "123", po.CacheBuster)
|
assert.Equal(s.T(), "123", po.CacheBuster)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *ProcessingOptionsTestSuite) TestParsePathAdvancedStripMetadata() {
|
||||||
|
req := s.getRequest("http://example.com/unsafe/strip_metadata:true/plain/http://images.dev/lorem/ipsum.jpg")
|
||||||
|
ctx, err := parsePath(context.Background(), req)
|
||||||
|
|
||||||
|
require.Nil(s.T(), err)
|
||||||
|
|
||||||
|
po := getProcessingOptions(ctx)
|
||||||
|
assert.True(s.T(), po.StripMetadata)
|
||||||
|
}
|
||||||
|
|
||||||
func (s *ProcessingOptionsTestSuite) TestParsePathWebpDetection() {
|
func (s *ProcessingOptionsTestSuite) TestParsePathWebpDetection() {
|
||||||
conf.EnableWebpDetection = true
|
conf.EnableWebpDetection = true
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user