1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00

Add Filter ActiveStorage Blobs To Only Images as a Rails TIL

This commit is contained in:
jbranchaud
2025-03-08 16:18:44 -06:00
parent 60020d6e0e
commit ddf1c51fd9
2 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
# Filter ActiveStorage Blobs To Only Images
If your Rails app is using `ActiveStorage` for both images and ActionMailbox
emails, then you're going to have a mix of both in the `active_storage_blobs`
table.
```sql
> select id, filename, content_type from active_storage_blobs limit 2;
| id | filename | content_type |
|----|--------------------|----------------|
| 1 | shirt-brothers.jpg | image/jpeg |
| 2 | message.eml | message/rfc822 |
```
In that case, you are going to want to make sure that any part of your system
that only cares to deal with images filters down to only blobs where the
`content_type` is one that you care about.
I expect that there might be a couple different image `content_type` values
that my system handles, so I filter my `active_storage_blobs` like so:
```ruby
@images =
ActiveStorage::Blob
.where(content_type: %w[image/jpeg image/png image/gif image/webp])
.order(created_at: :desc)
.first(10)
```