1
0
Fork 0
mirror of synced 2024-06-02 18:44:54 +12:00
budibase/packages/builder/src/pages/builder/portal/manage/auth/index.svelte

341 lines
8.8 KiB
Svelte
Raw Normal View History

2021-05-05 04:31:06 +12:00
<script>
2021-07-08 03:18:18 +12:00
import GoogleLogo from "./_logos/Google.svelte"
import OidcLogo from "./_logos/OIDC.svelte"
import MicrosoftLogo from "assets/microsoft-logo.png"
import Auth0Logo from "assets/auth0-logo.png"
2021-07-16 21:15:38 +12:00
import OktaLogo from "assets/okta-logo.png"
import OneLoginLogo from "assets/onelogin-logo.png"
import OidcLogoPng from "assets/oidc-logo.png"
2021-05-05 04:31:06 +12:00
import {
Button,
Heading,
Divider,
2021-05-05 05:14:13 +12:00
Label,
2021-05-05 04:31:06 +12:00
notifications,
2021-05-05 05:14:13 +12:00
Layout,
2021-05-05 04:31:06 +12:00
Input,
Body,
Select,
2021-05-05 04:31:06 +12:00
} from "@budibase/bbui"
import { onMount } from "svelte"
import api from "builderStore/api"
2021-07-10 02:05:39 +12:00
import { organisation } from "stores/portal"
import { uuid } from "builderStore/uuid"
2021-07-10 02:05:39 +12:00
2021-05-05 04:31:06 +12:00
const ConfigTypes = {
Google: "google",
2021-07-06 01:24:13 +12:00
OIDC: "oidc",
2021-05-05 04:31:06 +12:00
// Github: "github",
// AzureAD: "ad",
}
2021-07-06 01:24:13 +12:00
const GoogleConfigFields = {
2021-05-05 04:31:06 +12:00
Google: ["clientID", "clientSecret", "callbackURL"],
}
2021-07-06 01:24:13 +12:00
const GoogleConfigLabels = {
Google: {
clientID: "Client ID",
clientSecret: "Client secret",
callbackURL: "Callback URL",
},
}
2021-05-05 04:31:06 +12:00
2021-07-06 01:24:13 +12:00
const OIDCConfigFields = {
2021-07-10 02:50:46 +12:00
Oidc: ["configUrl", "clientID", "clientSecret"],
2021-07-06 01:24:13 +12:00
}
const OIDCConfigLabels = {
Oidc: {
configUrl: "Config URL",
2021-07-10 02:50:46 +12:00
clientID: "Client ID",
2021-07-06 01:24:13 +12:00
clientSecret: "Client Secret",
},
}
let iconDropdownOptions = [
{
2021-07-14 01:54:20 +12:00
label: "Microsoft",
value: "Microsoft",
icon: MicrosoftLogo,
},
2021-07-16 21:15:38 +12:00
{
label: "Okta",
value: "Okta",
icon: OktaLogo,
},
{
label: "OneLogin",
value: "OneLogin",
icon: OneLoginLogo,
},
{
label: "Auth0",
value: "Auth0",
icon: Auth0Logo,
},
{
label: "OIDC",
value: "Oidc",
icon: OidcLogoPng,
},
{
label: "Upload your own",
value: "Upload",
},
]
let fileinput
let image
2021-07-14 08:46:50 +12:00
2021-05-05 04:31:06 +12:00
let google
2021-07-06 01:24:13 +12:00
let oidc
2021-07-14 08:46:50 +12:00
const providers = { google, oidc }
// Create a flag so that it will only try to save completed forms
$: trySaveGoogle =
providers.google?.config.clientID ||
providers.google?.config.clientSecret ||
providers.google?.config.callbackURL
$: trySaveOidc =
providers.oidc?.config?.configs[0].configUrl ||
providers.oidc?.config?.configs[0].clientID ||
providers.oidc?.config?.configs[0].clientSecret
2021-07-14 08:46:50 +12:00
$: googleComplete =
providers.google?.config.clientID &&
providers.google?.config.clientSecret &&
providers.google?.config.callbackURL
$: oidcComplete =
providers.oidc?.config?.configs[0].configUrl &&
providers.oidc?.config?.configs[0].clientID &&
providers.oidc?.config?.configs[0].clientSecret
async function uploadLogo(file) {
let data = new FormData()
data.append("file", file)
const res = await api.post(
`/api/admin/configs/upload/logos_oidc/${file.name}`,
data,
{}
)
return await res.json()
}
const onFileSelected = e => {
2021-07-08 03:18:18 +12:00
let fileName = e.target.files[0].name
image = e.target.files[0]
2021-07-14 01:54:20 +12:00
providers.oidc.config.configs[0].logo = fileName
2021-07-08 23:36:09 +12:00
iconDropdownOptions.unshift({ label: fileName, value: fileName })
}
2021-07-06 01:24:13 +12:00
async function save(docs) {
2021-07-08 03:18:18 +12:00
// only if the user has provided an image, upload it.
image && uploadLogo(image)
2021-07-06 01:24:13 +12:00
let calls = []
let completed = []
2021-07-06 01:24:13 +12:00
docs.forEach(element => {
2021-07-14 08:46:50 +12:00
if (element.type === ConfigTypes.OIDC) {
//Add a UUID here so each config is distinguishable when it arrives at the login page.
element.config.configs.forEach(config => {
2021-07-14 08:46:50 +12:00
!config.uuid && (config.uuid = uuid())
})
if (trySaveOidc) {
if (!oidcComplete) {
notifications.error(
`Please fill in all required ${ConfigTypes.OIDC} fields`
)
} else {
calls.push(api.post(`/api/admin/configs`, element))
completed.push(ConfigTypes.OIDC)
}
}
2021-07-14 08:46:50 +12:00
}
if (element.type === ConfigTypes.Google) {
if (trySaveGoogle) {
if (!googleComplete) {
notifications.error(
`Please fill in all required ${ConfigTypes.Google} fields`
)
} else {
calls.push(api.post(`/api/admin/configs`, element))
completed.push(ConfigTypes.Google)
}
}
}
2021-07-06 01:24:13 +12:00
})
calls.length &&
Promise.all(calls)
.then(responses => {
return Promise.all(
responses.map(response => {
return response.json()
})
)
})
.then(data => {
data.forEach(res => {
providers[res.type]._rev = res._rev
providers[res.type]._id = res._id
})
notifications.success(`Settings saved.`)
})
.catch(err => {
notifications.error(`Failed to update auth settings. ${err}`)
throw new Error(err.message)
2021-07-06 01:24:13 +12:00
})
2021-05-05 04:31:06 +12:00
}
onMount(async () => {
2021-07-10 02:05:39 +12:00
await organisation.init()
2021-05-05 04:31:06 +12:00
// fetch the configs for oauth
const googleResponse = await api.get(
`/api/admin/configs/${ConfigTypes.Google}`
)
const googleDoc = await googleResponse.json()
if (!googleDoc._id) {
2021-07-06 01:24:13 +12:00
providers.google = {
2021-05-05 22:03:45 +12:00
type: ConfigTypes.Google,
2021-05-05 04:31:06 +12:00
config: {},
}
} else {
2021-07-06 01:24:13 +12:00
providers.google = googleDoc
}
2021-07-08 03:18:18 +12:00
//Get the list of user uploaded logos and push it to the dropdown options.
//This needs to be done before the config call so they're available when the dropdown renders
const res = await api.get(`/api/admin/configs/logos_oidc`)
2021-07-08 03:18:18 +12:00
const configSettings = await res.json()
if (configSettings.config) {
2021-07-08 23:36:09 +12:00
const logoKeys = Object.keys(configSettings.config)
logoKeys.map(logoKey => {
const logoUrl = configSettings.config[logoKey]
iconDropdownOptions.unshift({
label: logoKey,
value: logoKey,
icon: logoUrl,
})
2021-07-08 03:18:18 +12:00
})
2021-07-08 23:36:09 +12:00
}
2021-07-06 01:24:13 +12:00
const oidcResponse = await api.get(`/api/admin/configs/${ConfigTypes.OIDC}`)
const oidcDoc = await oidcResponse.json()
if (!oidcDoc._id) {
providers.oidc = {
type: ConfigTypes.OIDC,
2021-07-14 01:54:20 +12:00
config: { configs: [{}] },
2021-07-06 01:24:13 +12:00
}
} else {
providers.oidc = oidcDoc
2021-05-05 04:31:06 +12:00
}
})
2021-05-05 04:31:06 +12:00
</script>
<Layout>
<Layout gap="XS" noPadding>
2021-07-14 04:32:57 +12:00
<Heading size="M">Authentication</Heading>
<Body>
Every budibase app comes with basic authentication (email/password)
included. You can add additional authentication methods from the options
below.
</Body>
</Layout>
2021-07-06 01:24:13 +12:00
{#if providers.google}
2021-05-07 22:16:09 +12:00
<Divider />
<Layout gap="XS" noPadding>
<Heading size="S">
<span>
<GoogleLogo />
Google
</span>
</Heading>
<Body size="S">
To allow users to authenticate using their Google accounts, fill out the
fields below.
</Body>
</Layout>
<Layout gap="XS" noPadding>
2021-07-06 01:24:13 +12:00
{#each GoogleConfigFields.Google as field}
<div class="form-row">
<Label size="L">{GoogleConfigLabels.Google[field]}</Label>
<Input bind:value={providers.google.config[field]} />
</div>
{/each}
</Layout>
{/if}
{#if providers.oidc}
<Divider />
<Layout gap="XS" noPadding>
<Heading size="S">
<span>
<OidcLogo />
2021-07-06 01:24:13 +12:00
OpenID Connect
</span>
</Heading>
<Body size="S">
To allow users to authenticate using OIDC, fill out the fields below.
</Body>
</Layout>
<Layout gap="XS" noPadding>
{#each OIDCConfigFields.Oidc as field}
2021-05-07 22:16:09 +12:00
<div class="form-row">
2021-07-06 01:24:13 +12:00
<Label size="L">{OIDCConfigLabels.Oidc[field]}</Label>
2021-07-14 01:54:20 +12:00
<Input bind:value={providers.oidc.config.configs[0][field]} />
2021-05-07 22:16:09 +12:00
</div>
{/each}
<div class="form-row">
<Label size="L">Callback URL</Label>
<Input readonly placeholder="/api/admin/auth/oidc/callback" />
</div>
<br />
2021-07-06 01:24:13 +12:00
<Body size="S">
To customize your login button, fill out the fields below.
2021-07-06 01:24:13 +12:00
</Body>
<div class="form-row">
<Label size="L">Name</Label>
2021-07-14 01:54:20 +12:00
<Input bind:value={providers.oidc.config.configs[0].name} />
</div>
<div class="form-row">
<Label size="L">Icon</Label>
2021-07-06 01:24:13 +12:00
<Select
label=""
2021-07-14 01:54:20 +12:00
bind:value={providers.oidc.config.configs[0].logo}
options={iconDropdownOptions}
2021-07-08 03:18:18 +12:00
on:change={e => e.detail === "Upload" && fileinput.click()}
2021-07-06 01:24:13 +12:00
/>
</div>
<input
type="file"
accept=".jpg, .jpeg, .png"
on:change={e => onFileSelected(e)}
bind:this={fileinput}
/>
</Layout>
{/if}
2021-07-06 01:24:13 +12:00
<div>
<Button cta on:click={() => save([providers.google, providers.oidc])}
>Save</Button
>
2021-07-06 01:24:13 +12:00
</div>
</Layout>
2021-05-05 04:31:06 +12:00
<style>
2021-05-05 05:14:13 +12:00
.form-row {
display: grid;
grid-template-columns: 20% 1fr;
grid-gap: var(--spacing-l);
2021-05-07 22:16:09 +12:00
align-items: center;
2021-05-05 04:31:06 +12:00
}
2021-05-06 04:21:35 +12:00
span {
display: flex;
align-items: center;
gap: var(--spacing-s);
}
input {
display: none;
}
2021-05-05 04:31:06 +12:00
</style>