mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-30 04:29:24 +08:00
63 lines
1.8 KiB
Go
63 lines
1.8 KiB
Go
package dataset
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"ragflow/internal/dao"
|
|
"strings"
|
|
|
|
"ragflow/internal/entity"
|
|
)
|
|
|
|
// Accessible checks if a user has access to a dataset.
|
|
func (d *DatasetService) Accessible(ctx context.Context, kbID, userID string) bool {
|
|
return d.kbDAO.Accessible(ctx, dao.DB, kbID, userID)
|
|
}
|
|
|
|
// GetByID retrieves a knowledge base by ID.
|
|
func (d *DatasetService) GetByID(ctx context.Context, kbID string) (*entity.Knowledgebase, error) {
|
|
return d.kbDAO.GetByID(ctx, dao.DB, kbID)
|
|
}
|
|
|
|
// GetKnowledgebaseByID resolves a dataset entity without applying permission
|
|
// checks. Upload needs the same existence-then-auth ordering as Python.
|
|
func (d *DatasetService) GetKnowledgebaseByID(ctx context.Context, datasetID string) (*entity.Knowledgebase, error) {
|
|
datasetID = strings.TrimSpace(datasetID)
|
|
if datasetID == "" {
|
|
return nil, errors.New("Lack of \"Dataset ID\"")
|
|
}
|
|
normalizedID, err := normalizeDatasetID(datasetID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return d.kbDAO.GetByID(ctx, dao.DB, normalizedID)
|
|
}
|
|
|
|
// CheckKBTeamPermission checks if a user has team-level permission for the KB.
|
|
func (d *DatasetService) CheckKBTeamPermission(ctx context.Context, kb *entity.Knowledgebase, userID string) bool {
|
|
if kb == nil {
|
|
return false
|
|
}
|
|
if kb.TenantID == userID {
|
|
return true
|
|
}
|
|
if kb.Permission != string(entity.TenantPermissionTeam) {
|
|
return false
|
|
}
|
|
joinedTenants, err := d.tenantDAO.GetJoinedTenantsByUserID(ctx, dao.DB, userID)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
for _, jt := range joinedTenants {
|
|
if jt != nil && jt.TenantID == kb.TenantID {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// GetFieldMap returns the field map for the given knowledge base IDs.
|
|
func (d *DatasetService) GetFieldMap(ctx context.Context, ids []string) (map[string]interface{}, error) {
|
|
return d.kbDAO.GetFieldMap(ctx, dao.DB, ids)
|
|
}
|