1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge branch 'develop' of github.com:Budibase/budibase into responsive-portal

This commit is contained in:
Andrew Kingston 2021-09-15 10:53:59 +01:00
commit 8a0b9724b0
29 changed files with 893 additions and 77 deletions

View file

@ -51,6 +51,7 @@ services:
INTERNAL_API_KEY: ${INTERNAL_API_KEY}
REDIS_URL: redis-service:6379
REDIS_PASSWORD: ${REDIS_PASSWORD}
ACCOUNT_PORTAL_URL: https://portal.budi.live
volumes:
- ./logs:/logs
depends_on:

View file

@ -87,6 +87,8 @@ spec:
{{ end }}
- name: SELF_HOSTED
value: {{ .Values.globals.selfHosted | quote }}
- name: ACCOUNT_PORTAL_URL
value: {{ .Values.globals.accountPortalUrl | quote }}
image: budibase/worker
imagePullPolicy: Always
name: bbworker

View file

@ -89,6 +89,7 @@ globals:
sentryDSN: ""
logLevel: info
selfHosted: 1
accountPortalUrL: ""
createSecrets: true # creates an internal API key, JWT secrets and redis password for you
# if createSecrets is set to false, you can hard-code your secrets here

View file

@ -1,5 +1,5 @@
{
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -47,6 +47,8 @@
"release:helm": "./scripts/release_helm_chart.sh",
"multi:enable": "lerna run multi:enable",
"multi:disable": "lerna run multi:disable",
"selfhost:enable": "lerna run selfhost:enable",
"selfhost:disable": "lerna run selfhost:disable",
"postinstall": "husky install"
}
}

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/auth",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"description": "Authentication middlewares for budibase builder and apps",
"main": "src/index.js",
"author": "Budibase",

View file

@ -1,7 +1,7 @@
{
"name": "@budibase/bbui",
"description": "A UI solution used in the different Budibase projects.",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"license": "AGPL-3.0",
"svelte": "src/index.js",
"module": "dist/bbui.es.js",

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/builder",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"license": "AGPL-3.0",
"private": true,
"scripts": {
@ -65,10 +65,10 @@
}
},
"dependencies": {
"@budibase/bbui": "^0.9.125-alpha.5",
"@budibase/client": "^0.9.125-alpha.5",
"@budibase/bbui": "^0.9.125-alpha.7",
"@budibase/client": "^0.9.125-alpha.7",
"@budibase/colorpicker": "1.1.2",
"@budibase/string-templates": "^0.9.125-alpha.5",
"@budibase/string-templates": "^0.9.125-alpha.7",
"@sentry/browser": "5.19.1",
"@spectrum-css/page": "^3.0.1",
"@spectrum-css/vars": "^3.0.1",

View file

@ -92,7 +92,7 @@
<ActionGroup />
</div>
<div class="toprightnav">
{#if $admin.sandbox}
{#if $admin.cloud}
<UpgradeModal />
{/if}
<VersionModal />

View file

@ -1,5 +1,5 @@
<script>
import { auth } from "stores/portal"
import { auth, admin } from "stores/portal"
import { onMount } from "svelte"
import { redirect } from "@roxi/routify"
@ -10,6 +10,11 @@
if ($auth.user && !$auth.user.forceResetPassword) {
$redirect("../")
}
// redirect to account portal for authentication in the cloud
if ($admin.cloud && $admin.accountPortalUrl) {
window.location.href = $admin.accountPortalUrl
}
})
</script>

View file

@ -13,6 +13,7 @@
} from "@budibase/bbui"
import ConfigChecklist from "components/common/ConfigChecklist.svelte"
import { organisation, auth } from "stores/portal"
import { admin as adminStore } from "stores/portal"
import { onMount } from "svelte"
import UpdateUserInfoModal from "components/settings/UpdateUserInfoModal.svelte"
import ChangePasswordModal from "components/settings/ChangePasswordModal.svelte"
@ -59,6 +60,16 @@
},
])
}
// add link to account portal if the user has access
if ($auth?.user?.account) {
menu = menu.concat([
{
title: "Account",
href: $adminStore.accountPortalUrl,
},
])
}
return menu
}

