* configurable trial days

* hide create sso provider in cloud
This commit is contained in:
Philipinho 2025-03-06 21:06:24 +00:00
parent d925c95fc9
commit 3b4e414c97
4 changed files with 24 additions and 14 deletions

View File

@ -0,0 +1,9 @@
import { useAtom } from "jotai";
import { currentUserAtom } from "@/features/user/atoms/current-user-atom.ts";
export const useLicense = () => {
const [currentUser] = useAtom(currentUserAtom);
return { hasLicenseKey: currentUser?.workspace?.hasLicenseKey };
};
export default useLicense;

View File

@ -1,5 +1,5 @@
import { Helmet } from "react-helmet-async";
import { getAppName } from "@/lib/config.ts";
import { getAppName, isCloud } from "@/lib/config.ts";
import SettingsTitle from "@/components/settings/settings-title.tsx";
import { Divider, Title } from "@mantine/core";
import React from "react";
@ -9,15 +9,12 @@ import CreateSsoProvider from "@/ee/security/components/create-sso-provider.tsx"
import EnforceSso from "@/ee/security/components/enforce-sso.tsx";
import AllowedDomains from "@/ee/security/components/allowed-domains.tsx";
import { useTranslation } from "react-i18next";
import usePlan from "@/ee/hooks/use-plan.tsx";
import useLicense from "@/ee/hooks/use-license.tsx";
export default function Security() {
const { t } = useTranslation();
const { isAdmin } = useUserRole();
const { isStandard } = usePlan();
// if is not cloud or enterprise return null
//{(isCloud() || isEnterprise()) && (
const { hasLicenseKey } = useLicense();
if (!isAdmin) {
return null;
@ -42,7 +39,11 @@ export default function Security() {
<Divider my="lg" />
{!isStandard && <CreateSsoProvider />}
{!isCloud() && hasLicenseKey ? <CreateSsoProvider /> : ""}
{/*TODO: revisit when we add a second plan
<CreateSsoProvider />
*/}
<Divider size={0} my="lg" />

View File

@ -104,7 +104,10 @@ export class WorkspaceService {
hostname = await this.generateHostname(
createWorkspaceDto.hostname ?? createWorkspaceDto.name,
);
trialEndAt = addDays(new Date(), 14);
trialEndAt = addDays(
new Date(),
this.environmentService.getBillingTrialDays(),
);
status = WorkspaceStatus.Active;
plan = 'standard';
}

View File

@ -45,10 +45,7 @@ export class EnvironmentService {
}
getDatabaseMaxPool(): number {
return parseInt(
this.configService.get<string>('DATABASE_MAX_POOL', '10'),
10,
);
return parseInt(this.configService.get<string>('DATABASE_MAX_POOL', '10'));
}
getRedisUrl(): string {
@ -171,8 +168,8 @@ export class EnvironmentService {
return this.configService.get<string>('STRIPE_WEBHOOK_SECRET');
}
getEnterpriseKey(): string {
return this.configService.get<string>('ENTERPRISE_KEY');
getBillingTrialDays(): number {
return parseInt(this.configService.get<string>('BILLING_TRIAL_DAYS', '14'));
}
getCollabUrl(): string {