LauraBeatris
Recommend patterns for enum runtime validation
Disclaimer: I’m still a beginner when it comes to Elixir data types, so my apologies if the question sounds “silly”
Is there a recommended pattern for enum runtime validation in Elixir? For instance, the function above receives an argument called “intent” which can be only the following string values: ["sso", "dsync", "audit_logs", "log_streams"]
Is it possible to avoid even calling the function if the intent is not supported? Not sure if pattern matching could be used for that case?
def generate_link(params, opts) when is_map_key(params, :organization) and is_map_key(params, :intent) do
query = process_params(params, [:intent, :organization, :return_url, :success_url])
post("/portal/generate_link", query, opts)
end
Marked As Solved
cmo
def generate_link(%{intent: intent, organisation: _} = params, opts)
when intent in ["sso", "dsync", "audit_logs", "log_streams"] do
query = process_params(params, [:intent, :organization, :return_url, :success_url])
post("/portal/generate_link", query, opts)
end
The list in the guard needs to be a compile time list.
You can use a module attribute, i.e. @intents ~w[sso dsync audit_logs log_streams] if it is used in multiple places, or create a guard (see defguard) if the guard is used in multiple places.
4
Popular in Questions
I am constructing a JSON object (map) and I need to conditionally set a field. I’m trying to write proper elixir-way code… and I’m at a l...
New
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1]
15:22:35.803 [error] gen_event {lager_file_backend...
New
i’m a new one to elixir
which editor can i use
vs code? or atom?
Thanks! :smiley:
New
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
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
Hey all, just started picking up Elixir last week and am writing a scraper as a learning project.
Baby step #1 is extracting the number ...
New
I’m currently trying to understand how to join three tables using Ecto. All the examples I’ve seen use 2, so maybe I’m just missing somet...
New
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
Mix format works fine if run from the cmd. I’ve followed this to facilitate the implementation into VSC which involves downloading an ext...
New
Given a string, how can I get access to its character by index? Enum.at("my_string", 2) doesn't work.
Or rather, not char, but a substr...
New
Other popular topics
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
Hello!
Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
I would like to know what is the best IDE for elixir development?
New
Hi folks,
Few months ago I have announced the proof-of-concept of the library to manipulate the browsers DOM objects directly from Elixi...
New
As a follow up to my earlier question:
I have the code compiling and running but not getting a successful login from the rest server. ...
New
As many of you may have realized by now (sorry for all the posts here) I’ve been working on a db problem where I’m trying to aggregate a ...
New
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible.
total = 10
while total != 0
...
New
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including.
What is Phoenix LiveV...
New
Elixir appears to be a superior language to Python. I don’t see any advantage of Python over Elixir. Are there any?
New







