marisradu
Disclaimer: I’m new (still learning) elixir.
Can’t figure how to DRY this code out, I would like to capture the “message” from all blocks and then send the response and halt the connection.
Original code:
def call(conn, _) do
case some_function(conn) do
{:ok, response} ->
put_private(conn, :my_app, %{my_key: response})
{:error, :error_1 ->
conn
|> put_resp_content_type("application/json")
|> send_resp(403, "Message for error 1")
|> halt
{:error, :error_2} ->
conn
|> put_resp_content_type("application/json")
|> send_resp(403, "Message for error 2")
|> halt
_ ->
conn
|> put_resp_content_type("application/json")
|> send_resp(403, "Generic message")
|> halt
end
end
I wanted to put everything in a with statement like:
with {:ok, response} <- some_function(conn) do
put_private(conn, :my_app, %{my_key: response})
else
{:error, :error_1} ->
message = "Message for error 1"
{:error, :error_2} ->
message = "Message for error 2"
_ ->
message = "Generic message"
end
I’m pretty sure there is a better way to capture the “message” and also not sure where to put the “response” as inside the “else” clause will need to put it for all clauses, outside will also be triggered if there is no error.
conn
|> put_resp_content_type("application/json")
|> send_resp(403, message)
|> halt
Any hint or constructive criticism in case you think I’m going in the wrong direction will be appreciated.
Thanks.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










First Post!- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
LostKobrakai
Using
withwas already a good idea, but sometimes just using one flow control type is just not enough:Most Liked
mbuhot
When in doubt, use more functions
idi527
I don’t see much reason to use
withwhen a flatcasewould be enough (as in your case).LostKobrakai
I’m mostly of the same opinion, but
withmight communicate a bit more the monad-like success/error railway-ing whilecaseis a bit more “equal cases” in it’s semantics. Especially in plugs where one branch does halt the pipeline I see myself more drawn to usingwith.Last Post!
idi527
That’s a really nice way to think about it.