benonymus

benonymus

Elixir arc delete file error

Hey I am trying to delete files when the entity from the database is getting deleted following the example from the github page:

     {:ok, path} = ChallengeGroupAvatar.store({challenge_group.avatar, user})
     :ok = ChallengeGroupAvatar.delete({path, user})

but on the first line form these 2 I am getting this error:

no function clause matching in Arc.File.new/1

Why is that the case?
I even tried to do it with no scope, but the same error happens

Most Liked

sneako

sneako

Arc.File.new/1 doesnt have any documentation, but if you look at the source here: arc/lib/arc/file.ex at master · stavro/arc · GitHub
Arc.File.new/1 accepts a binary, a map that looks like %{filename: filename, binary: binary} or a map that looks like %{filename: filename, path: path}, none of which match your input %{file_name: “PICTURETEST.png”, updated_at: ~N[2018-10-24 16:15:58]}

Eiji

Eiji

Your challenge_group.avatar or changed value in UserTeam1Web.Controllers.ChallengeGroupController.delete/2 (I don’t know your code) as in stacktrace contains map with file_name and updated_at keys. Both Arc.Actions.Store.store/2 and Arc.Actions.Url.url/2 requires to have valid parameter for Arc.File.new/1 which are one of:

  1. Remote url - i.e. binary which starts with http
  2. Local url - i.e. any other binary like /path/to/file.extension or relational file path like: ./path/to/file.extension
  3. Map which contains both of two keys: binary and filename
  4. Map which contains both of two keys: filename and path

This means that if you pass map or struct with:

  1. only one of those keys: binary, filename and path then it will fail
  2. all of those keys: binary, filename and path then path key would be ignored

I don’t know your code and structs, so I can’t say what you can pass, because from this part of error:

(arc) lib/arc/file.ex:16: Arc.File.new(%{file_name: “PICTURETEST.png”, updated_at: ~N[2018-10-24 16:15:58]})

I can see that you are passing only file_name and updated_at, so what you need to do is:

  1. Use file_name and pass it in remote url
    like: http://my.domain/path/to/#{challenge_group.avatar.file_name}

  2. Use file_name and pass it in local url
    like: /path/to/#{challenge_group.avatar.file_nam}
    or:   ./path/to/#{challenge_group.avatar.file_name}

  3. Use File.read/1 or File.read!/1 to get content of file and pass it in binary key, remove not needed updated_at key and change key file_name to filename

  4. Get path to file you are trying to reference with file_name, remove not needed updated_at key and change key file_name to filename

Where Next?

Popular in Questions Top

aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
shahryarjb
Hello, I get Persian date from my client and convert it to normal calendar like this: def jalali_string_to_miladi_english_number(persi...
New
JulienCorb
I am trying to implement my new.html.eex file to create new posts on my website. new.html.eex: <h1>Create Post</h1> <%= ...
New
script
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this "1000" What is the ...
New
nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
komlanvi
Hi everyone, I was playing with phoenix liveView but I run into an issue. I have a form and want to validate each input text when the te...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New

Other popular topics Top

albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
AstonJ
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
jononomo
I am trying to figure out how Mix knows whether the environment is test, dev, or prod – where is this set? Thanks.
New
AngeloChecked
What learn first? Rust or Elixir Hi Elixir community! I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
PeterCarter
There are pre-rolled solutions for other frameworks that do work. However, Phoenix does not seem to have these. Have people had good expe...
New
AstonJ
Seen any cool LiveView demos, sample apps or examples? Please post them here! :003:
New

We're in Beta

About us Mission Statement