* Always return Last-Modified and support If-Modified-Since.
* IMGPROXY_USE_LAST_MODIFIED config setting.
IMGPROXY_USE_LAST_MODIFIED (default false) when enabled will return the
Last-Modified time of the upstream image and also allow the support of
the If-Modified-Since request header (returning a 304 if the image
hasn't been modified).
If-Modified-Since allows If-None-Match to take precedence.
* Fixes based on DarthSim's feedback.
1. Don't worry about nil maps.
2. Fix a test now that we use the config.LastModifiedEnabled (and move
it's location it he test file to a more sane place).
3. Update GCS transport code based on the refactoring of DarthSim.
In this iteration, we pull the Updated time from the GCS object attributes
and format them as a string. We then parse it in the notmodified module.
Seems a bit silly to do it this way. If we agree on the approach here,
then AWS and Azure can follow.
* Support azure, fs, s3, and swift.
* Grab the headers for If-Modified-Since and Last-Modified before parsing them.
* Add tests for last-modified for fs.
* Support Last-Modified being passed when streaming an upstream file.
* Tests for Last-Modified for GCS and Azure
* Support s3 and swift tests. Sadly fakes3 doesn't support Last-Modified
* Test against forked gofakes3
* Add OpenStack Swift support
* Fix linting errors
* Update CHANGELOG
* Update swift documentation
* Fix linting error
* Swift transport: pass req.Context down, fix parseObjectURL() implementation
* Make swift transport test a test suite
* Use swift://{container}/{object_path} as the source image URL format
* Cleanup
* Swift transport: only close object when returning 304
* add config fallback ttl to avoid default ttl when fallback response
* Update docs/configuration.md
Co-authored-by: Sergey Alexandrovich <DarthSim@users.noreply.github.com>
* move FallbackTTL to loadFallbackImage
* rewrite ifelse
* Update imagedata/image_data.go
don't use config.FallbackTTL on header to get TTL on the response
Co-authored-by: Sergey Alexandrovich <DarthSim@users.noreply.github.com>
* Update processing_handler.go
don't use config.FallbackTTL on header to get TTL on the response
Co-authored-by: Sergey Alexandrovich <DarthSim@users.noreply.github.com>
* rename FallbackTTL to FallbackImageTTL
* Update processing_handler.go
* Fix linter errors
Co-authored-by: Sergey Alexandrovich <DarthSim@users.noreply.github.com>