Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow MinioMediaStorage and MinioStaticStorage options to be specified #144

Merged
merged 1 commit into from
Mar 21, 2025

Conversation

brianhelba
Copy link
Contributor

@brianhelba brianhelba commented Mar 10, 2025

This allows MinioMediaStorage or MinioStaticStorage to be given additional options via "OPTIONS" in Django's STORAGES setting (available in Django 4.2+). This is backwards-compatible, as all the added parameters are optional.

This has the benefit of allowing multiple instances of MinioMediaStorage or MinioStaticStorage to be created with slightly different options, which previously was impossible (without creating a base MinioStorage and re-parsing all settings).

Comment on lines -408 to -409
backup_format = get_setting("MINIO_STORAGE_MEDIA_BACKUP_FORMAT", False)
backup_bucket = get_setting("MINIO_STORAGE_MEDIA_BACKUP_BUCKET", False)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note, the previous default value of False violates the allowed type of T.Optional[str] for MinioStorage.backup_format and MinioStorage.backup_bucket. The updated default is now None, which has the same behavior but the correct type.

This allows `MinioMediaStorage` or `MinioStaticStorage` to be given additional
options via `"OPTIONS"` in Django's `STORAGES` setting (available in Django
4.2+). This is backwards-compatible, as all the added parameters are optional.

This has the benefit of allowing multiple instances of `MinioMediaStorage` or
`MinioStaticStorage` to be created with slightly different options, which
previously was impossible (without creating a base `MinioStorage` and
re-parsing all settings).
@brianhelba
Copy link
Contributor Author

The tests are failing due to Pyright errors. Many of these are already broken on master. If @thomasf indicates they're willing to merge my fixes, I'll be happy to go ahead and submit a separate PR to fix the Pyright errors.

Some new Pyright errors are coming from the fact that this PR implicitly narrows the type of parameters. I'm open to suggestions on how to fix this (without making the code even more awkward), but I don't want to put in too much additional effort until it seems like this PR is likely to be merged.

@brianhelba
Copy link
Contributor Author

Ping @thomasf , please let me know if you'll be able to review this, or if there's anyone else with the ability to merge and release on this project.

brianhelba added a commit to ImageMarkup/isic that referenced this pull request Mar 10, 2025
auto_create_policy = get_setting(
def __init__( # noqa: C901
self,
*,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reordering arguments and requiring keyword arguments is an backwards incompatible change and maybe should be mentioned in the (badly maintained) changelog.

I think it should be fine. At least it breaks early if someone is using it with positional arguments now.

@thomasf thomasf merged commit a5f6625 into py-pa:master Mar 21, 2025
3 of 4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants