bairav

bairav

we are trying to use firebase authentication with phoenix framework, but we failed to pass the session cookie to the browser, using Guardian library.

login page:

  <form id="login">
      <label>Email</label>
      <input type="text" name="email">

      <label>Password</label>
      <input type="password" name="password">

      <button type="submit">Log in</button>
  </form>

<script>
  window.addEventListener("DOMContentLoaded", () => {
      // For Firebase JS SDK v7.20.0 and later, measurementId is optional
      // Initialize Firebase
      firebase.initializeApp(firebaseConfig);
      firebase.auth().setPersistence(firebase.auth.Auth.Persistence.NONE);

      document
          .getElementById("login")
          .addEventListener("submit", (event) => {
              event.preventDefault();
              const email = event.target.email.value;
              const password = event.target.password.value;

              firebase
                  .auth()
                  .signInWithEmailAndPassword(email, password)
                  .then(({ user }) => {
                      console.log(user)
                      return user.getIdToken().then((idToken) => {
                          return fetch("/api/sessionlogin", {
                              method: "POST",
                              headers: {
                                  Accept: "application/json",
                                  "Content-Type": "application/json",
                                  "CSRF-Token": Cookies.get("XSRF-TOKEN")                        
                              },
                              body: JSON.stringify({ idToken }),
                          });
                      });
                  })
                  .then(() => {
                    return firebase.auth().signOut();
                  })
                  .then(() => {
                    window.location.assign("/dashboard");
                      
                  });
              return false;
          });
  });
</script>

controller:

  def session_login(conn, %{"idToken" => token}) do
    {:ok, claims} = ExFirebaseAuth.Token.verify_token(token)
    conn    
    |> Guardian.Plug.sign_in(claims)
    |> json(%{state: "success"})    
  end

pipeline:

defmodule FB.Auth.Pipeline do
  use Guardian.Plug.Pipeline,
    otp_app: :fb,
    error_handler: FB.Auth.ErrorHandler,
    module: FB.Auth.Guardian

  plug Guardian.Plug.VerifySession, claims: %{"typ" => "access"}
  plug Guardian.Plug.VerifyHeader, claims: %{"typ" => "access"}
  plug Guardian.Plug.LoadResource, allow_blank: true
end	

router:

  pipeline :browser do
    plug :accepts, ["html"]
    plug :fetch_session
    plug :fetch_flash
    plug :protect_from_forgery
    plug :put_secure_browser_headers
  end

  pipeline :api do
    plug :accepts, ["json"]
  end
  
  pipeline :auth do
    plug FB.Auth.Pipeline
  end
  
  
    scope "/", FBWeb do
    pipe_through [:browser]

		get "/", PageController, :index
		post "/logout", PageController, :logout
    end
	
	scope "/", FBWeb do
    pipe_through [:browser, :auth]

		get "/dashboard", PageController, :dashboard
    end
	
	scope "/api", FBWeb do
    pipe_through [:api]
     post "/sessionlogin", PageController, :session_login
    end
	

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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews