-
-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,189 additions
and
19 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
const { FastifyAdapter } = require('@bull-board/fastify'); | ||
const { createBullBoard } = require('@bull-board/api'); | ||
const { BullMQAdapter } = require('@bull-board/api/bullMQAdapter'); | ||
const pointOfView = require('point-of-view'); | ||
const path = require('path'); | ||
|
||
module.exports.cookieAuth = function cookieAuth(fastify, { queue }, next) { | ||
fastify.register(require('fastify-cookie'), { | ||
secret: 'my-secret', // for cookies signature | ||
parseOptions: {}, // options for parsing cookies | ||
}); | ||
|
||
fastify.register(require('fastify-jwt'), { | ||
secret: 'supersecret', | ||
cookie: { | ||
cookieName: 'token', | ||
}, | ||
}); | ||
|
||
function validate(req, reply, done) { | ||
if (username === 'bull' && password === 'board') { | ||
done(); | ||
} else { | ||
done(new Error('Unauthorized')); | ||
} | ||
} | ||
|
||
fastify.decorate('validate', validate); | ||
|
||
fastify.after(() => { | ||
const serverAdapter = new FastifyAdapter(); | ||
|
||
createBullBoard({ | ||
queues: [new BullMQAdapter(queue)], | ||
serverAdapter, | ||
}); | ||
|
||
serverAdapter.setBasePath('/cookie/ui'); | ||
fastify.register(serverAdapter.registerPlugin(), { prefix: '/cookie/ui' }); | ||
|
||
fastify.register(pointOfView, { | ||
engine: { | ||
ejs: require('ejs'), | ||
}, | ||
root: path.resolve('./views'), | ||
}); | ||
|
||
fastify.route({ | ||
method: 'GET', | ||
url: '/cookie/login', | ||
handler: async (req, reply) => { | ||
reply.view('login.ejs'); | ||
}, | ||
}); | ||
|
||
fastify.route({ | ||
method: 'POST', | ||
url: '/cookie/login', | ||
handler: async (req, reply) => { | ||
const { username = '', password = '' } = req.body; | ||
|
||
if (username === 'bull' && password === 'board') { | ||
const token = await reply.jwtSign({ | ||
name: 'foo', | ||
role: ['admin', 'spy'], | ||
}); | ||
|
||
reply | ||
.setCookie('token', token, { | ||
path: '/cookie', | ||
secure: false, // send cookie over HTTPS only | ||
httpOnly: true, | ||
sameSite: true, // alternative CSRF protection | ||
}) | ||
.send({ success: true, url: '/cookie/ui' }); | ||
} else { | ||
reply.code(401).send({ error: 'invalid_username_password' }); | ||
} | ||
}, | ||
}); | ||
fastify.addHook('onRequest', (request, reply, next) => { | ||
if (request.url === '/cookie/login') { | ||
return next(); | ||
} | ||
|
||
return request.jwtVerify(); | ||
}); | ||
}); | ||
|
||
next(); | ||
}; |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap" | ||
rel="stylesheet" /> | ||
<style> | ||
body { | ||
background: #f5f8fa; | ||
font-family: 'Ubuntu', sans-serif; | ||
font-weight: 400; | ||
line-height: 1.25em; | ||
margin: 0; | ||
font-size: 16px; | ||
color: #454b52; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
.login-page { | ||
width: 360px; | ||
padding: 8% 0 0; | ||
margin: auto; | ||
} | ||
.form { | ||
position: relative; | ||
z-index: 1; | ||
background: #FFFFFF; | ||
max-width: 360px; | ||
margin: 0 auto 100px; | ||
padding: 45px; | ||
text-align: center; | ||
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); | ||
} | ||
.form input { | ||
font-family: inherit; | ||
outline: 0; | ||
background: #f2f2f2; | ||
width: 100%; | ||
border: 0; | ||
margin: 0 0 15px; | ||
padding: 15px; | ||
box-sizing: border-box; | ||
font-size: 14px; | ||
} | ||
.form button { | ||
font-family: inherit; | ||
text-transform: uppercase; | ||
outline: 0; | ||
background: hsl(217, 22%, 24%); | ||
width: 100%; | ||
border: 0; | ||
padding: 15px; | ||
color: #FFFFFF; | ||
font-size: 14px; | ||
-webkit-transition: all 0.3 ease; | ||
transition: all 0.3 ease; | ||
cursor: pointer; | ||
} | ||
.form button:hover, .form button:active, .form button:focus { | ||
background: hsl(217, 22%, 28%); | ||
} | ||
.form .message { | ||
margin: 15px 0 0; | ||
color: #b3b3b3; | ||
font-size: 12px; | ||
} | ||
.form .message a { | ||
color: hsl(217, 22%, 24%); | ||
text-decoration: none; | ||
} | ||
.container { | ||
position: relative; | ||
z-index: 1; | ||
max-width: 300px; | ||
margin: 0 auto; | ||
} | ||
.container:before, .container:after { | ||
content: ""; | ||
display: block; | ||
clear: both; | ||
} | ||
.container .info { | ||
margin: 50px auto; | ||
text-align: center; | ||
} | ||
.container .info h1 { | ||
margin: 0 0 15px; | ||
padding: 0; | ||
font-size: 36px; | ||
font-weight: 300; | ||
color: #1a1a1a; | ||
} | ||
.container .info span { | ||
color: #4d4d4d; | ||
font-size: 12px; | ||
} | ||
.container .info span a { | ||
color: #000000; | ||
text-decoration: none; | ||
} | ||
.container .info span .fa { | ||
color: #EF3B3A; | ||
} | ||
#error-message { | ||
display: none; | ||
color: #EF3B3A; | ||
margin-bottom: 0.5rem; | ||
} | ||
</style> | ||
<title>Bull-Board</title> | ||
</head> | ||
<body> | ||
<div class="login-page"> | ||
<div class="form"> | ||
<div id="error-message">Invalid username or password.</div> | ||
<form class="login-form" id="loginForm" method="post" action="/cookie/login" | ||
onsubmit="return handleSubmit(this)"> | ||
<input type="text" name="username" placeholder="Username" /> | ||
<input type="password" name="password" placeholder="Password" /> | ||
<button>Login</button> | ||
|
||
<p class="message">Username: bull, Password: board</p> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
function handleSubmit(form) { | ||
const url = form.action; | ||
const method = form.method; | ||
const username = form.username.value; | ||
const password = form.password.value; | ||
const errorMessage = document.getElementById('error-message') | ||
if (!username || !password) { | ||
return false; | ||
} | ||
errorMessage.style.display = 'none'; | ||
fetch(url, { | ||
method: method.toUpperCase(), | ||
headers: { 'content-type': 'application/json' }, | ||
body: JSON.stringify({ username, password }) | ||
}).then((res) => | ||
res.status !== 200 ? Promise.reject(res.json()) : res.json() | ||
) | ||
.then(res => res.error ? Promise.reject(res.error) : res) | ||
.then(({ url }) => { | ||
window.location = url | ||
}) | ||
.catch(() => { | ||
errorMessage.style.display = 'block' | ||
}) | ||
return false | ||
} | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.