View file

@ -6,7 +6,8 @@ export function createAdminStore() {
const DEFAULT_CONFIG = {
loaded: false,
multiTenancy: false,
sandbox: false,
cloud: false,
accountPortalUrl: "",
onboardingProgress: 0,
checklist: {
apps: { checked: false },
@ -28,7 +29,7 @@ export function createAdminStore() {
const totalSteps = Object.keys(json).length
const completedSteps = Object.values(json).filter(x => x?.checked).length
await getFlags()
await getEnvironment()
admin.update(store => {
store.loaded = true
store.checklist = json
@ -43,20 +44,23 @@ export function createAdminStore() {
}
}
async function getFlags() {
async function getEnvironment() {
let multiTenancyEnabled = false
let sandbox = false
let cloud = false
let accountPortalUrl = ""
try {
const response = await api.get(`/api/system/flags`)
const response = await api.get(`/api/system/environment`)
const json = await response.json()
multiTenancyEnabled = json.multiTenancy
sandbox = json.sandbox
cloud = json.cloud
accountPortalUrl = json.accountPortalUrl
} catch (err) {
// just let it stay disabled
}
admin.update(store => {
store.multiTenancy = multiTenancyEnabled
store.sandbox = sandbox
store.cloud = cloud
store.accountPortalUrl = accountPortalUrl
return store
})
}

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/cli",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"description": "Budibase CLI, for developers, self hosting and migrations.",
"main": "src/index.js",
"bin": {

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/client",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"license": "MPL-2.0",
"module": "dist/budibase-client.js",
"main": "dist/budibase-client.js",
@ -19,9 +19,9 @@
"dev:builder": "rollup -cw"
},
"dependencies": {
"@budibase/bbui": "^0.9.125-alpha.5",
"@budibase/bbui": "^0.9.125-alpha.7",
"@budibase/standard-components": "^0.9.124",
"@budibase/string-templates": "^0.9.125-alpha.5",
"@budibase/string-templates": "^0.9.125-alpha.7",
"regexparam": "^1.3.0",
"shortid": "^2.2.15",
"svelte-spa-router": "^3.0.5"

View file

@ -1,7 +1,7 @@
{
"name": "@budibase/server",
"email": "hi@budibase.com",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"description": "Budibase Web Server",
"main": "src/index.js",
"repository": {
@ -24,7 +24,9 @@
"lint": "eslint --fix src/",
"lint:fix": "yarn run format && yarn run lint",
"multi:enable": "node scripts/multiTenancy.js enable",
"multi:disable": "node scripts/multiTenancy.js disable"
"multi:disable": "node scripts/multiTenancy.js disable",
"selfhost:enable": "node scripts/selfhost.js enable",
"selfhost:disable": "node scripts/selfhost.js disable"
},
"jest": {
"preset": "ts-jest",
@ -61,9 +63,9 @@
"author": "Budibase",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@budibase/auth": "^0.9.125-alpha.5",
"@budibase/client": "^0.9.125-alpha.5",
"@budibase/string-templates": "^0.9.125-alpha.5",
"@budibase/auth": "^0.9.125-alpha.7",
"@budibase/client": "^0.9.125-alpha.7",
"@budibase/string-templates": "^0.9.125-alpha.7",
"@elastic/elasticsearch": "7.10.0",
"@koa/router": "8.0.0",
"@sendgrid/mail": "7.1.1",

View file

@ -0,0 +1,8 @@
#!/usr/bin/env node
const updateDotEnv = require("update-dotenv")
const arg = process.argv.slice(2)[0]
updateDotEnv({
SELF_HOSTED: arg === "enable" ? "1" : "0",
}).then(() => console.log("Updated server!"))

View file

@ -152,7 +152,7 @@ module MySQLModule {
false
)
const tableNames = tablesResp.map(
(obj: any) => obj[`Tables_in_${database}`]
(obj: any) => obj[`Tables_in_${database.toLowerCase()}`]
)
for (let tableName of tableNames) {
const primaryKeys = []

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "@budibase/string-templates",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"description": "Handlebars wrapper for Budibase templating.",
"main": "src/index.cjs",
"module": "dist/bundle.mjs",

View file

@ -1,7 +1,7 @@
{
"name": "@budibase/worker",
"email": "hi@budibase.com",
"version": "0.9.125-alpha.5",
"version": "0.9.125-alpha.7",
"description": "Budibase background service",
"main": "src/index.js",
"repository": {
@ -18,13 +18,15 @@
"dev:builder": "npm run dev:stack:init && nodemon src/index.js",
"test": "jest --runInBand",
"multi:enable": "node scripts/multiTenancy.js enable",
"multi:disable": "node scripts/multiTenancy.js disable"
"multi:disable": "node scripts/multiTenancy.js disable",
"selfhost:enable": "node scripts/selfhost.js enable",
"selfhost:disable": "node scripts/selfhost.js disable"
},
"author": "Budibase",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@budibase/auth": "^0.9.125-alpha.5",
"@budibase/string-templates": "^0.9.125-alpha.5",
"@budibase/auth": "^0.9.125-alpha.7",
"@budibase/string-templates": "^0.9.125-alpha.7",
"@koa/router": "^8.0.0",
"@techpass/passport-openidconnect": "^0.3.0",
"aws-sdk": "^2.811.0",

View file

@ -21,6 +21,7 @@ async function init() {
COUCH_DB_PASSWORD: "budibase",
// empty string is false
MULTI_TENANCY: "",
ACCOUNT_PORTAL_URL: "http://localhost:3001",
}
let envFile = ""
Object.keys(envFileJson).forEach(key => {

View file

@ -0,0 +1,8 @@
#!/usr/bin/env node
const updateDotEnv = require("update-dotenv")
const arg = process.argv.slice(2)[0]
updateDotEnv({
SELF_HOSTED: arg === "enable" ? "1" : "0",
}).then(() => console.log("Updated worker!"))

View file

@ -196,6 +196,11 @@ exports.getSelf = async ctx => {
}
// this will set the body
await exports.find(ctx)
// append the account portal session information if present
if (ctx.user.account) {
ctx.body.account = ctx.user.account
}
}
exports.updateSelf = async ctx => {

View file

@ -3,6 +3,7 @@ const env = require("../../../environment")
exports.fetch = async ctx => {
ctx.body = {
multiTenancy: !!env.MULTI_TENANCY,
sandbox: !!env.SANDBOX,
cloud: !(env.SELF_HOSTED === "1"),
accountPortalUrl: env.ACCOUNT_PORTAL_URL,
}
}

View file

@ -44,7 +44,7 @@ const PUBLIC_ENDPOINTS = [
method: "POST",
},
{
route: "api/system/flags",
route: "api/system/environment",
method: "GET",
},
{

View file

@ -6,7 +6,7 @@ const emailRoutes = require("./global/email")
const authRoutes = require("./global/auth")
const roleRoutes = require("./global/roles")
const sessionRoutes = require("./global/sessions")
const flagRoutes = require("./system/flags")
const environmentRoutes = require("./system/environment")
const tenantsRoutes = require("./system/tenants")
const appRoutes = require("./app")
@ -21,5 +21,5 @@ exports.routes = [
emailRoutes,
sessionRoutes,
roleRoutes,
flagRoutes,
environmentRoutes,
]

View file

@ -0,0 +1,8 @@
const Router = require("@koa/router")
const controller = require("../../controllers/system/environment")
const router = Router()
router.get("/api/system/environment", controller.fetch)
module.exports = router

View file

@ -1,8 +0,0 @@
const Router = require("@koa/router")
const controller = require("../../controllers/system/flags")
const router = Router()
router.get("/api/system/flags", controller.fetch)
module.exports = router

View file

@ -32,7 +32,7 @@ module.exports = {
REDIS_PASSWORD: process.env.REDIS_PASSWORD,
INTERNAL_API_KEY: process.env.INTERNAL_API_KEY,
MULTI_TENANCY: process.env.MULTI_TENANCY,
SANDBOX: process.env.SANDBOX,
ACCOUNT_PORTAL_URL: process.env.ACCOUNT_PORTAL_URL,
_set(key, value) {
process.env[key] = value
module.exports[key] = value