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

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
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
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews