greyhwndz

greyhwndz

Hello everyone!

Can somebody help me understanding the following…

Why is it that:

mydata = %{id: user.id, email: user.email, username: user.username}
IO.inspect mydata
jwt = %{data: mydata, sub: user.id}

results in

iex(1)> %{email: "maria@hello.com", id: 4, username: "maria"}

while:

mydata = %{id: user.id, email: user.email, username: user.username}
jwt = %{data: mydata, sub: user.id}
IO.inspect mydata

results in

iex(1)> {:ok,
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.B0QRhfQku78gSaxGoC8sxcKVL1wScNCAQGU_lzV4sQ8",
 %{}}

Showing Posts 1 to 10

NobbZ

NobbZ

Because you are not showing full code? Perhaps do everything in an iex session.

hauleth

hauleth

It seems that there is something happening in the meantime. Could you provide us with Minimal Complete and Verifiable Example? Because right now I can say that “it works on my machine”

greyhwndz

greyhwndz OP

@NobbZ, @hauleth
My actual problem that led me to debugging that is the following line:
https://github.com/greyhwndz/library_api/blob/master/lib/library_api_web/controllers/session_controller.ex#L12
should return me a token after Postman POST

{
	"email": "juan@hello.com",
	"password": "asdf"
}

to http://localhost:4000/api/session

However, it falls into the rescue section that is why I tried debugging my render view

hauleth

hauleth

This is neither minimal nor verifiable example. I still do not get where you put that inspect nor what are the types you are inspecting.

greyhwndz

greyhwndz OP

Am sorry @hauleth for being a newbie.
I guess I will try to re-create a new thread and re-phrase my problem. Thanks for the guidance

alfredfriedrich

alfredfriedrich

That is a JWT Token, paste it on jwt.io, but there’s no data inside. So I would guess you are using a JWT token library between your assignment and your IO.inspect.

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

No need to do this, just update here with more information and we’ll be able to provide a more detailed answer.

greyhwndz

greyhwndz OP

Ok @benwilson512. trying now…

greyhwndz

greyhwndz OP

@benwilson512, @NobbZ, @hauleth

I have the following code in lib/library_api/library.ex

...
  def get_user_by_email!(email), do: Repo.get_by!(User, email: email)
...

and in my SessionController lib/library_api_web/controllers/session_controller.ex

defmodule LibraryApiWeb.SessionController do
  use LibraryApiWeb, :controller
  alias LibraryApi.Library
  #alias LibraryApi.Library.User

  def create(conn, %{"email" => email, "password" => _password}) do
    case Library.get_user_by_email!(email) do
      {:ok, user} ->
        conn
        |> put_view(LibraryApiWeb.SessionView)
        |> render("token.json", user: user)
      {:error, _reason} ->
        conn
        |> put_status(:unauthorized)
        |> put_view(LibraryApiWeb.ErrorView)
        |> render("401.json-api", %{detail: "Error logging in a user with that email and password"})
    end
  end
end

and in my SessionView: lib/library_api_web/views/session_view.ex

defmodule LibraryApiWeb.SessionView do
  use LibraryApiWeb, :view
  #import Joken.Config

  def render("token.json", %{user: user}) do
    mydata = %{id: user.id, email: user.email, username: user.username}
    jwt = %{data: mydata, sub: user.id}
    |> Joken.generate_and_sign(Joken.Signer.create("HS512", "SOMESECRETVALUE"))
    %{token: jwt.token}
  end
end

In my database I already was able have the following data:

{
	"data": {
		"type": "users",
		"attributes": {
			"email": "maria@hello.com",
			"username": "maria",
			"password": "asdf",
			"password_confirmation": "asdf"
		}
	}
}

NOTE: password & password_confirmation are virtual fields

Using Postman, I am trying to POST to http://localhost:4000/api/session the ff. data:

{
	"email": "maria@hello.com",
	"password": "asdf"
}

that should return a token.
Instead I encounter the following error in my iex console:

iex(1)> [info] POST /api/session
iex(1)> [debug] Processing with LibraryApiWeb.SessionController.create/2
  Parameters: %{"email" => "maria@hello.com", "password" => "[FILTERED]"}
  Pipelines: [:api]
iex(1)> [debug] QUERY OK source="users" db=0.0ms
SELECT u0."id", u0."email", u0."password_hash", u0."username", u0."inserted_at", u0."updated_at" FROM "users" AS u0 WHERE (u0."email" = $1) ["maria@hello.com"]
iex(1)> [info] Converted error {:case_clause, %LibraryApi.Library.User{__meta__: #Ecto.Schema.Metadata<:loaded, "users">, email: "maria@hello.com", id: 4, inserted_at: ~N[2019-05-12 08:41:18], password: nil, password_confirmation: nil, password_hash: "$2b$12$7qHpuOzPJaJShZoO4DCmAe9K/vHvsGwGPRlVmGzHQUlLkCBpgOZ82", updated_at: ~N[2019-05-12 08:41:18], username: "maria"}} to 500 response
iex(1)> [info] Sent 500 in 109ms
iex(1)> [error] #PID<0.435.0> running LibraryApiWeb.Endpoint (connection #PID<0.434.0>, stream id 1) terminated
Server: localhost:4000 (http)
Request: POST /api/session
** (exit) an exception was raised:
    ** (CaseClauseError) no case clause matching: %LibraryApi.Library.User{__meta__: #Ecto.Schema.Metadata<:loaded, "users">, email: "maria@hello.com", id: 4, inserted_at: ~N[2019-05-12 08:41:18], password: nil, password_confirmation: nil, password_hash: "$2b$12$7qHpuOzPJaJShZoO4DCmAe9K/vHvsGwGPRlVmGzHQUlLkCBpgOZ82", updated_at: ~N[2019-05-12 08:41:18], username: "maria"}
        (library_api) lib/library_api_web/controllers/session_controller.ex:7: LibraryApiWeb.SessionController.create/2
        (library_api) lib/library_api_web/controllers/session_controller.ex:1: LibraryApiWeb.SessionController.action/2
        (library_api) lib/library_api_web/controllers/session_controller.ex:1: LibraryApiWeb.SessionController.phoenix_controller_pipeline/2
        (library_api) lib/library_api_web/endpoint.ex:1: LibraryApiWeb.Endpoint.instrument/4
        (phoenix) lib/phoenix/router.ex:275: Phoenix.Router.__call__/1
        (library_api) lib/library_api_web/endpoint.ex:1: LibraryApiWeb.Endpoint.plug_builder_call/2
        (library_api) lib/library_api_web/endpoint.ex:1: LibraryApiWeb.Endpoint.call/2
        (phoenix) lib/phoenix/endpoint/cowboy2_handler.ex:33: Phoenix.Endpoint.Cowboy2Handler.init/2
        (cowboy) d:/@@@/@gilbertc77/library_api/deps/cowboy/src/cowboy_handler.erl:41: :cowboy_handler.execute/2
        (cowboy) d:/@@@/@gilbertc77/library_api/deps/cowboy/src/cowboy_stream_h.erl:296: :cowboy_stream_h.execute/3
        (cowboy) d:/@@@/@gilbertc77/library_api/deps/cowboy/src/cowboy_stream_h.erl:274: :cowboy_stream_h.request_process/3

        (stdlib) proc_lib.erl:249: :proc_lib.init_p_do_apply/3
benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

get_user_by_email! returns a %LibraryApi.Library.User{} not {:ok, %LibraryApi.Library.User{}}, so your case in your controller doesn’t match.

Also, you probably know this, but never store user passwords in the database unhashed.

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
Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
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
subsaharancoder
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews