Last active
August 14, 2024 04:19
-
-
Save munierujp/e7dc02a0ec11559f9975350c9adbb065 to your computer and use it in GitHub Desktop.
Echo's middleware for Firebase Authentication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package middleware | |
import ( | |
"context" | |
"strings" | |
"github.com/labstack/echo/v4" | |
firebase "firebase.google.com/go" | |
"google.golang.org/api/option" | |
) | |
func Auth() echo.MiddlewareFunc { | |
return auth | |
} | |
func auth(next echo.HandlerFunc) echo.HandlerFunc { | |
return func(c echo.Context) error { | |
opt := option.WithCredentialsFile("firebase_secret_key.json") | |
app, err := firebase.NewApp(context.Background(), nil, opt) | |
if err != nil { | |
return err | |
} | |
client, err := app.Auth(context.Background()) | |
if err != nil { | |
return err | |
} | |
auth := c.Request().Header.Get("Authorization") | |
idToken := strings.Replace(auth, "Bearer ", "", 1) | |
token, err := client.VerifyIDToken(context.Background(), idToken) | |
if err != nil { | |
return err | |
} | |
c.Set("token", token) | |
return next(c) | |
} | |
} |
Thanks, It was helpful.
@nidhish1 Glad I could help 😄
🙏 thank you for this
@vectorman1 It's been a long time since I've been away from Go, but I'm glad to be of service.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage