travisf

travisf

I have a record where users can provide an optional slug which is a unique_index to provide a friendly name for the URL, how can I go about using this slug if it’s defined otherwise falling back to the resource’s UUID?

live "/records/:id", RecordsLive.Show

IE: live/records/slug-is-defined or live/records//77?

First 10 of 11 Posts Switch mode

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Hey @travisf you’d simply do something like instead of:

Thing |> where([t], t.id == ^params.id) |> Repo.one

you

Thing |> where([t], t.id == ^params.id or t.slug == ^params.id) |> Repo.one
ibarch

ibarch

Ecto will likely raise an error if you try to cast a plain string as UUID so I suggest to determine the datatype on the application level:

live "/records/:opaque_id", RecordsLive.Show

def get_record(opaque_id) do
  Record
  |> where(^opaque_id_to_query(opaque_id))
  |> Repo.one()
end

defp opaque_id_to_query(opaque_id) do
  cond do
    match?({_, ""}, Integer.parse(opaque_id)) -> [id: opaque_id]
    match?({:ok, _}, Ecto.UUID.cast(opaque_id)) -> [uuid: opaque_id]
    true -> [slug: opaque_id]
  end
end
sodapopcan

sodapopcan

Maybe my understanding is off but doesn’t using or on different fields cause index not to be used for the second field? Would it not be faster to do a lookup on one then the other?

Repo.get(Thing, id: slug_or_id) || Repo.get(Thing, slug: slug_or_id)

Or does Ecto optimize this?

csadewa

csadewa

Not necessarily, using or on different field with index usually result in query optimizer combine these two different index in bitwise or operation. Usually it’s not faster to do lookup one then the other because it cause two DB request network latency.

sodapopcan

sodapopcan

Oh interesting. What my my old colleague going on about then? lol. I tried an explain with an OR on the same column and it still gave me a sequence scan, so I guess I don’t understand like I thought I did and I have some more RTFMing to do.

travisf

travisf OP

Ah, so you’d recommend implementing get_record/1 when the record is saved/updated and then using that field as the param in the route?

travisf

travisf OP

This makes sense, but how does that translate into the route? Like if I had a list of Things what would I put in the Routes.live_path/3 as a param?

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Can you elaborate what you mean? Are you trying to have a route that contains many ids / slugs ? Or a list of different links each with its own id / slug ?

travisf

travisf OP

Sorry that wasn’t clear, I was just unsure of how your solution would translate into Routes.live_path(@socket, MyAppWeb.ThingsLive.Show, ??) that’s where I was confused if either the id or the slug would work as a param there.

sodapopcan

sodapopcan

Have a look at Phoenix.Param. You could do something like:

defimpl Phoenix.Param, for: YourApp.SomeContext.SomeSchema do
  def to_param(schema) do
    Map.get(schema, :slug, schema.id)
  end
end

To offer some unsolicited advice, I think it’ll be far less of a headache in the future if you make slugs non-nullable fields and auto-generate them based off of some other field as to not force users to specify one. Take it or leave it, of course!

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement