🔧 refactor: Add and use PrincipalType Enum

- Replaced string literals for principal types ('user', 'group', 'public') with the new PrincipalType enum across various models, services, and tests for improved type safety and consistency.
- Updated permission handling in multiple files to utilize the PrincipalType enum, enhancing maintainability and reducing potential errors.
- Ensured all relevant tests reflect these changes to maintain coverage and functionality.
This commit is contained in:
Danny Avila 2025-08-02 16:02:56 -04:00
parent 0262c25989
commit 49d1cefe71
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956
23 changed files with 253 additions and 219 deletions

View file

@ -14,7 +14,7 @@ const mongoose = require('mongoose');
const { v4: uuidv4 } = require('uuid'); const { v4: uuidv4 } = require('uuid');
const { agentSchema } = require('@librechat/data-schemas'); const { agentSchema } = require('@librechat/data-schemas');
const { MongoMemoryServer } = require('mongodb-memory-server'); const { MongoMemoryServer } = require('mongodb-memory-server');
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { const {
getAgent, getAgent,
loadAgent, loadAgent,
@ -500,7 +500,7 @@ describe('models/Agent', () => {
// Grant permissions (simulating sharing) // Grant permissions (simulating sharing)
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: authorId, principalId: authorId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,

View file

@ -2,7 +2,7 @@ const mongoose = require('mongoose');
const { v4: uuidv4 } = require('uuid'); const { v4: uuidv4 } = require('uuid');
const { createModels } = require('@librechat/data-schemas'); const { createModels } = require('@librechat/data-schemas');
const { MongoMemoryServer } = require('mongodb-memory-server'); const { MongoMemoryServer } = require('mongodb-memory-server');
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
const { getFiles, createFile } = require('./File'); const { getFiles, createFile } = require('./File');
const { seedDefaultRoles } = require('~/models'); const { seedDefaultRoles } = require('~/models');
@ -115,7 +115,7 @@ describe('File Access Control', () => {
// Grant EDIT permission to user on the agent // Grant EDIT permission to user on the agent
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -232,7 +232,7 @@ describe('File Access Control', () => {
// Grant only VIEW permission to user on the agent // Grant only VIEW permission to user on the agent
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -290,7 +290,7 @@ describe('File Access Control', () => {
// Grant EDIT permission to user on the agent // Grant EDIT permission to user on the agent
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,

View file

@ -6,6 +6,7 @@ const {
SystemRoles, SystemRoles,
ResourceType, ResourceType,
AccessRoleIds, AccessRoleIds,
PrincipalType,
PermissionBits, PermissionBits,
} = require('librechat-data-provider'); } = require('librechat-data-provider');
@ -151,7 +152,7 @@ describe('Prompt ACL Permissions', () => {
// Manually grant permissions as would happen in the route // Manually grant permissions as would happen in the route
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
@ -163,7 +164,7 @@ describe('Prompt ACL Permissions', () => {
const aclEntry = await AclEntry.findOne({ const aclEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
}); });
@ -195,7 +196,7 @@ describe('Prompt ACL Permissions', () => {
// Grant owner permissions // Grant owner permissions
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testPromptGroup._id, resourceId: testPromptGroup._id,
@ -233,7 +234,7 @@ describe('Prompt ACL Permissions', () => {
it('user with viewer role should only have view access', async () => { it('user with viewer role should only have view access', async () => {
// Grant viewer permissions // Grant viewer permissions
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.viewer._id, principalId: testUsers.viewer._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testPromptGroup._id, resourceId: testPromptGroup._id,
@ -355,7 +356,7 @@ describe('Prompt ACL Permissions', () => {
// Grant edit permissions to the group // Grant edit permissions to the group
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: testGroups.editors._id, principalId: testGroups.editors._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testPromptGroup._id, resourceId: testPromptGroup._id,
@ -423,7 +424,7 @@ describe('Prompt ACL Permissions', () => {
// Grant public view access to publicPromptGroup // Grant public view access to publicPromptGroup
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: publicPromptGroup._id, resourceId: publicPromptGroup._id,
@ -433,7 +434,7 @@ describe('Prompt ACL Permissions', () => {
// Grant only owner access to privatePromptGroup // Grant only owner access to privatePromptGroup
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: privatePromptGroup._id, resourceId: privatePromptGroup._id,
@ -504,7 +505,7 @@ describe('Prompt ACL Permissions', () => {
// Grant permission // Grant permission
await permissionService.grantPermission({ await permissionService.grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testPromptGroup._id, resourceId: testPromptGroup._id,

View file

@ -6,6 +6,7 @@ const {
Constants, Constants,
ResourceType, ResourceType,
AccessRoleIds, AccessRoleIds,
PrincipalType,
PermissionBits, PermissionBits,
} = require('librechat-data-provider'); } = require('librechat-data-provider');
@ -158,7 +159,7 @@ describe('PromptGroup Migration Script', () => {
const globalOwnerEntry = await AclEntry.findOne({ const globalOwnerEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: globalPromptGroup._id, resourceId: globalPromptGroup._id,
principalType: 'user', principalType: PrincipalType.USER,
principalId: testOwner._id, principalId: testOwner._id,
}); });
expect(globalOwnerEntry).toBeTruthy(); expect(globalOwnerEntry).toBeTruthy();
@ -167,7 +168,7 @@ describe('PromptGroup Migration Script', () => {
const globalPublicEntry = await AclEntry.findOne({ const globalPublicEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: globalPromptGroup._id, resourceId: globalPromptGroup._id,
principalType: 'public', principalType: PrincipalType.PUBLIC,
}); });
expect(globalPublicEntry).toBeTruthy(); expect(globalPublicEntry).toBeTruthy();
expect(globalPublicEntry.permBits).toBe(viewerRole.permBits); expect(globalPublicEntry.permBits).toBe(viewerRole.permBits);
@ -176,7 +177,7 @@ describe('PromptGroup Migration Script', () => {
const privateOwnerEntry = await AclEntry.findOne({ const privateOwnerEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: privatePromptGroup._id, resourceId: privatePromptGroup._id,
principalType: 'user', principalType: PrincipalType.USER,
principalId: testOwner._id, principalId: testOwner._id,
}); });
expect(privateOwnerEntry).toBeTruthy(); expect(privateOwnerEntry).toBeTruthy();
@ -185,7 +186,7 @@ describe('PromptGroup Migration Script', () => {
const privatePublicEntry = await AclEntry.findOne({ const privatePublicEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: privatePromptGroup._id, resourceId: privatePromptGroup._id,
principalType: 'public', principalType: PrincipalType.PUBLIC,
}); });
expect(privatePublicEntry).toBeNull(); expect(privatePublicEntry).toBeNull();
}); });
@ -208,7 +209,7 @@ describe('PromptGroup Migration Script', () => {
// Grant permission to one promptGroup manually (simulating it already has ACL) // Grant permission to one promptGroup manually (simulating it already has ACL)
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testOwner._id, principalId: testOwner._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,

View file

@ -4,7 +4,7 @@
const mongoose = require('mongoose'); const mongoose = require('mongoose');
const { logger } = require('@librechat/data-schemas'); const { logger } = require('@librechat/data-schemas');
const { ResourceType } = require('librechat-data-provider'); const { ResourceType, PrincipalType } = require('librechat-data-provider');
const { const {
bulkUpdateResourcePermissions, bulkUpdateResourcePermissions,
ensureGroupPrincipalExists, ensureGroupPrincipalExists,
@ -235,14 +235,14 @@ const getResourcePermissions = async (req, res) => {
// Process aggregation results // Process aggregation results
for (const result of results) { for (const result of results) {
if (result.principalType === 'public') { if (result.principalType === PrincipalType.PUBLIC) {
publicPermission = { publicPermission = {
public: true, public: true,
publicAccessRoleId: result.accessRoleId, publicAccessRoleId: result.accessRoleId,
}; };
} else if (result.principalType === 'user' && result.userInfo) { } else if (result.principalType === PrincipalType.USER && result.userInfo) {
principals.push({ principals.push({
type: 'user', type: PrincipalType.USER,
id: result.userInfo._id.toString(), id: result.userInfo._id.toString(),
name: result.userInfo.name || result.userInfo.username, name: result.userInfo.name || result.userInfo.username,
email: result.userInfo.email, email: result.userInfo.email,
@ -251,9 +251,9 @@ const getResourcePermissions = async (req, res) => {
idOnTheSource: result.userInfo.idOnTheSource || result.userInfo._id.toString(), idOnTheSource: result.userInfo.idOnTheSource || result.userInfo._id.toString(),
accessRoleId: result.accessRoleId, accessRoleId: result.accessRoleId,
}); });
} else if (result.principalType === 'group' && result.groupInfo) { } else if (result.principalType === PrincipalType.GROUP && result.groupInfo) {
principals.push({ principals.push({
type: 'group', type: PrincipalType.GROUP,
id: result.groupInfo._id.toString(), id: result.groupInfo._id.toString(),
name: result.groupInfo.name, name: result.groupInfo.name,
email: result.groupInfo.email, email: result.groupInfo.email,

View file

@ -9,9 +9,10 @@ const {
FileSources, FileSources,
ResourceType, ResourceType,
AccessRoleIds, AccessRoleIds,
PrincipalType,
EToolResources, EToolResources,
actionDelimiter,
PermissionBits, PermissionBits,
actionDelimiter,
removeNullishValues, removeNullishValues,
} = require('librechat-data-provider'); } = require('librechat-data-provider');
const { const {
@ -80,7 +81,7 @@ const createAgentHandler = async (req, res) => {
// Automatically grant owner permissions to the creator // Automatically grant owner permissions to the creator
try { try {
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -346,7 +347,7 @@ const duplicateAgentHandler = async (req, res) => {
// Automatically grant owner permissions to the duplicator // Automatically grant owner permissions to the duplicator
try { try {
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: newAgent._id, resourceId: newAgent._id,

View file

@ -1,5 +1,5 @@
const mongoose = require('mongoose'); const mongoose = require('mongoose');
const { ResourceType } = require('librechat-data-provider'); const { ResourceType, PrincipalType } = require('librechat-data-provider');
const { MongoMemoryServer } = require('mongodb-memory-server'); const { MongoMemoryServer } = require('mongodb-memory-server');
const { canAccessAgentResource } = require('./canAccessAgentResource'); const { canAccessAgentResource } = require('./canAccessAgentResource');
const { User, Role, AclEntry } = require('~/db/models'); const { User, Role, AclEntry } = require('~/db/models');
@ -97,7 +97,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry for the author (owner permissions) // Create ACL entry for the author (owner permissions)
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUser._id, principalId: testUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -134,7 +134,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry for the other user (owner) // Create ACL entry for the other user (owner)
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUser._id, principalId: otherUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -175,7 +175,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry granting view permission to test user // Create ACL entry granting view permission to test user
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUser._id, principalId: testUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -212,7 +212,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry granting only view permission // Create ACL entry granting only view permission
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUser._id, principalId: testUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -259,7 +259,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry for the author // Create ACL entry for the author
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUser._id, principalId: testUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -295,7 +295,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry with all permissions for the owner // Create ACL entry with all permissions for the owner
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUser._id, principalId: testUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -355,7 +355,7 @@ describe('canAccessAgentResource middleware', () => {
// Create ACL entry for the author // Create ACL entry for the author
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUser._id, principalId: testUser._id,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,

View file

@ -2,9 +2,9 @@ const express = require('express');
const request = require('supertest'); const request = require('supertest');
const mongoose = require('mongoose'); const mongoose = require('mongoose');
const { v4: uuidv4 } = require('uuid'); const { v4: uuidv4 } = require('uuid');
const { MongoMemoryServer } = require('mongodb-memory-server');
const { createMethods } = require('@librechat/data-schemas'); const { createMethods } = require('@librechat/data-schemas');
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { MongoMemoryServer } = require('mongodb-memory-server');
const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { createAgent } = require('~/models/Agent'); const { createAgent } = require('~/models/Agent');
const { createFile } = require('~/models/File'); const { createFile } = require('~/models/File');
@ -185,7 +185,7 @@ describe('File Routes - Agent Files Endpoint', () => {
// Grant EDIT permission to user on the agent using PermissionService // Grant EDIT permission to user on the agent using PermissionService
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUserId, principalId: otherUserId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -240,7 +240,7 @@ describe('File Routes - Agent Files Endpoint', () => {
// Grant only VIEW permission to user on the agent // Grant only VIEW permission to user on the agent
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUserId, principalId: otherUserId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,

View file

@ -4,7 +4,7 @@ const mongoose = require('mongoose');
const { v4: uuidv4 } = require('uuid'); const { v4: uuidv4 } = require('uuid');
const { createMethods } = require('@librechat/data-schemas'); const { createMethods } = require('@librechat/data-schemas');
const { MongoMemoryServer } = require('mongodb-memory-server'); const { MongoMemoryServer } = require('mongodb-memory-server');
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { createAgent } = require('~/models/Agent'); const { createAgent } = require('~/models/Agent');
const { createFile } = require('~/models/File'); const { createFile } = require('~/models/File');
@ -227,7 +227,7 @@ describe('File Routes - Delete with Agent Access', () => {
// Grant EDIT permission to user on the agent // Grant EDIT permission to user on the agent
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUserId, principalId: otherUserId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -281,7 +281,7 @@ describe('File Routes - Delete with Agent Access', () => {
// Grant EDIT permission to user on the agent // Grant EDIT permission to user on the agent
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUserId, principalId: otherUserId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -347,7 +347,7 @@ describe('File Routes - Delete with Agent Access', () => {
// Grant EDIT permission to user on the agent // Grant EDIT permission to user on the agent
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUserId, principalId: otherUserId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -390,7 +390,7 @@ describe('File Routes - Delete with Agent Access', () => {
// Grant only VIEW permission to user on the agent // Grant only VIEW permission to user on the agent
const { grantPermission } = require('~/server/services/PermissionService'); const { grantPermission } = require('~/server/services/PermissionService');
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: otherUserId, principalId: otherUserId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,

View file

@ -6,8 +6,9 @@ const {
SystemRoles, SystemRoles,
ResourceType, ResourceType,
AccessRoleIds, AccessRoleIds,
PermissionTypes, PrincipalType,
PermissionBits, PermissionBits,
PermissionTypes,
} = require('librechat-data-provider'); } = require('librechat-data-provider');
const { const {
makePromptProduction, makePromptProduction,
@ -189,7 +190,7 @@ const createNewPromptGroup = async (req, res) => {
if (result.prompt && result.prompt._id && result.prompt.groupId) { if (result.prompt && result.prompt._id && result.prompt.groupId) {
try { try {
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: req.user.id, principalId: req.user.id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: result.prompt.groupId, resourceId: result.prompt.groupId,

View file

@ -7,6 +7,7 @@ const {
SystemRoles, SystemRoles,
ResourceType, ResourceType,
AccessRoleIds, AccessRoleIds,
PrincipalType,
PermissionBits, PermissionBits,
} = require('librechat-data-provider'); } = require('librechat-data-provider');
@ -223,7 +224,7 @@ describe('Prompt Routes - ACL Permissions', () => {
const aclEntry = await AclEntry.findOne({ const aclEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: response.body.prompt.groupId, resourceId: response.body.prompt.groupId,
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
}); });
@ -253,7 +254,7 @@ describe('Prompt Routes - ACL Permissions', () => {
const aclEntry = await AclEntry.findOne({ const aclEntry = await AclEntry.findOne({
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: response.body.group._id, resourceId: response.body.group._id,
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
}); });
@ -294,7 +295,7 @@ describe('Prompt Routes - ACL Permissions', () => {
it('should retrieve prompt when user has view permissions', async () => { it('should retrieve prompt when user has view permissions', async () => {
// Grant view permissions on the promptGroup // Grant view permissions on the promptGroup
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
@ -379,7 +380,7 @@ describe('Prompt Routes - ACL Permissions', () => {
// Grant owner permissions on the promptGroup // Grant owner permissions on the promptGroup
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
@ -426,7 +427,7 @@ describe('Prompt Routes - ACL Permissions', () => {
// Grant only viewer permissions to viewer user on the promptGroup // Grant only viewer permissions to viewer user on the promptGroup
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.viewer._id, principalId: testUsers.viewer._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
@ -493,7 +494,7 @@ describe('Prompt Routes - ACL Permissions', () => {
it('should make prompt production when user has edit permissions', async () => { it('should make prompt production when user has edit permissions', async () => {
// Grant edit permissions on the promptGroup // Grant edit permissions on the promptGroup
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.owner._id, principalId: testUsers.owner._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
@ -531,7 +532,7 @@ describe('Prompt Routes - ACL Permissions', () => {
it('should deny making production when user lacks edit permissions', async () => { it('should deny making production when user lacks edit permissions', async () => {
// Grant only view permissions to viewer on the promptGroup // Grant only view permissions to viewer on the promptGroup
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: testUsers.viewer._id, principalId: testUsers.viewer._id,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: testGroup._id, resourceId: testGroup._id,
@ -588,7 +589,7 @@ describe('Prompt Routes - ACL Permissions', () => {
// Grant public viewer access on the promptGroup // Grant public viewer access on the promptGroup
await grantPermission({ await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: publicGroup._id, resourceId: publicGroup._id,

View file

@ -17,6 +17,11 @@ jest.mock('~/config', () => ({
jest.mock('librechat-data-provider', () => ({ jest.mock('librechat-data-provider', () => ({
isUUID: { parse: jest.fn() }, isUUID: { parse: jest.fn() },
megabyte: 1024 * 1024, megabyte: 1024 * 1024,
PrincipalType: {
USER: 'user',
GROUP: 'group',
PUBLIC: 'public',
},
FileContext: { message_attachment: 'message_attachment' }, FileContext: { message_attachment: 'message_attachment' },
FileSources: { local: 'local' }, FileSources: { local: 'local' },
EModelEndpoint: { assistants: 'assistants' }, EModelEndpoint: { assistants: 'assistants' },

View file

@ -1,6 +1,6 @@
const mongoose = require('mongoose'); const mongoose = require('mongoose');
const { isEnabled } = require('@librechat/api'); const { isEnabled } = require('@librechat/api');
const { ResourceType } = require('librechat-data-provider'); const { ResourceType, PrincipalType } = require('librechat-data-provider');
const { getTransactionSupport, logger } = require('@librechat/data-schemas'); const { getTransactionSupport, logger } = require('@librechat/data-schemas');
const { const {
entraIdPrincipalFeatureEnabled, entraIdPrincipalFeatureEnabled,
@ -65,11 +65,11 @@ const grantPermission = async ({
session, session,
}) => { }) => {
try { try {
if (!['user', 'group', 'public'].includes(principalType)) { if (!Object.values(PrincipalType).includes(principalType)) {
throw new Error(`Invalid principal type: ${principalType}`); throw new Error(`Invalid principal type: ${principalType}`);
} }
if (principalType !== 'public' && !principalId) { if (principalType !== PrincipalType.PUBLIC && !principalId) {
throw new Error('Principal ID is required for user and group principals'); throw new Error('Principal ID is required for user and group principals');
} }
@ -221,7 +221,7 @@ const findPubliclyAccessibleResources = async ({ resourceType, requiredPermissio
// Find all public ACL entries where the public principal has at least the required permission bits // Find all public ACL entries where the public principal has at least the required permission bits
const entries = await AclEntry.find({ const entries = await AclEntry.find({
principalType: 'public', principalType: PrincipalType.PUBLIC,
resourceType, resourceType,
permBits: { $bitsAllSet: requiredPermissions }, permBits: { $bitsAllSet: requiredPermissions },
}).distinct('resourceId'); }).distinct('resourceId');
@ -505,7 +505,7 @@ const hasPublicPermission = async ({ resourceType, resourceId, requiredPermissio
validateResourceType(resourceType); validateResourceType(resourceType);
// Use public principal to check permissions // Use public principal to check permissions
const publicPrincipal = [{ principalType: 'public' }]; const publicPrincipal = [{ principalType: PrincipalType.PUBLIC }];
const entries = await findEntriesByPrincipalsAndResource( const entries = await findEntriesByPrincipalsAndResource(
publicPrincipal, publicPrincipal,

View file

@ -1,7 +1,7 @@
const mongoose = require('mongoose'); const mongoose = require('mongoose');
const { RoleBits, createModels } = require('@librechat/data-schemas'); const { RoleBits, createModels } = require('@librechat/data-schemas');
const { MongoMemoryServer } = require('mongodb-memory-server'); const { MongoMemoryServer } = require('mongodb-memory-server');
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { const {
bulkUpdateResourcePermissions, bulkUpdateResourcePermissions,
getEffectivePermissions, getEffectivePermissions,
@ -78,7 +78,7 @@ describe('PermissionService', () => {
describe('grantPermission', () => { describe('grantPermission', () => {
test('should grant permission to a user with a role', async () => { test('should grant permission to a user with a role', async () => {
const entry = await grantPermission({ const entry = await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -103,7 +103,7 @@ describe('PermissionService', () => {
test('should grant permission to a group with a role', async () => { test('should grant permission to a group with a role', async () => {
const entry = await grantPermission({ const entry = await grantPermission({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: groupId, principalId: groupId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -112,7 +112,7 @@ describe('PermissionService', () => {
}); });
expect(entry).toBeDefined(); expect(entry).toBeDefined();
expect(entry.principalType).toBe('group'); expect(entry.principalType).toBe(PrincipalType.GROUP);
expect(entry.principalId.toString()).toBe(groupId.toString()); expect(entry.principalId.toString()).toBe(groupId.toString());
expect(entry.principalModel).toBe('Group'); expect(entry.principalModel).toBe('Group');
@ -124,7 +124,7 @@ describe('PermissionService', () => {
test('should grant public permission with a role', async () => { test('should grant public permission with a role', async () => {
const entry = await grantPermission({ const entry = await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -133,7 +133,7 @@ describe('PermissionService', () => {
}); });
expect(entry).toBeDefined(); expect(entry).toBeDefined();
expect(entry.principalType).toBe('public'); expect(entry.principalType).toBe(PrincipalType.PUBLIC);
expect(entry.principalId).toBeUndefined(); expect(entry.principalId).toBeUndefined();
expect(entry.principalModel).toBeUndefined(); expect(entry.principalModel).toBeUndefined();
@ -159,7 +159,7 @@ describe('PermissionService', () => {
test('should throw error for missing principalId with user type', async () => { test('should throw error for missing principalId with user type', async () => {
await expect( await expect(
grantPermission({ grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: null, principalId: null,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -172,7 +172,7 @@ describe('PermissionService', () => {
test('should throw error for non-existent role', async () => { test('should throw error for non-existent role', async () => {
await expect( await expect(
grantPermission({ grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -185,7 +185,7 @@ describe('PermissionService', () => {
test('should throw error for role-resource type mismatch', async () => { test('should throw error for role-resource type mismatch', async () => {
await expect( await expect(
grantPermission({ grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -198,7 +198,7 @@ describe('PermissionService', () => {
test('should update existing permission when granting to same principal and resource', async () => { test('should update existing permission when granting to same principal and resource', async () => {
// First grant with viewer role // First grant with viewer role
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -208,7 +208,7 @@ describe('PermissionService', () => {
// Then update to editor role // Then update to editor role
const updated = await grantPermission({ const updated = await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -222,7 +222,7 @@ describe('PermissionService', () => {
// Verify there's only one entry // Verify there's only one entry
const entries = await AclEntry.find({ const entries = await AclEntry.find({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -240,7 +240,7 @@ describe('PermissionService', () => {
// Setup test data // Setup test data
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -250,7 +250,7 @@ describe('PermissionService', () => {
otherResourceId = new mongoose.Types.ObjectId(); otherResourceId = new mongoose.Types.ObjectId();
await grantPermission({ await grantPermission({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: groupId, principalId: groupId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: otherResourceId, resourceId: otherResourceId,
@ -261,7 +261,9 @@ describe('PermissionService', () => {
test('should check permission for user principal', async () => { test('should check permission for user principal', async () => {
// Mock getUserPrincipals to return just the user principal // Mock getUserPrincipals to return just the user principal
getUserPrincipals.mockResolvedValue([{ principalType: 'user', principalId: userId }]); getUserPrincipals.mockResolvedValue([
{ principalType: PrincipalType.USER, principalId: userId },
]);
const hasViewPermission = await checkPermission({ const hasViewPermission = await checkPermission({
userId, userId,
@ -286,8 +288,8 @@ describe('PermissionService', () => {
test('should check permission for user and group principals', async () => { test('should check permission for user and group principals', async () => {
// Mock getUserPrincipals to return both user and group principals // Mock getUserPrincipals to return both user and group principals
getUserPrincipals.mockResolvedValue([ getUserPrincipals.mockResolvedValue([
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
]); ]);
// Check original resource (user has access) // Check original resource (user has access)
@ -317,7 +319,7 @@ describe('PermissionService', () => {
// Grant public access to a resource // Grant public access to a resource
await grantPermission({ await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: publicResourceId, resourceId: publicResourceId,
@ -327,9 +329,9 @@ describe('PermissionService', () => {
// Mock getUserPrincipals to return user, group, and public principals // Mock getUserPrincipals to return user, group, and public principals
getUserPrincipals.mockResolvedValue([ getUserPrincipals.mockResolvedValue([
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
{ principalType: 'public' }, { principalType: PrincipalType.PUBLIC },
]); ]);
const hasPublicAccess = await checkPermission({ const hasPublicAccess = await checkPermission({
@ -343,7 +345,9 @@ describe('PermissionService', () => {
}); });
test('should return false for invalid permission bits', async () => { test('should return false for invalid permission bits', async () => {
getUserPrincipals.mockResolvedValue([{ principalType: 'user', principalId: userId }]); getUserPrincipals.mockResolvedValue([
{ principalType: PrincipalType.USER, principalId: userId },
]);
await expect( await expect(
checkPermission({ checkPermission({
@ -385,7 +389,7 @@ describe('PermissionService', () => {
// Setup test data with multiple permissions from different sources // Setup test data with multiple permissions from different sources
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -394,7 +398,7 @@ describe('PermissionService', () => {
}); });
await grantPermission({ await grantPermission({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: groupId, principalId: groupId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -405,7 +409,7 @@ describe('PermissionService', () => {
// Create another resource with public permission // Create another resource with public permission
const publicResourceId = new mongoose.Types.ObjectId(); const publicResourceId = new mongoose.Types.ObjectId();
await grantPermission({ await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: publicResourceId, resourceId: publicResourceId,
@ -418,7 +422,7 @@ describe('PermissionService', () => {
const childResourceId = new mongoose.Types.ObjectId(); const childResourceId = new mongoose.Types.ObjectId();
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: parentResourceId, resourceId: parentResourceId,
@ -427,7 +431,7 @@ describe('PermissionService', () => {
}); });
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -443,8 +447,8 @@ describe('PermissionService', () => {
test('should get effective permissions from multiple sources', async () => { test('should get effective permissions from multiple sources', async () => {
// Mock getUserPrincipals to return both user and group principals // Mock getUserPrincipals to return both user and group principals
getUserPrincipals.mockResolvedValue([ getUserPrincipals.mockResolvedValue([
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
]); ]);
const effective = await getEffectivePermissions({ const effective = await getEffectivePermissions({
@ -464,7 +468,9 @@ describe('PermissionService', () => {
const childResourceId = inheritedEntry.resourceId; const childResourceId = inheritedEntry.resourceId;
// Mock getUserPrincipals to return user principal // Mock getUserPrincipals to return user principal
getUserPrincipals.mockResolvedValue([{ principalType: 'user', principalId: userId }]); getUserPrincipals.mockResolvedValue([
{ principalType: PrincipalType.USER, principalId: userId },
]);
const effective = await getEffectivePermissions({ const effective = await getEffectivePermissions({
userId, userId,
@ -516,7 +522,7 @@ describe('PermissionService', () => {
// User can view resource 1 // User can view resource 1
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: resource1, resourceId: resource1,
@ -526,7 +532,7 @@ describe('PermissionService', () => {
// User can edit resource 2 // User can edit resource 2
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: resource2, resourceId: resource2,
@ -536,7 +542,7 @@ describe('PermissionService', () => {
// Group can view resource 3 // Group can view resource 3
await grantPermission({ await grantPermission({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: groupId, principalId: groupId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: resource3, resourceId: resource3,
@ -547,7 +553,9 @@ describe('PermissionService', () => {
test('should find resources user can view', async () => { test('should find resources user can view', async () => {
// Mock getUserPrincipals to return user principal // Mock getUserPrincipals to return user principal
getUserPrincipals.mockResolvedValue([{ principalType: 'user', principalId: userId }]); getUserPrincipals.mockResolvedValue([
{ principalType: PrincipalType.USER, principalId: userId },
]);
const viewableResources = await findAccessibleResources({ const viewableResources = await findAccessibleResources({
userId, userId,
@ -561,7 +569,9 @@ describe('PermissionService', () => {
test('should find resources user can edit', async () => { test('should find resources user can edit', async () => {
// Mock getUserPrincipals to return user principal // Mock getUserPrincipals to return user principal
getUserPrincipals.mockResolvedValue([{ principalType: 'user', principalId: userId }]); getUserPrincipals.mockResolvedValue([
{ principalType: PrincipalType.USER, principalId: userId },
]);
const editableResources = await findAccessibleResources({ const editableResources = await findAccessibleResources({
userId, userId,
@ -576,8 +586,8 @@ describe('PermissionService', () => {
test('should find resources accessible via group membership', async () => { test('should find resources accessible via group membership', async () => {
// Mock getUserPrincipals to return user and group principals // Mock getUserPrincipals to return user and group principals
getUserPrincipals.mockResolvedValue([ getUserPrincipals.mockResolvedValue([
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
]); ]);
const viewableResources = await findAccessibleResources({ const viewableResources = await findAccessibleResources({
@ -591,7 +601,9 @@ describe('PermissionService', () => {
}); });
test('should return empty array for invalid permissions', async () => { test('should return empty array for invalid permissions', async () => {
getUserPrincipals.mockResolvedValue([{ principalType: 'user', principalId: userId }]); getUserPrincipals.mockResolvedValue([
{ principalType: PrincipalType.USER, principalId: userId },
]);
await expect( await expect(
findAccessibleResources({ findAccessibleResources({
@ -652,7 +664,7 @@ describe('PermissionService', () => {
await seedDefaultRoles(); await seedDefaultRoles();
// Setup existing permissions for testing // Setup existing permissions for testing
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -661,7 +673,7 @@ describe('PermissionService', () => {
}); });
await grantPermission({ await grantPermission({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: groupId, principalId: groupId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -670,7 +682,7 @@ describe('PermissionService', () => {
}); });
await grantPermission({ await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -683,17 +695,17 @@ describe('PermissionService', () => {
const newResourceId = new mongoose.Types.ObjectId(); const newResourceId = new mongoose.Types.ObjectId();
const updatedPrincipals = [ const updatedPrincipals = [
{ {
type: 'user', type: PrincipalType.USER,
id: userId, id: userId,
accessRoleId: AccessRoleIds.AGENT_VIEWER, accessRoleId: AccessRoleIds.AGENT_VIEWER,
}, },
{ {
type: 'user', type: PrincipalType.USER,
id: otherUserId, id: otherUserId,
accessRoleId: AccessRoleIds.AGENT_EDITOR, accessRoleId: AccessRoleIds.AGENT_EDITOR,
}, },
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
accessRoleId: AccessRoleIds.AGENT_OWNER, accessRoleId: AccessRoleIds.AGENT_OWNER,
}, },
@ -722,17 +734,17 @@ describe('PermissionService', () => {
test('should update existing permissions in bulk', async () => { test('should update existing permissions in bulk', async () => {
const updatedPrincipals = [ const updatedPrincipals = [
{ {
type: 'user', type: PrincipalType.USER,
id: userId, id: userId,
accessRoleId: AccessRoleIds.AGENT_EDITOR, // Upgrade from viewer to editor accessRoleId: AccessRoleIds.AGENT_EDITOR, // Upgrade from viewer to editor
}, },
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
accessRoleId: AccessRoleIds.AGENT_OWNER, // Upgrade from editor to owner accessRoleId: AccessRoleIds.AGENT_OWNER, // Upgrade from editor to owner
}, },
{ {
type: 'public', type: PrincipalType.PUBLIC,
accessRoleId: AccessRoleIds.AGENT_VIEWER, // Keep same role accessRoleId: AccessRoleIds.AGENT_VIEWER, // Keep same role
}, },
]; ];
@ -752,7 +764,7 @@ describe('PermissionService', () => {
// Verify updates // Verify updates
const userEntry = await AclEntry.findOne({ const userEntry = await AclEntry.findOne({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -760,7 +772,7 @@ describe('PermissionService', () => {
expect(userEntry.roleId.accessRoleId).toBe(AccessRoleIds.AGENT_EDITOR); expect(userEntry.roleId.accessRoleId).toBe(AccessRoleIds.AGENT_EDITOR);
const groupEntry = await AclEntry.findOne({ const groupEntry = await AclEntry.findOne({
principalType: 'group', principalType: PrincipalType.GROUP,
principalId: groupId, principalId: groupId,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
@ -771,11 +783,11 @@ describe('PermissionService', () => {
test('should revoke specified permissions', async () => { test('should revoke specified permissions', async () => {
const revokedPrincipals = [ const revokedPrincipals = [
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
}, },
{ {
type: 'public', type: PrincipalType.PUBLIC,
}, },
]; ];
@ -797,19 +809,19 @@ describe('PermissionService', () => {
resourceId, resourceId,
}); });
expect(remainingEntries).toHaveLength(1); expect(remainingEntries).toHaveLength(1);
expect(remainingEntries[0].principalType).toBe('user'); expect(remainingEntries[0].principalType).toBe(PrincipalType.USER);
expect(remainingEntries[0].principalId.toString()).toBe(userId.toString()); expect(remainingEntries[0].principalId.toString()).toBe(userId.toString());
}); });
test('should handle mixed operations (grant, update, revoke)', async () => { test('should handle mixed operations (grant, update, revoke)', async () => {
const updatedPrincipals = [ const updatedPrincipals = [
{ {
type: 'user', type: PrincipalType.USER,
id: userId, id: userId,
accessRoleId: AccessRoleIds.AGENT_OWNER, // Update existing accessRoleId: AccessRoleIds.AGENT_OWNER, // Update existing
}, },
{ {
type: 'user', type: PrincipalType.USER,
id: otherUserId, id: otherUserId,
accessRoleId: AccessRoleIds.AGENT_VIEWER, // New permission accessRoleId: AccessRoleIds.AGENT_VIEWER, // New permission
}, },
@ -817,11 +829,11 @@ describe('PermissionService', () => {
const revokedPrincipals = [ const revokedPrincipals = [
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
}, },
{ {
type: 'public', type: PrincipalType.PUBLIC,
}, },
]; ];
@ -858,17 +870,17 @@ describe('PermissionService', () => {
test('should handle errors for invalid roles gracefully', async () => { test('should handle errors for invalid roles gracefully', async () => {
const updatedPrincipals = [ const updatedPrincipals = [
{ {
type: 'user', type: PrincipalType.USER,
id: userId, id: userId,
accessRoleId: AccessRoleIds.AGENT_VIEWER, // Valid accessRoleId: AccessRoleIds.AGENT_VIEWER, // Valid
}, },
{ {
type: 'user', type: PrincipalType.USER,
id: otherUserId, id: otherUserId,
accessRoleId: 'non_existent_role', // Invalid accessRoleId: 'non_existent_role', // Invalid
}, },
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
accessRoleId: AccessRoleIds.PROMPTGROUP_VIEWER, // Wrong resource type accessRoleId: AccessRoleIds.PROMPTGROUP_VIEWER, // Wrong resource type
}, },
@ -938,11 +950,11 @@ describe('PermissionService', () => {
test('should handle public permissions correctly', async () => { test('should handle public permissions correctly', async () => {
const updatedPrincipals = [ const updatedPrincipals = [
{ {
type: 'public', type: PrincipalType.PUBLIC,
accessRoleId: AccessRoleIds.AGENT_EDITOR, // Update public permission accessRoleId: AccessRoleIds.AGENT_EDITOR, // Update public permission
}, },
{ {
type: 'user', type: PrincipalType.USER,
id: otherUserId, id: otherUserId,
accessRoleId: AccessRoleIds.AGENT_VIEWER, // New user permission accessRoleId: AccessRoleIds.AGENT_VIEWER, // New user permission
}, },
@ -950,11 +962,11 @@ describe('PermissionService', () => {
const revokedPrincipals = [ const revokedPrincipals = [
{ {
type: 'user', type: PrincipalType.USER,
id: userId, id: userId,
}, },
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
}, },
]; ];
@ -974,7 +986,7 @@ describe('PermissionService', () => {
// Verify public permission was updated // Verify public permission was updated
const publicEntry = await AclEntry.findOne({ const publicEntry = await AclEntry.findOne({
principalType: 'public', principalType: PrincipalType.PUBLIC,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId, resourceId,
}).populate('roleId', 'accessRoleId'); }).populate('roleId', 'accessRoleId');
@ -988,12 +1000,12 @@ describe('PermissionService', () => {
const promptGroupResourceId = new mongoose.Types.ObjectId(); const promptGroupResourceId = new mongoose.Types.ObjectId();
const updatedPrincipals = [ const updatedPrincipals = [
{ {
type: 'user', type: PrincipalType.USER,
id: userId, id: userId,
accessRoleId: AccessRoleIds.PROMPTGROUP_VIEWER, accessRoleId: AccessRoleIds.PROMPTGROUP_VIEWER,
}, },
{ {
type: 'group', type: PrincipalType.GROUP,
id: groupId, id: groupId,
accessRoleId: AccessRoleIds.PROMPTGROUP_EDITOR, accessRoleId: AccessRoleIds.PROMPTGROUP_EDITOR,
}, },

View file

@ -4,7 +4,7 @@ const path = require('path');
const { logger } = require('@librechat/data-schemas'); const { logger } = require('@librechat/data-schemas');
require('module-alias')({ base: path.resolve(__dirname, '..', 'api') }); require('module-alias')({ base: path.resolve(__dirname, '..', 'api') });
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { GLOBAL_PROJECT_NAME } = require('librechat-data-provider').Constants; const { GLOBAL_PROJECT_NAME } = require('librechat-data-provider').Constants;
const connect = require('./connect'); const connect = require('./connect');
@ -51,8 +51,8 @@ async function migrateAgentPermissionsEnhanced({ dryRun = true, batchSize = 100
as: 'aclEntry', as: 'aclEntry',
cond: { cond: {
$and: [ $and: [
{ $eq: ['$$aclEntry.resourceType', 'agent'] }, { $eq: ['$$aclEntry.resourceType', ResourceType.AGENT] },
{ $eq: ['$$aclEntry.principalType', 'user'] }, { $eq: ['$$aclEntry.principalType', PrincipalType.USER] },
], ],
}, },
}, },
@ -163,7 +163,7 @@ async function migrateAgentPermissionsEnhanced({ dryRun = true, batchSize = 100
// Always grant owner permission to author // Always grant owner permission to author
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: agent.author, principalId: agent.author,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,
@ -191,7 +191,7 @@ async function migrateAgentPermissionsEnhanced({ dryRun = true, batchSize = 100
// Grant public permission // Grant public permission
await grantPermission({ await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
resourceId: agent._id, resourceId: agent._id,

View file

@ -2,7 +2,7 @@ const path = require('path');
const { logger } = require('@librechat/data-schemas'); const { logger } = require('@librechat/data-schemas');
require('module-alias')({ base: path.resolve(__dirname, '..', 'api') }); require('module-alias')({ base: path.resolve(__dirname, '..', 'api') });
const { AccessRoleIds, ResourceType } = require('librechat-data-provider'); const { AccessRoleIds, ResourceType, PrincipalType } = require('librechat-data-provider');
const { GLOBAL_PROJECT_NAME } = require('librechat-data-provider').Constants; const { GLOBAL_PROJECT_NAME } = require('librechat-data-provider').Constants;
const connect = require('./connect'); const connect = require('./connect');
@ -51,8 +51,8 @@ async function migrateToPromptGroupPermissions({ dryRun = true, batchSize = 100
as: 'aclEntry', as: 'aclEntry',
cond: { cond: {
$and: [ $and: [
{ $eq: ['$$aclEntry.resourceType', 'promptGroup'] }, { $eq: ['$$aclEntry.resourceType', ResourceType.PROMPTGROUP] },
{ $eq: ['$$aclEntry.principalType', 'user'] }, { $eq: ['$$aclEntry.principalType', PrincipalType.USER] },
], ],
}, },
}, },
@ -145,7 +145,7 @@ async function migrateToPromptGroupPermissions({ dryRun = true, batchSize = 100
// Always grant owner permission to author // Always grant owner permission to author
await grantPermission({ await grantPermission({
principalType: 'user', principalType: PrincipalType.USER,
principalId: group.author, principalId: group.author,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: group._id, resourceId: group._id,
@ -157,7 +157,7 @@ async function migrateToPromptGroupPermissions({ dryRun = true, batchSize = 100
// Grant public view permissions for promptGroups in global project // Grant public view permissions for promptGroups in global project
if (isGlobalGroup) { if (isGlobalGroup) {
await grantPermission({ await grantPermission({
principalType: 'public', principalType: PrincipalType.PUBLIC,
principalId: null, principalId: null,
resourceType: ResourceType.PROMPTGROUP, resourceType: ResourceType.PROMPTGROUP,
resourceId: group._id, resourceId: group._id,

View file

@ -13,7 +13,11 @@ import { z } from 'zod';
/** /**
* Principal types for permission system * Principal types for permission system
*/ */
export type TPrincipalType = 'user' | 'group' | 'public'; export enum PrincipalType {
USER = 'user',
GROUP = 'group',
PUBLIC = 'public',
}
/** /**
* Source of the principal (local LibreChat or external Entra ID) * Source of the principal (local LibreChat or external Entra ID)
@ -65,7 +69,7 @@ export enum AccessRoleIds {
* Principal schema - represents a user, group, or public access * Principal schema - represents a user, group, or public access
*/ */
export const principalSchema = z.object({ export const principalSchema = z.object({
type: z.enum(['user', 'group', 'public']), type: z.nativeEnum(PrincipalType),
id: z.string().optional(), // undefined for 'public' type id: z.string().optional(), // undefined for 'public' type
name: z.string().optional(), name: z.string().optional(),
email: z.string().optional(), // for user and group types email: z.string().optional(), // for user and group types
@ -93,7 +97,7 @@ export const accessRoleSchema = z.object({
*/ */
export const permissionEntrySchema = z.object({ export const permissionEntrySchema = z.object({
id: z.string(), id: z.string(),
principalType: z.enum(['user', 'group', 'public']), principalType: z.nativeEnum(PrincipalType),
principalId: z.string().optional(), // undefined for 'public' principalId: z.string().optional(), // undefined for 'public'
principalName: z.string().optional(), principalName: z.string().optional(),
role: accessRoleSchema, role: accessRoleSchema,

View file

@ -1,5 +1,5 @@
import mongoose from 'mongoose'; import mongoose from 'mongoose';
import { ResourceType, PermissionBits } from 'librechat-data-provider'; import { ResourceType, PermissionBits, PrincipalType } from 'librechat-data-provider';
import { MongoMemoryServer } from 'mongodb-memory-server'; import { MongoMemoryServer } from 'mongodb-memory-server';
import type * as t from '~/types'; import type * as t from '~/types';
import { createAclEntryMethods } from './aclEntry'; import { createAclEntryMethods } from './aclEntry';
@ -36,7 +36,7 @@ describe('AclEntry Model Tests', () => {
describe('Permission Grant and Query', () => { describe('Permission Grant and Query', () => {
test('should grant permission to a user', async () => { test('should grant permission to a user', async () => {
const entry = await methods.grantPermission( const entry = await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -45,10 +45,10 @@ describe('AclEntry Model Tests', () => {
); );
expect(entry).toBeDefined(); expect(entry).toBeDefined();
expect(entry?.principalType).toBe('user'); expect(entry?.principalType).toBe(PrincipalType.USER);
expect(entry?.principalId?.toString()).toBe(userId.toString()); expect(entry?.principalId?.toString()).toBe(userId.toString());
expect(entry?.principalModel).toBe('User'); expect(entry?.principalModel).toBe('User');
expect(entry?.resourceType).toBe('agent'); expect(entry?.resourceType).toBe(ResourceType.AGENT);
expect(entry?.resourceId.toString()).toBe(resourceId.toString()); expect(entry?.resourceId.toString()).toBe(resourceId.toString());
expect(entry?.permBits).toBe(PermissionBits.VIEW); expect(entry?.permBits).toBe(PermissionBits.VIEW);
expect(entry?.grantedBy?.toString()).toBe(grantedById.toString()); expect(entry?.grantedBy?.toString()).toBe(grantedById.toString());
@ -57,7 +57,7 @@ describe('AclEntry Model Tests', () => {
test('should grant permission to a group', async () => { test('should grant permission to a group', async () => {
const entry = await methods.grantPermission( const entry = await methods.grantPermission(
'group', PrincipalType.GROUP,
groupId, groupId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -66,7 +66,7 @@ describe('AclEntry Model Tests', () => {
); );
expect(entry).toBeDefined(); expect(entry).toBeDefined();
expect(entry?.principalType).toBe('group'); expect(entry?.principalType).toBe(PrincipalType.GROUP);
expect(entry?.principalId?.toString()).toBe(groupId.toString()); expect(entry?.principalId?.toString()).toBe(groupId.toString());
expect(entry?.principalModel).toBe('Group'); expect(entry?.principalModel).toBe('Group');
expect(entry?.permBits).toBe(PermissionBits.VIEW | PermissionBits.EDIT); expect(entry?.permBits).toBe(PermissionBits.VIEW | PermissionBits.EDIT);
@ -74,7 +74,7 @@ describe('AclEntry Model Tests', () => {
test('should grant public permission', async () => { test('should grant public permission', async () => {
const entry = await methods.grantPermission( const entry = await methods.grantPermission(
'public', PrincipalType.PUBLIC,
null, null,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -83,7 +83,7 @@ describe('AclEntry Model Tests', () => {
); );
expect(entry).toBeDefined(); expect(entry).toBeDefined();
expect(entry?.principalType).toBe('public'); expect(entry?.principalType).toBe(PrincipalType.PUBLIC);
expect(entry?.principalId).toBeUndefined(); expect(entry?.principalId).toBeUndefined();
expect(entry?.principalModel).toBeUndefined(); expect(entry?.principalModel).toBeUndefined();
}); });
@ -91,7 +91,7 @@ describe('AclEntry Model Tests', () => {
test('should find entries by principal', async () => { test('should find entries by principal', async () => {
/** Create two different permissions for the same user */ /** Create two different permissions for the same user */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -99,7 +99,7 @@ describe('AclEntry Model Tests', () => {
grantedById, grantedById,
); );
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
'project', 'project',
new mongoose.Types.ObjectId(), new mongoose.Types.ObjectId(),
@ -108,19 +108,23 @@ describe('AclEntry Model Tests', () => {
); );
/** Find all entries for the user */ /** Find all entries for the user */
const entries = await methods.findEntriesByPrincipal('user', userId); const entries = await methods.findEntriesByPrincipal(PrincipalType.USER, userId);
expect(entries).toHaveLength(2); expect(entries).toHaveLength(2);
/** Find entries filtered by resource type */ /** Find entries filtered by resource type */
const agentEntries = await methods.findEntriesByPrincipal('user', userId, 'agent'); const agentEntries = await methods.findEntriesByPrincipal(
PrincipalType.USER,
userId,
ResourceType.AGENT,
);
expect(agentEntries).toHaveLength(1); expect(agentEntries).toHaveLength(1);
expect(agentEntries[0].resourceType).toBe('agent'); expect(agentEntries[0].resourceType).toBe(ResourceType.AGENT);
}); });
test('should find entries by resource', async () => { test('should find entries by resource', async () => {
/** Grant permissions to different principals for the same resource */ /** Grant permissions to different principals for the same resource */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -128,7 +132,7 @@ describe('AclEntry Model Tests', () => {
grantedById, grantedById,
); );
await methods.grantPermission( await methods.grantPermission(
'group', PrincipalType.GROUP,
groupId, groupId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -136,7 +140,7 @@ describe('AclEntry Model Tests', () => {
grantedById, grantedById,
); );
await methods.grantPermission( await methods.grantPermission(
'public', PrincipalType.PUBLIC,
null, null,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -144,7 +148,7 @@ describe('AclEntry Model Tests', () => {
grantedById, grantedById,
); );
const entries = await methods.findEntriesByResource('agent', resourceId); const entries = await methods.findEntriesByResource(ResourceType.AGENT, resourceId);
expect(entries).toHaveLength(3); expect(entries).toHaveLength(3);
}); });
}); });
@ -153,7 +157,7 @@ describe('AclEntry Model Tests', () => {
beforeEach(async () => { beforeEach(async () => {
/** Setup test data with various permissions */ /** Setup test data with various permissions */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -161,7 +165,7 @@ describe('AclEntry Model Tests', () => {
grantedById, grantedById,
); );
await methods.grantPermission( await methods.grantPermission(
'group', PrincipalType.GROUP,
groupId, groupId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -171,7 +175,7 @@ describe('AclEntry Model Tests', () => {
const otherResourceId = new mongoose.Types.ObjectId(); const otherResourceId = new mongoose.Types.ObjectId();
await methods.grantPermission( await methods.grantPermission(
'public', PrincipalType.PUBLIC,
null, null,
ResourceType.AGENT, ResourceType.AGENT,
otherResourceId, otherResourceId,
@ -182,8 +186,8 @@ describe('AclEntry Model Tests', () => {
test('should find entries by principals and resource', async () => { test('should find entries by principals and resource', async () => {
const principalsList = [ const principalsList = [
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
]; ];
const entries = await methods.findEntriesByPrincipalsAndResource( const entries = await methods.findEntriesByPrincipalsAndResource(
@ -195,7 +199,7 @@ describe('AclEntry Model Tests', () => {
}); });
test('should check if user has permission', async () => { test('should check if user has permission', async () => {
const principalsList = [{ principalType: 'user', principalId: userId }]; const principalsList = [{ principalType: PrincipalType.USER, principalId: userId }];
/** User has VIEW permission */ /** User has VIEW permission */
const hasViewPermission = await methods.hasPermission( const hasViewPermission = await methods.hasPermission(
@ -217,7 +221,7 @@ describe('AclEntry Model Tests', () => {
}); });
test('should check if group has permission', async () => { test('should check if group has permission', async () => {
const principalsList = [{ principalType: 'group', principalId: groupId }]; const principalsList = [{ principalType: PrincipalType.GROUP, principalId: groupId }];
/** Group has EDIT permission */ /** Group has EDIT permission */
const hasEditPermission = await methods.hasPermission( const hasEditPermission = await methods.hasPermission(
@ -231,8 +235,8 @@ describe('AclEntry Model Tests', () => {
test('should check permission for multiple principals', async () => { test('should check permission for multiple principals', async () => {
const principalsList = [ const principalsList = [
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
]; ];
/** User has VIEW and group has EDIT, together they should have both */ /** User has VIEW and group has EDIT, together they should have both */
@ -264,11 +268,15 @@ describe('AclEntry Model Tests', () => {
test('should get effective permissions', async () => { test('should get effective permissions', async () => {
const principalsList = [ const principalsList = [
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
]; ];
const effective = await methods.getEffectivePermissions(principalsList, 'agent', resourceId); const effective = await methods.getEffectivePermissions(
principalsList,
ResourceType.AGENT,
resourceId,
);
/** Combined permissions should be VIEW | EDIT */ /** Combined permissions should be VIEW | EDIT */
expect(effective).toBe(PermissionBits.VIEW | PermissionBits.EDIT); expect(effective).toBe(PermissionBits.VIEW | PermissionBits.EDIT);
@ -279,7 +287,7 @@ describe('AclEntry Model Tests', () => {
test('should revoke permission', async () => { test('should revoke permission', async () => {
/** Grant permission first */ /** Grant permission first */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -288,22 +296,27 @@ describe('AclEntry Model Tests', () => {
); );
/** Check it exists */ /** Check it exists */
const entriesBefore = await methods.findEntriesByPrincipal('user', userId); const entriesBefore = await methods.findEntriesByPrincipal(PrincipalType.USER, userId);
expect(entriesBefore).toHaveLength(1); expect(entriesBefore).toHaveLength(1);
/** Revoke it */ /** Revoke it */
const result = await methods.revokePermission('user', userId, ResourceType.AGENT, resourceId); const result = await methods.revokePermission(
PrincipalType.USER,
userId,
ResourceType.AGENT,
resourceId,
);
expect(result.deletedCount).toBe(1); expect(result.deletedCount).toBe(1);
/** Verify it's gone */ /** Verify it's gone */
const entriesAfter = await methods.findEntriesByPrincipal('user', userId); const entriesAfter = await methods.findEntriesByPrincipal(PrincipalType.USER, userId);
expect(entriesAfter).toHaveLength(0); expect(entriesAfter).toHaveLength(0);
}); });
test('should modify permission bits - add permissions', async () => { test('should modify permission bits - add permissions', async () => {
/** Start with VIEW permission */ /** Start with VIEW permission */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -313,7 +326,7 @@ describe('AclEntry Model Tests', () => {
/** Add EDIT permission */ /** Add EDIT permission */
const updated = await methods.modifyPermissionBits( const updated = await methods.modifyPermissionBits(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -328,7 +341,7 @@ describe('AclEntry Model Tests', () => {
test('should modify permission bits - remove permissions', async () => { test('should modify permission bits - remove permissions', async () => {
/** Start with VIEW | EDIT permissions */ /** Start with VIEW | EDIT permissions */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -338,7 +351,7 @@ describe('AclEntry Model Tests', () => {
/** Remove EDIT permission */ /** Remove EDIT permission */
const updated = await methods.modifyPermissionBits( const updated = await methods.modifyPermissionBits(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -353,7 +366,7 @@ describe('AclEntry Model Tests', () => {
test('should modify permission bits - add and remove at once', async () => { test('should modify permission bits - add and remove at once', async () => {
/** Start with VIEW permission */ /** Start with VIEW permission */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId, resourceId,
@ -363,9 +376,9 @@ describe('AclEntry Model Tests', () => {
/** Add EDIT and remove VIEW in one operation */ /** Add EDIT and remove VIEW in one operation */
const updated = await methods.modifyPermissionBits( const updated = await methods.modifyPermissionBits(
'user', PrincipalType.USER,
userId, userId,
'agent', ResourceType.AGENT,
resourceId, resourceId,
PermissionBits.EDIT, PermissionBits.EDIT,
PermissionBits.VIEW, PermissionBits.VIEW,
@ -385,7 +398,7 @@ describe('AclEntry Model Tests', () => {
/** User can view resource 1 */ /** User can view resource 1 */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId1, resourceId1,
@ -395,7 +408,7 @@ describe('AclEntry Model Tests', () => {
/** User can view and edit resource 2 */ /** User can view and edit resource 2 */
await methods.grantPermission( await methods.grantPermission(
'user', PrincipalType.USER,
userId, userId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId2, resourceId2,
@ -405,7 +418,7 @@ describe('AclEntry Model Tests', () => {
/** Group can view resource 3 */ /** Group can view resource 3 */
await methods.grantPermission( await methods.grantPermission(
'group', PrincipalType.GROUP,
groupId, groupId,
ResourceType.AGENT, ResourceType.AGENT,
resourceId3, resourceId3,
@ -415,7 +428,7 @@ describe('AclEntry Model Tests', () => {
/** Find resources with VIEW permission for user */ /** Find resources with VIEW permission for user */
const userViewableResources = await methods.findAccessibleResources( const userViewableResources = await methods.findAccessibleResources(
[{ principalType: 'user', principalId: userId }], [{ principalType: PrincipalType.USER, principalId: userId }],
ResourceType.AGENT, ResourceType.AGENT,
PermissionBits.VIEW, PermissionBits.VIEW,
); );
@ -428,8 +441,8 @@ describe('AclEntry Model Tests', () => {
/** Find resources with VIEW permission for user or group */ /** Find resources with VIEW permission for user or group */
const allViewableResources = await methods.findAccessibleResources( const allViewableResources = await methods.findAccessibleResources(
[ [
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
{ principalType: 'group', principalId: groupId }, { principalType: PrincipalType.GROUP, principalId: groupId },
], ],
ResourceType.AGENT, ResourceType.AGENT,
PermissionBits.VIEW, PermissionBits.VIEW,
@ -439,7 +452,7 @@ describe('AclEntry Model Tests', () => {
/** Find resources with EDIT permission for user */ /** Find resources with EDIT permission for user */
const editableResources = await methods.findAccessibleResources( const editableResources = await methods.findAccessibleResources(
[{ principalType: 'user', principalId: userId }], [{ principalType: PrincipalType.USER, principalId: userId }],
ResourceType.AGENT, ResourceType.AGENT,
PermissionBits.EDIT, PermissionBits.EDIT,
); );
@ -452,19 +465,9 @@ describe('AclEntry Model Tests', () => {
const projectId = new mongoose.Types.ObjectId(); const projectId = new mongoose.Types.ObjectId();
const childResourceId = new mongoose.Types.ObjectId(); const childResourceId = new mongoose.Types.ObjectId();
/** Grant permission on project */
await methods.grantPermission(
'user',
userId,
'project',
projectId,
PermissionBits.VIEW,
grantedById,
);
/** Grant inherited permission on child resource */ /** Grant inherited permission on child resource */
await AclEntry.create({ await AclEntry.create({
principalType: 'user', principalType: PrincipalType.USER,
principalId: userId, principalId: userId,
principalModel: 'User', principalModel: 'User',
resourceType: ResourceType.AGENT, resourceType: ResourceType.AGENT,
@ -476,7 +479,7 @@ describe('AclEntry Model Tests', () => {
/** Get effective permissions */ /** Get effective permissions */
const effective = await methods.getEffectivePermissions( const effective = await methods.getEffectivePermissions(
[{ principalType: 'user', principalId: userId }], [{ principalType: PrincipalType.USER, principalId: userId }],
ResourceType.AGENT, ResourceType.AGENT,
childResourceId, childResourceId,
); );

View file

@ -1,3 +1,4 @@
import { PrincipalType } from 'librechat-data-provider';
import type { Model, Types, DeleteResult, ClientSession } from 'mongoose'; import type { Model, Types, DeleteResult, ClientSession } from 'mongoose';
import type { IAclEntry } from '~/types'; import type { IAclEntry } from '~/types';
@ -51,7 +52,7 @@ export function createAclEntryMethods(mongoose: typeof import('mongoose')) {
const AclEntry = mongoose.models.AclEntry as Model<IAclEntry>; const AclEntry = mongoose.models.AclEntry as Model<IAclEntry>;
const principalsQuery = principalsList.map((p) => ({ const principalsQuery = principalsList.map((p) => ({
principalType: p.principalType, principalType: p.principalType,
...(p.principalType !== 'public' && { principalId: p.principalId }), ...(p.principalType !== PrincipalType.PUBLIC && { principalId: p.principalId }),
})); }));
return await AclEntry.find({ return await AclEntry.find({
@ -78,7 +79,7 @@ export function createAclEntryMethods(mongoose: typeof import('mongoose')) {
const AclEntry = mongoose.models.AclEntry as Model<IAclEntry>; const AclEntry = mongoose.models.AclEntry as Model<IAclEntry>;
const principalsQuery = principalsList.map((p) => ({ const principalsQuery = principalsList.map((p) => ({
principalType: p.principalType, principalType: p.principalType,
...(p.principalType !== 'public' && { principalId: p.principalId }), ...(p.principalType !== PrincipalType.PUBLIC && { principalId: p.principalId }),
})); }));
const entry = await AclEntry.findOne({ const entry = await AclEntry.findOne({
@ -145,9 +146,9 @@ export function createAclEntryMethods(mongoose: typeof import('mongoose')) {
resourceId, resourceId,
}; };
if (principalType !== 'public') { if (principalType !== PrincipalType.PUBLIC) {
query.principalId = principalId; query.principalId = principalId;
query.principalModel = principalType === 'user' ? 'User' : 'Group'; query.principalModel = principalType === PrincipalType.USER ? 'User' : 'Group';
} }
const update = { const update = {
@ -191,7 +192,7 @@ export function createAclEntryMethods(mongoose: typeof import('mongoose')) {
resourceId, resourceId,
}; };
if (principalType !== 'public') { if (principalType !== PrincipalType.PUBLIC) {
query.principalId = principalId; query.principalId = principalId;
} }
@ -227,7 +228,7 @@ export function createAclEntryMethods(mongoose: typeof import('mongoose')) {
resourceId, resourceId,
}; };
if (principalType !== 'public') { if (principalType !== PrincipalType.PUBLIC) {
query.principalId = principalId; query.principalId = principalId;
} }
@ -266,7 +267,7 @@ export function createAclEntryMethods(mongoose: typeof import('mongoose')) {
const AclEntry = mongoose.models.AclEntry as Model<IAclEntry>; const AclEntry = mongoose.models.AclEntry as Model<IAclEntry>;
const principalsQuery = principalsList.map((p) => ({ const principalsQuery = principalsList.map((p) => ({
principalType: p.principalType, principalType: p.principalType,
...(p.principalType !== 'public' && { principalId: p.principalId }), ...(p.principalType !== PrincipalType.PUBLIC && { principalId: p.principalId }),
})); }));
const entries = await AclEntry.find({ const entries = await AclEntry.find({

View file

@ -1,9 +1,10 @@
import mongoose from 'mongoose'; import mongoose from 'mongoose';
import { PrincipalType } from 'librechat-data-provider';
import { MongoMemoryServer } from 'mongodb-memory-server'; import { MongoMemoryServer } from 'mongodb-memory-server';
import type * as t from '~/types';
import { createUserGroupMethods } from './userGroup'; import { createUserGroupMethods } from './userGroup';
import groupSchema from '~/schema/group'; import groupSchema from '~/schema/group';
import userSchema from '~/schema/user'; import userSchema from '~/schema/user';
import type * as t from '~/types';
/** Mocking logger */ /** Mocking logger */
jest.mock('~/config/winston', () => ({ jest.mock('~/config/winston', () => ({
@ -330,9 +331,9 @@ describe('User Group Methods Tests', () => {
expect(principals).toHaveLength(3); expect(principals).toHaveLength(3);
/** Check principal types */ /** Check principal types */
const userPrincipal = principals.find((p) => p.principalType === 'user'); const userPrincipal = principals.find((p) => p.principalType === PrincipalType.USER);
const groupPrincipal = principals.find((p) => p.principalType === 'group'); const groupPrincipal = principals.find((p) => p.principalType === PrincipalType.GROUP);
const publicPrincipal = principals.find((p) => p.principalType === 'public'); const publicPrincipal = principals.find((p) => p.principalType === PrincipalType.PUBLIC);
expect(userPrincipal).toBeDefined(); expect(userPrincipal).toBeDefined();
expect(userPrincipal?.principalId?.toString()).toBe( expect(userPrincipal?.principalId?.toString()).toBe(
@ -352,9 +353,9 @@ describe('User Group Methods Tests', () => {
/** Should still return user and public principals even for non-existent user */ /** Should still return user and public principals even for non-existent user */
expect(principals).toHaveLength(2); expect(principals).toHaveLength(2);
expect(principals[0].principalType).toBe('user'); expect(principals[0].principalType).toBe(PrincipalType.USER);
expect(principals[0].principalId?.toString()).toBe(nonExistentId.toString()); expect(principals[0].principalId?.toString()).toBe(nonExistentId.toString());
expect(principals[1].principalType).toBe('public'); expect(principals[1].principalType).toBe(PrincipalType.PUBLIC);
expect(principals[1].principalId).toBeUndefined(); expect(principals[1].principalId).toBeUndefined();
}); });
}); });

View file

@ -1,5 +1,6 @@
import type { Model, Types, ClientSession } from 'mongoose'; import { PrincipalType } from 'librechat-data-provider';
import type { TUser, TPrincipalSearchResult } from 'librechat-data-provider'; import type { TUser, TPrincipalSearchResult } from 'librechat-data-provider';
import type { Model, Types, ClientSession } from 'mongoose';
import type { IGroup, IUser } from '~/types'; import type { IGroup, IUser } from '~/types';
export function createUserGroupMethods(mongoose: typeof import('mongoose')) { export function createUserGroupMethods(mongoose: typeof import('mongoose')) {
@ -245,17 +246,17 @@ export function createUserGroupMethods(mongoose: typeof import('mongoose')) {
session?: ClientSession, session?: ClientSession,
): Promise<Array<{ principalType: string; principalId?: string | Types.ObjectId }>> { ): Promise<Array<{ principalType: string; principalId?: string | Types.ObjectId }>> {
const principals: Array<{ principalType: string; principalId?: string | Types.ObjectId }> = [ const principals: Array<{ principalType: string; principalId?: string | Types.ObjectId }> = [
{ principalType: 'user', principalId: userId }, { principalType: PrincipalType.USER, principalId: userId },
]; ];
const userGroups = await getUserGroups(userId, session); const userGroups = await getUserGroups(userId, session);
if (userGroups && userGroups.length > 0) { if (userGroups && userGroups.length > 0) {
userGroups.forEach((group) => { userGroups.forEach((group) => {
principals.push({ principalType: 'group', principalId: group._id.toString() }); principals.push({ principalType: PrincipalType.GROUP, principalId: group._id.toString() });
}); });
} }
principals.push({ principalType: 'public' }); principals.push({ principalType: PrincipalType.PUBLIC });
return principals; return principals;
} }

View file

@ -1,18 +1,19 @@
import { Schema } from 'mongoose'; import { Schema } from 'mongoose';
import { PrincipalType } from 'librechat-data-provider';
import type { IAclEntry } from '~/types'; import type { IAclEntry } from '~/types';
const aclEntrySchema = new Schema<IAclEntry>( const aclEntrySchema = new Schema<IAclEntry>(
{ {
principalType: { principalType: {
type: String, type: String,
enum: ['user', 'group', 'public'], enum: Object.values(PrincipalType),
required: true, required: true,
}, },
principalId: { principalId: {
type: Schema.Types.ObjectId, type: Schema.Types.ObjectId,
refPath: 'principalModel', refPath: 'principalModel',
required: function (this: IAclEntry) { required: function (this: IAclEntry) {
return this.principalType !== 'public'; return this.principalType !== PrincipalType.PUBLIC;
}, },
index: true, index: true,
}, },
@ -20,7 +21,7 @@ const aclEntrySchema = new Schema<IAclEntry>(
type: String, type: String,
enum: ['User', 'Group'], enum: ['User', 'Group'],
required: function (this: IAclEntry) { required: function (this: IAclEntry) {
return this.principalType !== 'public'; return this.principalType !== PrincipalType.PUBLIC;
}, },
}, },
resourceType: { resourceType: {

View file

@ -1,8 +1,9 @@
import type { Document, Types } from 'mongoose'; import type { Document, Types } from 'mongoose';
import { PrincipalType } from 'librechat-data-provider';
export type AclEntry = { export type AclEntry = {
/** The type of principal ('user', 'group', 'public') */ /** The type of principal ('user', 'group', 'public') */
principalType: 'user' | 'group' | 'public'; principalType: PrincipalType;
/** The ID of the principal (null for 'public') */ /** The ID of the principal (null for 'public') */
principalId?: Types.ObjectId; principalId?: Types.ObjectId;
/** The model name for the principal ('User' or 'Group') */ /** The model name for the principal ('User' or 'Group') */