mirror of
https://github.com/fosrl/pangolin.git
synced 2026-08-25 21:45:24 +02:00
Merge branch 'dev' into feat/ip-filtering
This commit is contained in:
@@ -23,6 +23,12 @@ export async function createCertificate(
|
||||
throw new Error(`Domain with ID ${domainId} not found`);
|
||||
}
|
||||
|
||||
// Note: certificates.domain has a global UNIQUE constraint (it is not
|
||||
// scoped per-domainId), so existence must be checked by domain value
|
||||
// alone. Filtering on domainId here as well can cause this check to
|
||||
// miss an existing cert (e.g. if it was stored under a different but
|
||||
// still-valid domainId), leading to an INSERT that then fails on the
|
||||
// unique constraint.
|
||||
let existing: Certificate[] = [];
|
||||
if (domainRecord.type == "ns" || domainRecord.type == "wildcard") {
|
||||
const domainLevelDown = domain.split(".").slice(1).join(".");
|
||||
@@ -32,16 +38,13 @@ export async function createCertificate(
|
||||
.select()
|
||||
.from(certificates)
|
||||
.where(
|
||||
and(
|
||||
eq(certificates.domainId, domainId),
|
||||
or(
|
||||
eq(certificates.domain, domain),
|
||||
and(
|
||||
eq(certificates.wildcard, true),
|
||||
or(
|
||||
eq(certificates.domain, domainLevelDown),
|
||||
eq(certificates.domain, wildcardPrefixed)
|
||||
)
|
||||
or(
|
||||
eq(certificates.domain, domain),
|
||||
and(
|
||||
eq(certificates.wildcard, true),
|
||||
or(
|
||||
eq(certificates.domain, domainLevelDown),
|
||||
eq(certificates.domain, wildcardPrefixed)
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -51,12 +54,7 @@ export async function createCertificate(
|
||||
existing = await trx
|
||||
.select()
|
||||
.from(certificates)
|
||||
.where(
|
||||
and(
|
||||
eq(certificates.domainId, domainId),
|
||||
eq(certificates.domain, domain) // exact match for non-NS domains
|
||||
)
|
||||
);
|
||||
.where(eq(certificates.domain, domain)); // exact match for non-NS domains
|
||||
}
|
||||
|
||||
if (existing.length > 0) {
|
||||
@@ -87,16 +85,22 @@ export async function createCertificate(
|
||||
}
|
||||
}
|
||||
|
||||
// No cert found, create a new one in pending state
|
||||
await trx.insert(certificates).values({
|
||||
domain: domainToWrite,
|
||||
domainId,
|
||||
wildcard:
|
||||
domainRecord.type == "ns" ||
|
||||
(domainRecord.type == "wildcard" &&
|
||||
domainRecord.preferWildcardCert), // we can only create wildcard certs for NS domains
|
||||
status: "pending",
|
||||
updatedAt: Math.floor(Date.now() / 1000),
|
||||
createdAt: Math.floor(Date.now() / 1000)
|
||||
});
|
||||
// No cert found, create a new one in pending state. onConflictDoNothing
|
||||
// guards against the domain having been inserted concurrently (or under
|
||||
// a different domainId) between the existence check above and this
|
||||
// insert, since certificates.domain is globally unique.
|
||||
await trx
|
||||
.insert(certificates)
|
||||
.values({
|
||||
domain: domainToWrite,
|
||||
domainId,
|
||||
wildcard:
|
||||
domainRecord.type == "ns" ||
|
||||
(domainRecord.type == "wildcard" &&
|
||||
domainRecord.preferWildcardCert), // we can only create wildcard certs for NS domains
|
||||
status: "pending",
|
||||
updatedAt: Math.floor(Date.now() / 1000),
|
||||
createdAt: Math.floor(Date.now() / 1000)
|
||||
})
|
||||
.onConflictDoNothing();
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Request, Response, NextFunction } from "express";
|
||||
import { z } from "zod";
|
||||
import { db } from "@server/db";
|
||||
import { idp, userResources, users } from "@server/db"; // Assuming these are the correct tables
|
||||
import { idp, resources, userPolicies, userResources, users } from "@server/db"; // Assuming these are the correct tables
|
||||
import { eq } from "drizzle-orm";
|
||||
import response from "@server/lib/response";
|
||||
import HttpCode from "@server/types/HttpCode";
|
||||
@@ -14,7 +14,23 @@ const listResourceUsersSchema = z.strictObject({
|
||||
resourceId: z.coerce.number().int().positive()
|
||||
});
|
||||
|
||||
async function queryUsers(resourceId: number) {
|
||||
async function queryUsers(resourceId: number, policyId: number | null) {
|
||||
if (policyId !== null) {
|
||||
return await db
|
||||
.select({
|
||||
userId: userPolicies.userId,
|
||||
username: users.username,
|
||||
type: users.type,
|
||||
idpName: idp.name,
|
||||
idpId: users.idpId,
|
||||
email: users.email
|
||||
})
|
||||
.from(userPolicies)
|
||||
.innerJoin(users, eq(userPolicies.userId, users.userId))
|
||||
.leftJoin(idp, eq(users.idpId, idp.idpId))
|
||||
.where(eq(userPolicies.resourcePolicyId, policyId));
|
||||
}
|
||||
|
||||
return await db
|
||||
.select({
|
||||
userId: userResources.userId,
|
||||
@@ -104,7 +120,26 @@ export async function listResourceUsers(
|
||||
|
||||
const { resourceId } = parsedParams.data;
|
||||
|
||||
const resourceUsersList = await queryUsers(resourceId);
|
||||
const [resource] = await db
|
||||
.select()
|
||||
.from(resources)
|
||||
.where(eq(resources.resourceId, resourceId))
|
||||
.limit(1);
|
||||
|
||||
if (!resource) {
|
||||
return next(
|
||||
createHttpError(HttpCode.NOT_FOUND, "Resource not found")
|
||||
);
|
||||
}
|
||||
|
||||
const isInlinePolicy =
|
||||
resource.resourcePolicyId === null &&
|
||||
resource.defaultResourcePolicyId !== null;
|
||||
|
||||
const resourceUsersList = await queryUsers(
|
||||
resourceId,
|
||||
isInlinePolicy ? resource.defaultResourcePolicyId! : null
|
||||
);
|
||||
|
||||
return response<ListResourceUsersResponse>(res, {
|
||||
data: {
|
||||
|
||||
Reference in New Issue
Block a user