mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-03-07 16:42:38 +01:00
Some checks failed
Docker Dev Branch Images Build / build (Dockerfile, lc-dev, node) (push) Has been cancelled
Docker Dev Branch Images Build / build (Dockerfile.multi, lc-dev-api, api-build) (push) Has been cancelled
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Has been cancelled
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Has been cancelled
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Has been cancelled
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been cancelled
* chore: move domain related functions to `packages/api` * fix: isEmailDomainAllowed for case-insensitive domain matching - Added tests to validate case-insensitive matching for email domains in various scenarios. - Updated isEmailDomainAllowed function to convert email domains to lowercase for consistent comparison. - Improved handling of null/undefined entries in allowedDomains. * ci: Mock isEmailDomainAllowed in samlStrategy tests - Added a mock implementation for isEmailDomainAllowed to return true in samlStrategy tests, ensuring consistent behavior during test execution. * ci: Update import of isEmailDomainAllowed in ldapStrategy tests - Changed the import of isEmailDomainAllowed from the domains service to the api package for consistency and to reflect recent refactoring.
98 lines
2.5 KiB
TypeScript
98 lines
2.5 KiB
TypeScript
/**
|
|
* @param email
|
|
* @param allowedDomains
|
|
*/
|
|
export function isEmailDomainAllowed(email: string, allowedDomains?: string[] | null): boolean {
|
|
if (!email) {
|
|
return false;
|
|
}
|
|
|
|
const domain = email.split('@')[1]?.toLowerCase();
|
|
|
|
if (!domain) {
|
|
return false;
|
|
}
|
|
|
|
if (!allowedDomains) {
|
|
return true;
|
|
} else if (!Array.isArray(allowedDomains) || !allowedDomains.length) {
|
|
return true;
|
|
}
|
|
|
|
return allowedDomains.some((allowedDomain) => allowedDomain?.toLowerCase() === domain);
|
|
}
|
|
|
|
/**
|
|
* Normalizes a domain string. If the domain is invalid, returns null.
|
|
* Normalized === lowercase, trimmed, and protocol added if missing.
|
|
* @param domain
|
|
*/
|
|
function normalizeDomain(domain: string): string | null {
|
|
try {
|
|
let normalizedDomain = domain.toLowerCase().trim();
|
|
|
|
// Early return for obviously invalid formats
|
|
if (normalizedDomain === 'http://' || normalizedDomain === 'https://') {
|
|
return null;
|
|
}
|
|
|
|
// If it's not already a URL, make it one
|
|
if (!normalizedDomain.startsWith('http://') && !normalizedDomain.startsWith('https://')) {
|
|
normalizedDomain = `https://${normalizedDomain}`;
|
|
}
|
|
|
|
const url = new URL(normalizedDomain);
|
|
// Additional validation that hostname isn't just protocol
|
|
if (!url.hostname || url.hostname === 'http:' || url.hostname === 'https:') {
|
|
return null;
|
|
}
|
|
|
|
return url.hostname.replace(/^www\./i, '');
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks if the given domain is allowed. If no restrictions are set, allows all domains.
|
|
* @param domain
|
|
* @param allowedDomains
|
|
*/
|
|
export async function isActionDomainAllowed(
|
|
domain?: string | null,
|
|
allowedDomains?: string[] | null,
|
|
): Promise<boolean> {
|
|
if (!domain || typeof domain !== 'string') {
|
|
return false;
|
|
}
|
|
|
|
if (!Array.isArray(allowedDomains) || !allowedDomains.length) {
|
|
return true;
|
|
}
|
|
|
|
const normalizedInputDomain = normalizeDomain(domain);
|
|
if (!normalizedInputDomain) {
|
|
return false;
|
|
}
|
|
|
|
for (const allowedDomain of allowedDomains) {
|
|
const normalizedAllowedDomain = normalizeDomain(allowedDomain);
|
|
if (!normalizedAllowedDomain) {
|
|
continue;
|
|
}
|
|
|
|
if (normalizedAllowedDomain.startsWith('*.')) {
|
|
const baseDomain = normalizedAllowedDomain.slice(2);
|
|
if (
|
|
normalizedInputDomain === baseDomain ||
|
|
normalizedInputDomain.endsWith(`.${baseDomain}`)
|
|
) {
|
|
return true;
|
|
}
|
|
} else if (normalizedInputDomain === normalizedAllowedDomain) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|