yeroc
Hi all!
Trying to follow along with this and hitting an error I cant figure out. When we first get to testing %Plug.Upload{} in IEx after implementing the create_upload_from_plug_upload fn, I’m getting a function clause error.
If I understand the logs, apparently I’m giving a nil value to Upload.local_path(). I’m not sure how to rectify this, as I can’t figure out how I’m giving a nil value. Is my upload.id value nil for File.cp/2 ? I don’t understand how if so.
I’ve followed the tutorial up to this point without any issues and my code is identical. Thanks for any help!
Here is the full error -
<code>iex(3)> Documents.create_upload_from_plug_upload(upload)
[debug] QUERY OK db=13.9ms idle=487.9ms
begin []
↳ :erl_eval.do_apply/7, at: erl_eval.erl:744
[debug] QUERY OK db=2.9ms
INSERT INTO "uploads" ("content_type","filename","hash","size","inserted_at","updated_at") VALUES ($1,$2,$3,$4,$5,$6) RETURNING "id" ["image/png", "phoenix.png", "07aa9b01595fe10fd4e5ceb6cc67ba186ef8ce91e5a5cba47166f7d8498d7852", 13900, ~N[2022-11-16 07:26:37], ~N[2022-11-16 07:26:37]]
↳ anonymous fn/4 in Woof.Documents.create_upload_from_plug_upload/1, at: lib/woof/documents.ex:25
[debug] QUERY OK db=0.3ms
rollback []
↳ :erl_eval.do_apply/7, at: erl_eval.erl:744
** (FunctionClauseError) no function clause matching in IO.chardata_to_string/1
The following arguments were given to IO.chardata_to_string/1:
# 1
nil
Attempted function clauses (showing 2 out of 2):
def chardata_to_string(string) when is_binary(string)
def chardata_to_string(list) when is_list(list)
(elixir 1.13.4) IO.chardata_to_string/1
(elixir 1.13.4) lib/path.ex:538: Path.join/2
(elixir 1.13.4) lib/path.ex:509: Path.join/1
(woof 0.1.0) lib/woof/documents.ex:26: anonymous fn/4 in Woof.Documents.create_upload_from_plug_upload/1
(ecto_sql 3.9.0) lib/ecto/adapters/sql.ex:1190: anonymous fn/3 in Ecto.Adapters.SQL.checkout_or_transaction/4
(db_connection 2.4.2) lib/db_connection.ex:1562: DBConnection.run_transaction/4</code>
And my relevant code-
lib.woof.documents.ex
defmodule Woof.Documents do
import Ecto.Query, warn: false
alias Woof.Repo
alias Woof.Documents.Upload
def create_upload_from_plug_upload(%Plug.Upload{
filename: filename,
path: tmp_path,
content_type: content_type
}) do
hash =
File.stream!(tmp_path, [], 2048)
|> Upload.sha256()
with {:ok, %File.Stat{size: size}} <- File.stat(tmp_path),
{:ok, upload} <-
%Upload{}
|> Upload.changeset(%{
filename: filename,
content_type: content_type,
hash: hash,
size: size
})
|> Repo.insert(),
:ok <-
File.cp(
tmp_path,
Upload.local_path(upload.id, filename)
) do
{:ok, upload}
else
{:error, reason} = error -> error
end
end
end
lib.woof.documents.upload.ex
defmodule Woof.Documents.Upload do
use Ecto.Schema
import Ecto.Changeset
schema "uploads" do
field :content_type, :string
field :filename, :string
field :hash, :string
field :size, :integer
timestamps()
end
@doc false
def changeset(upload, attrs) do
upload
|> cast(attrs, [:filename, :size, :content_type, :hash])
|> validate_required([:filename, :size, :content_type, :hash])
|> validate_number(:size, greater_than: 0)
|> validate_length(:hash, is: 64)
end
def sha256(chunks_enum) do
chunks_enum
|> Enum.reduce(
:crypto.hash_init(:sha256),
&:crypto.hash_update(&2, &1)
)
|> :crypto.hash_final()
|> Base.encode16()
|> String.downcase()
end
def upload_directory do
Application.get_env(:woof, :uploads_directory)
end
def local_path(id, filename) do
[upload_directory(), "#{id}-#{filename}"]
|> Path.join()
end
end
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Hi there! :wave:
@frigidcode and I (but mostly him) have been running an Elixir Book club, we’re almost done with Designing Elixir Syste...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
The error you’re getting is what I’d expect if
upload_directory()returnednil- ifidorfilenamewasnil, the"#{id}-#{filename}"part wouldn’t let those values get toPath.join.yeroc
I definitely track with that. I can successfully write the first upload with the front end, writing to the temporary uploads directory. So I clearly have a
filename, but not anid. Don’t know why I’m missing thatid.