mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 06:36:37 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
199 lines
7.6 KiB
TypeScript
199 lines
7.6 KiB
TypeScript
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { template } from 'lodash'
|
|
import { Download, Loader2 } from 'lucide-react'
|
|
import { useEffect, useMemo, useState } from 'react'
|
|
import { toast } from 'sonner'
|
|
|
|
import { useParams } from 'common'
|
|
import { SupportLink } from 'components/interfaces/Support/SupportLink'
|
|
import { ButtonTooltip } from 'components/ui/ButtonTooltip'
|
|
import { DocsButton } from 'components/ui/DocsButton'
|
|
import { FormHeader } from 'components/ui/Forms/FormHeader'
|
|
import { FormPanel } from 'components/ui/Forms/FormPanel'
|
|
import { FormSection, FormSectionContent, FormSectionLabel } from 'components/ui/Forms/FormSection'
|
|
import { InlineLinkClassName } from 'components/ui/InlineLink'
|
|
import { useProjectSettingsV2Query } from 'data/config/project-settings-v2-query'
|
|
import { useSSLEnforcementQuery } from 'data/ssl-enforcement/ssl-enforcement-query'
|
|
import { useSSLEnforcementUpdateMutation } from 'data/ssl-enforcement/ssl-enforcement-update-mutation'
|
|
import { useCustomContent } from 'hooks/custom-content/useCustomContent'
|
|
import { useAsyncCheckPermissions } from 'hooks/misc/useCheckPermissions'
|
|
import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
|
|
import { DOCS_URL } from 'lib/constants'
|
|
import { Alert, Button, Switch, Tooltip, TooltipContent, TooltipTrigger } from 'ui'
|
|
|
|
const SSLConfiguration = () => {
|
|
const { ref } = useParams()
|
|
const { data: project } = useSelectedProjectQuery()
|
|
const [isEnforced, setIsEnforced] = useState(false)
|
|
|
|
const { data: settings } = useProjectSettingsV2Query({ projectRef: ref })
|
|
const {
|
|
data: sslEnforcementConfiguration,
|
|
isLoading,
|
|
isSuccess,
|
|
} = useSSLEnforcementQuery({
|
|
projectRef: ref,
|
|
})
|
|
const { mutate: updateSSLEnforcement, isPending: isSubmitting } = useSSLEnforcementUpdateMutation(
|
|
{
|
|
onSuccess: () => {
|
|
toast.success('Successfully updated SSL configuration')
|
|
},
|
|
onError: (error) => {
|
|
setIsEnforced(initialIsEnforced)
|
|
toast.error(`Failed to update SSL enforcement: ${error.message}`)
|
|
},
|
|
}
|
|
)
|
|
|
|
const { can: canUpdateSSLEnforcement } = useAsyncCheckPermissions(
|
|
PermissionAction.UPDATE,
|
|
'projects',
|
|
{
|
|
resource: {
|
|
project_id: project?.id,
|
|
},
|
|
}
|
|
)
|
|
const initialIsEnforced = isSuccess
|
|
? sslEnforcementConfiguration.appliedSuccessfully &&
|
|
sslEnforcementConfiguration.currentConfig.database
|
|
: false
|
|
|
|
const hasAccessToSSLEnforcement = !(
|
|
sslEnforcementConfiguration !== undefined &&
|
|
'isNotAllowed' in sslEnforcementConfiguration &&
|
|
sslEnforcementConfiguration.isNotAllowed
|
|
)
|
|
const env = process.env.NEXT_PUBLIC_ENVIRONMENT === 'prod' ? 'prod' : 'staging'
|
|
const hasSSLCertificate =
|
|
settings?.inserted_at !== undefined && new Date(settings.inserted_at) >= new Date('2021-04-30')
|
|
|
|
const { sslCertificateUrl: sslCertificateUrlTemplate } = useCustomContent(['ssl:certificate_url'])
|
|
const sslCertificateUrl = useMemo(
|
|
() => template(sslCertificateUrlTemplate ?? '')({ env }),
|
|
[sslCertificateUrlTemplate, env]
|
|
)
|
|
|
|
useEffect(() => {
|
|
if (!isLoading && sslEnforcementConfiguration) {
|
|
setIsEnforced(initialIsEnforced)
|
|
}
|
|
}, [isLoading])
|
|
|
|
const toggleSSLEnforcement = async () => {
|
|
if (!ref) return console.error('Project ref is required')
|
|
setIsEnforced(!isEnforced)
|
|
updateSSLEnforcement({ projectRef: ref, requestedConfig: { database: !isEnforced } })
|
|
}
|
|
|
|
return (
|
|
<div id="ssl-configuration">
|
|
<div className="flex items-center justify-between mb-6">
|
|
<FormHeader className="mb-0" title="SSL Configuration" description="" />
|
|
<DocsButton href={`${DOCS_URL}/guides/platform/ssl-enforcement`} />
|
|
</div>
|
|
<FormPanel>
|
|
<FormSection
|
|
header={
|
|
<FormSectionLabel
|
|
className="lg:col-span-7"
|
|
description={
|
|
<div className="space-y-4">
|
|
<p className="text-sm text-foreground-light">
|
|
Reject non-SSL connections to your database
|
|
</p>
|
|
{isSuccess && !sslEnforcementConfiguration?.appliedSuccessfully && (
|
|
<Alert
|
|
withIcon
|
|
variant="warning"
|
|
title="SSL enforcement was not updated successfully"
|
|
>
|
|
Please try updating again, or contact{' '}
|
|
<SupportLink className={InlineLinkClassName}>support</SupportLink> if this
|
|
error persists
|
|
</Alert>
|
|
)}
|
|
</div>
|
|
}
|
|
>
|
|
Enforce SSL on incoming connections
|
|
</FormSectionLabel>
|
|
}
|
|
>
|
|
<FormSectionContent loading={false} className="lg:!col-span-5">
|
|
<div className="flex items-center justify-end mt-2.5 space-x-2">
|
|
{(isLoading || isSubmitting) && (
|
|
<Loader2 className="animate-spin" strokeWidth={1.5} size={16} />
|
|
)}
|
|
{isSuccess && (
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
{/* [Joshen] Added div as tooltip is messing with data state property of toggle */}
|
|
<div>
|
|
<Switch
|
|
size="large"
|
|
checked={isEnforced}
|
|
disabled={
|
|
isLoading ||
|
|
isSubmitting ||
|
|
!canUpdateSSLEnforcement ||
|
|
!hasAccessToSSLEnforcement
|
|
}
|
|
onCheckedChange={toggleSSLEnforcement}
|
|
/>
|
|
</div>
|
|
</TooltipTrigger>
|
|
{(!canUpdateSSLEnforcement || !hasAccessToSSLEnforcement) && (
|
|
<TooltipContent side="bottom" className="w-64 text-center">
|
|
{!canUpdateSSLEnforcement
|
|
? 'You need additional permissions to update SSL enforcement for your project'
|
|
: !hasAccessToSSLEnforcement
|
|
? 'Your project does not have access to SSL enforcement'
|
|
: undefined}
|
|
</TooltipContent>
|
|
)}
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
</FormSectionContent>
|
|
</FormSection>
|
|
|
|
<div className="grid grid-cols-1 items-center lg:grid-cols-2 p-8">
|
|
<div className="space-y-2">
|
|
<p className="block text-sm">SSL Certificate</p>
|
|
<div style={{ maxWidth: '420px' }}>
|
|
<p className="text-sm opacity-50">
|
|
Use this certificate when connecting to your database to prevent snooping and
|
|
man-in-the-middle attacks.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-end justify-end">
|
|
{!hasSSLCertificate ? (
|
|
<ButtonTooltip
|
|
disabled
|
|
type="default"
|
|
icon={<Download />}
|
|
tooltip={{
|
|
content: {
|
|
side: 'bottom',
|
|
text: 'Projects before 15:08 (GMT+08), 29th April 2021 do not have SSL certificates installed',
|
|
},
|
|
}}
|
|
>
|
|
Download certificate
|
|
</ButtonTooltip>
|
|
) : (
|
|
<Button type="default" icon={<Download />}>
|
|
<a href={sslCertificateUrl}>Download certificate</a>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</FormPanel>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SSLConfiguration
|