1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00
budibase/packages/worker/src/api/controllers/auth.js

75 lines
1.6 KiB
JavaScript
Raw Normal View History

const authPkg = require("@budibase/auth")
2021-04-22 08:08:04 +12:00
const { google } = require("@budibase/auth/src/middleware")
const { clearCookie } = authPkg.utils
2021-04-22 08:08:04 +12:00
const { Cookies } = authPkg
const { passport } = authPkg.auth
exports.authenticate = async (ctx, next) => {
2021-04-08 02:15:05 +12:00
return passport.authenticate("local", async (err, user) => {
2021-04-07 22:33:16 +12:00
if (err) {
return ctx.throw(403, "Unauthorized")
2021-04-07 22:33:16 +12:00
}
2021-04-08 02:15:05 +12:00
const expires = new Date()
expires.setDate(expires.getDate() + 1)
2021-04-12 21:47:48 +12:00
if (!user) {
return ctx.throw(403, "Unauthorized")
2021-04-12 21:47:48 +12:00
}
2021-04-11 22:35:55 +12:00
ctx.cookies.set(Cookies.Auth, user.token, {
2021-04-08 02:15:05 +12:00
expires,
path: "/",
httpOnly: false,
overwrite: true,
})
2021-04-12 21:47:48 +12:00
delete user.token
ctx.body = { user }
})(ctx, next)
}
2021-04-11 22:35:55 +12:00
2021-04-14 00:56:28 +12:00
exports.logout = async ctx => {
clearCookie(ctx, Cookies.Auth)
2021-04-16 03:49:35 +12:00
ctx.body = { message: "User logged out" }
2021-04-14 00:56:28 +12:00
}
2021-04-22 08:08:04 +12:00
exports.googlePreAuth = async (ctx, next) => {
const strategy = await google.strategyFactory()
return passport.authenticate(strategy, {
scope: ["profile", "email"],
})(ctx, next)
}
2021-04-22 05:40:32 +12:00
2021-04-21 23:12:22 +12:00
exports.googleAuth = async (ctx, next) => {
2021-04-22 08:08:04 +12:00
const strategy = await google.strategyFactory()
2021-04-21 23:12:22 +12:00
return passport.authenticate(
2021-04-22 08:08:04 +12:00
strategy,
{ successRedirect: "/", failureRedirect: "/error" },
2021-04-21 23:12:22 +12:00
async (err, user) => {
if (err) {
return ctx.throw(403, "Unauthorized")
}
const expires = new Date()
expires.setDate(expires.getDate() + 1)
2021-04-14 00:56:28 +12:00
2021-04-21 23:12:22 +12:00
if (!user) {
return ctx.throw(403, "Unauthorized")
}
ctx.cookies.set(Cookies.Auth, user.token, {
expires,
path: "/",
httpOnly: false,
overwrite: true,
})
ctx.redirect("/")
}
)(ctx, next)
2021-04-11 22:35:55 +12:00
}