85 lines
2.6 KiB
TypeScript
85 lines
2.6 KiB
TypeScript
import { Resource } from "@opencode-ai/console-resource"
|
|
import { Actor } from "@opencode-ai/console-core/actor.js"
|
|
import { action, query } from "@solidjs/router"
|
|
import { withActor } from "~/context/auth.withActor"
|
|
import { Billing } from "@opencode-ai/console-core/billing.js"
|
|
import { User } from "@opencode-ai/console-core/user.js"
|
|
import { and, Database, desc, eq, isNull } from "@opencode-ai/console-core/drizzle/index.js"
|
|
import { WorkspaceTable } from "@opencode-ai/console-core/schema/workspace.sql.js"
|
|
import { UserTable } from "@opencode-ai/console-core/schema/user.sql.js"
|
|
|
|
export function formatDateForTable(date: Date) {
|
|
const options: Intl.DateTimeFormatOptions = {
|
|
day: "numeric",
|
|
month: "short",
|
|
hour: "numeric",
|
|
minute: "2-digit",
|
|
hour12: true,
|
|
}
|
|
return date.toLocaleDateString(undefined, options).replace(",", ",")
|
|
}
|
|
|
|
export function formatDateUTC(date: Date) {
|
|
const options: Intl.DateTimeFormatOptions = {
|
|
weekday: "short",
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
hour: "numeric",
|
|
minute: "2-digit",
|
|
second: "2-digit",
|
|
timeZoneName: "short",
|
|
timeZone: "UTC",
|
|
}
|
|
return date.toLocaleDateString("en-US", options)
|
|
}
|
|
|
|
export async function getLastSeenWorkspaceID() {
|
|
"use server"
|
|
return withActor(async () => {
|
|
const actor = Actor.assert("account")
|
|
return Database.use(async (tx) =>
|
|
tx
|
|
.select({ id: WorkspaceTable.id })
|
|
.from(UserTable)
|
|
.innerJoin(WorkspaceTable, eq(UserTable.workspaceID, WorkspaceTable.id))
|
|
.where(
|
|
and(
|
|
eq(UserTable.accountID, actor.properties.accountID),
|
|
isNull(UserTable.timeDeleted),
|
|
isNull(WorkspaceTable.timeDeleted),
|
|
),
|
|
)
|
|
.orderBy(desc(UserTable.timeSeen))
|
|
.limit(1)
|
|
.then((x) => x[0]?.id),
|
|
)
|
|
})
|
|
}
|
|
|
|
export const querySessionInfo = query(async (workspaceID: string) => {
|
|
"use server"
|
|
return withActor(() => {
|
|
return {
|
|
isAdmin: Actor.userRole() === "admin",
|
|
isBeta:
|
|
Resource.App.stage === "production"
|
|
? workspaceID === "wrk_01K46JDFR0E75SG2Q8K172KF3Y"
|
|
: true,
|
|
}
|
|
}, workspaceID)
|
|
}, "session.get")
|
|
|
|
export const createCheckoutUrl = action(
|
|
async (workspaceID: string, successUrl: string, cancelUrl: string) => {
|
|
"use server"
|
|
return withActor(() => Billing.generateCheckoutUrl({ successUrl, cancelUrl }), workspaceID)
|
|
},
|
|
"checkoutUrl",
|
|
)
|
|
|
|
export const queryBillingInfo = query(async (workspaceID: string) => {
|
|
"use server"
|
|
return withActor(() => Billing.get(), workspaceID)
|
|
}, "billing.get")
|