robert
Hi,
I’m trying to use arc to upload to s3, but facing some issues in the road.
Here what happens, if I upload {jpg, png, etc…} I want arc to run some transform on it before saving.
However that’s not the case for a pdf file. Could someone give me some direction?
My goal is to put both validate in a single file
arc: 0.11.0
arc_ecto: 0.11.1
phoenix: 1.4.0
Here is the code:
defmodule Cidades.AnexoUploader do
use Arc.Definition
use Arc.Ecto.Definition
@versions [:original, :thumb, :mini_thumb]
@extension_whitelist ~w(.jpg .jpeg .gif .png .pdf)
#def acl(:thumb, _), do: :public_read
@acl :public_read
def validate({file, _}) do
file_extension = file.file_name |> Path.extname |> String.downcase
Enum.member?(@extension_whitelist, file_extension)
cond do
not (~w(.pdf) |> Enum.member?(Path.extname(file.file_name))) -> transform(:thumb, {file})
(~w(.pdf) |> Enum.member?(Path.extname(file.file_name))) -> {:ok}
end
end
def transform(:thumb, {file, _scope}) do
{:convert, "-strip -thumbnail x500^ -gravity center -extent x500 -format jpg", :jpg}
end
def transform(:mini_thumb, {file, _scope}) do
{:convert, "-strip -thumbnail 200x200^ -gravity center -extent 200x200 -format jpg", :jpg}
end
def filename(version, {_file, _scope}) do
#file_name = Path.basename(file.file_name, Path.extname(file.file_name))
#"#{version}_#{:os.system_time}"
#"#{scope.uuid}_#{version}_#{file_name}"
"#{version}"
end
# Override the storage directory:
def storage_dir(_version, {_file, scope}) do
IO.inspect(scope)
"uploads/#{scope.uuid}"
#"#{String.downcase(scope.tipo)}/#{scope.mun.cnpj}/#{scope.uuid}"
end
# def __storage do
# case Mix.env do
# :dev -> Arc.Storage.Local
# :test -> Arc.Storage.Local
# _ -> Arc.Storage.S3
# end
#delete all versions of an avatar
#def remove(scope) do
# storage_dir(nil, {scope.avatar, scope}) |> File.rm_rf!
#end
# Provide a default URL if there hasn't been a file uploaded
# def default_url(version, scope) do
# "/images/avatars/default_#{version}.png"
# end
# Specify custom headers for s3 objects
# Available options are [:cache_control, :content_disposition,
# :content_encoding, :content_length, :content_type,
# :expect, :expires, :storage_class, :website_redirect_location]
#
# def s3_object_headers(_version, {file, _scope}) do
# [content_type: MIME.from_path(file.file_name)]
# end
end
How can I solve this?
Newcomer to forum, sorry for any miss…
arc, arc_ecto
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
OvermindDL1
First this isn’t doing anything, I think you want to return if it fails or something?
Second, you seem to be calling transform from your validate function, this check should probably belong in the transform functions themselves?
Third, no need to duplicate the test:
Etc to start with.
robert
thank you, I’ll try to use your tips to start with