Working Auth0 on site
This commit is contained in:
@@ -22,7 +22,6 @@ app.use(function (req, res, next) {
|
||||
res.header("Access-Control-Allow-Origin", "*");
|
||||
res.header("Access-Control-Allow-Methods", "*");
|
||||
res.header("Access-Control-Allow-Headers", "*");
|
||||
res.header("x-powered-by", "serverless-express");
|
||||
next();
|
||||
});
|
||||
|
||||
@@ -78,9 +77,7 @@ app.get(`/*`, (req, res) => {
|
||||
*/
|
||||
app.use(function (err, req, res, next) {
|
||||
console.error(err);
|
||||
res
|
||||
.status(500)
|
||||
.json({ error: `Internal Serverless Error - "${err.message}"` });
|
||||
res.status(500).json({ error: `Internal Server Error - "${err.message}"` });
|
||||
});
|
||||
|
||||
module.exports = app;
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
const StrategyJWT = require("passport-jwt").Strategy;
|
||||
const ExtractJWT = require("passport-jwt").ExtractJwt;
|
||||
|
||||
const { users } = require("../models");
|
||||
const { comparePassword } = require("../utils");
|
||||
|
||||
module.exports = (passport) => {
|
||||
const options = {};
|
||||
|
||||
@@ -55,7 +55,6 @@ const register = async (user = {}) => {
|
||||
* Get user by email address
|
||||
* @param {string} email
|
||||
*/
|
||||
|
||||
const getByEmail = async (email) => {
|
||||
// Validate
|
||||
if (!email) {
|
||||
@@ -86,7 +85,6 @@ const getByEmail = async (email) => {
|
||||
* Get user by id
|
||||
* @param {string} id
|
||||
*/
|
||||
|
||||
const getById = async (id) => {
|
||||
// Validate
|
||||
if (!id) {
|
||||
|
||||
@@ -4,7 +4,8 @@
|
||||
"description": "[](https://www.serverless-fullstack-app.com)",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"format": "prettier --write ."
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -14,5 +15,6 @@
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"prettier": "2.4.1"
|
||||
}
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
|
||||
@@ -11,5 +11,8 @@
|
||||
"devDependencies": {
|
||||
"astro": "^0.20.7",
|
||||
"@astrojs/renderer-react": "^0.2.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@auth0/auth0-react": "^1.8.0"
|
||||
}
|
||||
}
|
||||
|
||||
25
site/src/components/AuthTest.jsx
Normal file
25
site/src/components/AuthTest.jsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import React from "react";
|
||||
import { Auth0Provider } from "@auth0/auth0-react";
|
||||
import LoginButton from "./LoginButton";
|
||||
import LogoutButton from "./LogoutButton";
|
||||
import Profile from "./Profile";
|
||||
import ProfileFromApi from "./ProfileFromApi";
|
||||
|
||||
const AuthTest = () => {
|
||||
return (
|
||||
<Auth0Provider
|
||||
domain="dev-b-bgocbi.us.auth0.com"
|
||||
clientId="c5A08v815qx3ySjffHbaUc5b5MPWhRad"
|
||||
redirectUri={window.location.origin}
|
||||
audience="https://dev-b-bgocbi.us.auth0.com/api/v2/"
|
||||
scope="read:current_user update:current_user_metadata"
|
||||
>
|
||||
<LoginButton />
|
||||
<LogoutButton />
|
||||
<Profile />
|
||||
<ProfileFromApi />
|
||||
</Auth0Provider>
|
||||
);
|
||||
};
|
||||
|
||||
export default AuthTest;
|
||||
10
site/src/components/LoginButton.jsx
Normal file
10
site/src/components/LoginButton.jsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import { useAuth0 } from "@auth0/auth0-react";
|
||||
|
||||
const LoginButton = () => {
|
||||
const { loginWithRedirect } = useAuth0();
|
||||
|
||||
return <button onClick={() => loginWithRedirect()}>Log In</button>;
|
||||
};
|
||||
|
||||
export default LoginButton;
|
||||
14
site/src/components/LogoutButton.jsx
Normal file
14
site/src/components/LogoutButton.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from "react";
|
||||
import { useAuth0 } from "@auth0/auth0-react";
|
||||
|
||||
const LogoutButton = () => {
|
||||
const { logout } = useAuth0();
|
||||
|
||||
return (
|
||||
<button onClick={() => logout({ returnTo: window.location.origin })}>
|
||||
Log Out
|
||||
</button>
|
||||
);
|
||||
};
|
||||
|
||||
export default LogoutButton;
|
||||
22
site/src/components/Profile.jsx
Normal file
22
site/src/components/Profile.jsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import React from "react";
|
||||
import { useAuth0 } from "@auth0/auth0-react";
|
||||
|
||||
const Profile = () => {
|
||||
const { user, isAuthenticated, isLoading } = useAuth0();
|
||||
|
||||
if (isLoading) {
|
||||
return <div>Loading ...</div>;
|
||||
}
|
||||
|
||||
return (
|
||||
isAuthenticated && (
|
||||
<div>
|
||||
<img src={user.picture} alt={user.name} />
|
||||
<h2>{user.name}</h2>
|
||||
<p>{user.email}</p>
|
||||
</div>
|
||||
)
|
||||
);
|
||||
};
|
||||
|
||||
export default Profile;
|
||||
54
site/src/components/ProfileFromApi.jsx
Normal file
54
site/src/components/ProfileFromApi.jsx
Normal file
@@ -0,0 +1,54 @@
|
||||
import React, { useEffect, useState } from "react";
|
||||
import { useAuth0 } from "@auth0/auth0-react";
|
||||
|
||||
const ProfileFromApi = () => {
|
||||
const { user, isAuthenticated, getAccessTokenSilently } = useAuth0();
|
||||
const [userMetadata, setUserMetadata] = useState(null);
|
||||
|
||||
useEffect(() => {
|
||||
const getUserMetadata = async () => {
|
||||
const domain = "dev-b-bgocbi.us.auth0.com";
|
||||
|
||||
try {
|
||||
const accessToken = await getAccessTokenSilently({
|
||||
audience: `https://${domain}/api/v2/`,
|
||||
scope: "read:current_user",
|
||||
});
|
||||
|
||||
const userDetailsByIdUrl = `https://${domain}/api/v2/users/${user.sub}`;
|
||||
|
||||
const metadataResponse = await fetch(userDetailsByIdUrl, {
|
||||
headers: {
|
||||
Authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
});
|
||||
|
||||
const { user_metadata } = await metadataResponse.json();
|
||||
|
||||
setUserMetadata(user_metadata);
|
||||
} catch (e) {
|
||||
console.log(e.message);
|
||||
}
|
||||
};
|
||||
|
||||
getUserMetadata();
|
||||
}, [getAccessTokenSilently, user?.sub]);
|
||||
|
||||
return (
|
||||
isAuthenticated && (
|
||||
<div>
|
||||
<img src={user.picture} alt={user.name} />
|
||||
<h2>{user.name}</h2>
|
||||
<p>{user.email}</p>
|
||||
<h3>User Metadata</h3>
|
||||
{userMetadata ? (
|
||||
<pre>{JSON.stringify(userMetadata, null, 2)}</pre>
|
||||
) : (
|
||||
"No user metadata defined"
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
);
|
||||
};
|
||||
|
||||
export default ProfileFromApi;
|
||||
@@ -4,6 +4,8 @@ import Tour from '../components/Tour.astro';
|
||||
// You can import components from any supported Framework here!
|
||||
import ReactCounter from '../components/ReactCounter.jsx';
|
||||
|
||||
import AuthTest from '../components/AuthTest.jsx';
|
||||
|
||||
// Component Script:
|
||||
// You can write any JavaScript/TypeScript that you'd like here.
|
||||
// It will run during the build, but never in the browser.
|
||||
@@ -42,6 +44,8 @@ let title = 'My Astro Site';
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<AuthTest client:only />
|
||||
|
||||
<Tour />
|
||||
|
||||
<!--
|
||||
|
||||
Reference in New Issue
Block a user