mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
Some checks are pending
Deploy to HuggingFace Spaces / check-secret (push) Waiting to run
Deploy to HuggingFace Spaces / deploy (push) Blocked by required conditions
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Waiting to run
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Waiting to run
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Waiting to run
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Waiting to run
Create and publish Docker images with specific build args / merge-main-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-cuda-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-cuda126-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-ollama-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-slim-images (push) Blocked by required conditions
Python CI / Format Backend (push) Waiting to run
Frontend Build / Format & Build Frontend (push) Waiting to run
Frontend Build / Frontend Unit Tests (push) Waiting to run
394 lines
13 KiB
Python
394 lines
13 KiB
Python
import json
|
|
import time
|
|
import uuid
|
|
from typing import Optional
|
|
from functools import lru_cache
|
|
|
|
from open_webui.internal.db import Base, get_db
|
|
from open_webui.models.groups import Groups
|
|
from open_webui.utils.access_control import has_access
|
|
from open_webui.models.users import User, UserModel, Users, UserResponse
|
|
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
from sqlalchemy import BigInteger, Boolean, Column, String, Text, JSON
|
|
from sqlalchemy.dialects.postgresql import JSONB
|
|
|
|
|
|
from sqlalchemy import or_, func, select, and_, text, cast, or_, and_, func
|
|
from sqlalchemy.sql import exists
|
|
|
|
####################
|
|
# Note DB Schema
|
|
####################
|
|
|
|
|
|
class Note(Base):
|
|
__tablename__ = "note"
|
|
|
|
id = Column(Text, primary_key=True, unique=True)
|
|
user_id = Column(Text)
|
|
|
|
title = Column(Text)
|
|
data = Column(JSON, nullable=True)
|
|
meta = Column(JSON, nullable=True)
|
|
|
|
access_control = Column(JSON, nullable=True)
|
|
|
|
created_at = Column(BigInteger)
|
|
updated_at = Column(BigInteger)
|
|
|
|
|
|
class NoteModel(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: str
|
|
user_id: str
|
|
|
|
title: str
|
|
data: Optional[dict] = None
|
|
meta: Optional[dict] = None
|
|
|
|
access_control: Optional[dict] = None
|
|
|
|
created_at: int # timestamp in epoch
|
|
updated_at: int # timestamp in epoch
|
|
|
|
|
|
####################
|
|
# Forms
|
|
####################
|
|
|
|
|
|
class NoteForm(BaseModel):
|
|
title: str
|
|
data: Optional[dict] = None
|
|
meta: Optional[dict] = None
|
|
access_control: Optional[dict] = None
|
|
|
|
|
|
class NoteUpdateForm(BaseModel):
|
|
title: Optional[str] = None
|
|
data: Optional[dict] = None
|
|
meta: Optional[dict] = None
|
|
access_control: Optional[dict] = None
|
|
|
|
|
|
class NoteUserResponse(NoteModel):
|
|
user: Optional[UserResponse] = None
|
|
|
|
|
|
class NoteItemResponse(BaseModel):
|
|
id: str
|
|
title: str
|
|
data: Optional[dict]
|
|
updated_at: int
|
|
created_at: int
|
|
user: Optional[UserResponse] = None
|
|
|
|
|
|
class NoteListResponse(BaseModel):
|
|
items: list[NoteUserResponse]
|
|
total: int
|
|
|
|
|
|
class NoteTable:
|
|
def _has_permission(self, db, query, filter: dict, permission: str = "read"):
|
|
group_ids = filter.get("group_ids", [])
|
|
user_id = filter.get("user_id")
|
|
dialect_name = db.bind.dialect.name
|
|
|
|
conditions = []
|
|
|
|
# Handle read_only permission separately
|
|
if permission == "read_only":
|
|
# For read_only, we want items where:
|
|
# 1. User has explicit read permission (via groups or user-level)
|
|
# 2. BUT does NOT have write permission
|
|
# 3. Public items are NOT considered read_only
|
|
|
|
read_conditions = []
|
|
|
|
# Group-level read permission
|
|
if group_ids:
|
|
group_read_conditions = []
|
|
for gid in group_ids:
|
|
if dialect_name == "sqlite":
|
|
group_read_conditions.append(
|
|
Note.access_control["read"]["group_ids"].contains([gid])
|
|
)
|
|
elif dialect_name == "postgresql":
|
|
group_read_conditions.append(
|
|
cast(
|
|
Note.access_control["read"]["group_ids"],
|
|
JSONB,
|
|
).contains([gid])
|
|
)
|
|
|
|
if group_read_conditions:
|
|
read_conditions.append(or_(*group_read_conditions))
|
|
|
|
# Combine read conditions
|
|
if read_conditions:
|
|
has_read = or_(*read_conditions)
|
|
else:
|
|
# If no read conditions, return empty result
|
|
return query.filter(False)
|
|
|
|
# Now exclude items where user has write permission
|
|
write_exclusions = []
|
|
|
|
# Exclude items owned by user (they have implicit write)
|
|
if user_id:
|
|
write_exclusions.append(Note.user_id != user_id)
|
|
|
|
# Exclude items where user has explicit write permission via groups
|
|
if group_ids:
|
|
group_write_conditions = []
|
|
for gid in group_ids:
|
|
if dialect_name == "sqlite":
|
|
group_write_conditions.append(
|
|
Note.access_control["write"]["group_ids"].contains([gid])
|
|
)
|
|
elif dialect_name == "postgresql":
|
|
group_write_conditions.append(
|
|
cast(
|
|
Note.access_control["write"]["group_ids"],
|
|
JSONB,
|
|
).contains([gid])
|
|
)
|
|
|
|
if group_write_conditions:
|
|
# User should NOT have write permission
|
|
write_exclusions.append(~or_(*group_write_conditions))
|
|
|
|
# Exclude public items (items without access_control)
|
|
write_exclusions.append(Note.access_control.isnot(None))
|
|
write_exclusions.append(cast(Note.access_control, String) != "null")
|
|
|
|
# Combine: has read AND does not have write AND not public
|
|
if write_exclusions:
|
|
query = query.filter(and_(has_read, *write_exclusions))
|
|
else:
|
|
query = query.filter(has_read)
|
|
|
|
return query
|
|
|
|
# Original logic for other permissions (read, write, etc.)
|
|
# Public access conditions
|
|
if group_ids or user_id:
|
|
conditions.extend(
|
|
[
|
|
Note.access_control.is_(None),
|
|
cast(Note.access_control, String) == "null",
|
|
]
|
|
)
|
|
|
|
# User-level permission (owner has all permissions)
|
|
if user_id:
|
|
conditions.append(Note.user_id == user_id)
|
|
|
|
# Group-level permission
|
|
if group_ids:
|
|
group_conditions = []
|
|
for gid in group_ids:
|
|
if dialect_name == "sqlite":
|
|
group_conditions.append(
|
|
Note.access_control[permission]["group_ids"].contains([gid])
|
|
)
|
|
elif dialect_name == "postgresql":
|
|
group_conditions.append(
|
|
cast(
|
|
Note.access_control[permission]["group_ids"],
|
|
JSONB,
|
|
).contains([gid])
|
|
)
|
|
conditions.append(or_(*group_conditions))
|
|
|
|
if conditions:
|
|
query = query.filter(or_(*conditions))
|
|
|
|
return query
|
|
|
|
def insert_new_note(
|
|
self,
|
|
form_data: NoteForm,
|
|
user_id: str,
|
|
) -> Optional[NoteModel]:
|
|
with get_db() as db:
|
|
note = NoteModel(
|
|
**{
|
|
"id": str(uuid.uuid4()),
|
|
"user_id": user_id,
|
|
**form_data.model_dump(),
|
|
"created_at": int(time.time_ns()),
|
|
"updated_at": int(time.time_ns()),
|
|
}
|
|
)
|
|
|
|
new_note = Note(**note.model_dump())
|
|
|
|
db.add(new_note)
|
|
db.commit()
|
|
return note
|
|
|
|
def get_notes(
|
|
self, skip: Optional[int] = None, limit: Optional[int] = None
|
|
) -> list[NoteModel]:
|
|
with get_db() as db:
|
|
query = db.query(Note).order_by(Note.updated_at.desc())
|
|
if skip is not None:
|
|
query = query.offset(skip)
|
|
if limit is not None:
|
|
query = query.limit(limit)
|
|
notes = query.all()
|
|
return [NoteModel.model_validate(note) for note in notes]
|
|
|
|
def search_notes(
|
|
self, user_id: str, filter: dict = {}, skip: int = 0, limit: int = 30
|
|
) -> NoteListResponse:
|
|
with get_db() as db:
|
|
query = db.query(Note, User).outerjoin(User, User.id == Note.user_id)
|
|
if filter:
|
|
query_key = filter.get("query")
|
|
if query_key:
|
|
query = query.filter(
|
|
or_(
|
|
Note.title.ilike(f"%{query_key}%"),
|
|
cast(Note.data["content"]["md"], Text).ilike(
|
|
f"%{query_key}%"
|
|
),
|
|
)
|
|
)
|
|
|
|
view_option = filter.get("view_option")
|
|
if view_option == "created":
|
|
query = query.filter(Note.user_id == user_id)
|
|
elif view_option == "shared":
|
|
query = query.filter(Note.user_id != user_id)
|
|
|
|
# Apply access control filtering
|
|
if "permission" in filter:
|
|
permission = filter["permission"]
|
|
else:
|
|
permission = "write"
|
|
|
|
query = self._has_permission(
|
|
db,
|
|
query,
|
|
filter,
|
|
permission=permission,
|
|
)
|
|
|
|
order_by = filter.get("order_by")
|
|
direction = filter.get("direction")
|
|
|
|
if order_by == "name":
|
|
if direction == "asc":
|
|
query = query.order_by(Note.title.asc())
|
|
else:
|
|
query = query.order_by(Note.title.desc())
|
|
elif order_by == "created_at":
|
|
if direction == "asc":
|
|
query = query.order_by(Note.created_at.asc())
|
|
else:
|
|
query = query.order_by(Note.created_at.desc())
|
|
elif order_by == "updated_at":
|
|
if direction == "asc":
|
|
query = query.order_by(Note.updated_at.asc())
|
|
else:
|
|
query = query.order_by(Note.updated_at.desc())
|
|
else:
|
|
query = query.order_by(Note.updated_at.desc())
|
|
|
|
else:
|
|
query = query.order_by(Note.updated_at.desc())
|
|
|
|
# Count BEFORE pagination
|
|
total = query.count()
|
|
|
|
if skip:
|
|
query = query.offset(skip)
|
|
if limit:
|
|
query = query.limit(limit)
|
|
|
|
items = query.all()
|
|
|
|
notes = []
|
|
for note, user in items:
|
|
notes.append(
|
|
NoteUserResponse(
|
|
**NoteModel.model_validate(note).model_dump(),
|
|
user=(
|
|
UserResponse(**UserModel.model_validate(user).model_dump())
|
|
if user
|
|
else None
|
|
),
|
|
)
|
|
)
|
|
|
|
return NoteListResponse(items=notes, total=total)
|
|
|
|
def get_notes_by_user_id(
|
|
self,
|
|
user_id: str,
|
|
permission: str = "read",
|
|
skip: Optional[int] = None,
|
|
limit: Optional[int] = None,
|
|
) -> list[NoteModel]:
|
|
with get_db() as db:
|
|
user_group_ids = [
|
|
group.id for group in Groups.get_groups_by_member_id(user_id)
|
|
]
|
|
|
|
query = db.query(Note).order_by(Note.updated_at.desc())
|
|
query = self._has_permission(
|
|
db, query, {"user_id": user_id, "group_ids": user_group_ids}, permission
|
|
)
|
|
|
|
if skip is not None:
|
|
query = query.offset(skip)
|
|
if limit is not None:
|
|
query = query.limit(limit)
|
|
|
|
notes = query.all()
|
|
return [NoteModel.model_validate(note) for note in notes]
|
|
|
|
def get_note_by_id(self, id: str) -> Optional[NoteModel]:
|
|
with get_db() as db:
|
|
note = db.query(Note).filter(Note.id == id).first()
|
|
return NoteModel.model_validate(note) if note else None
|
|
|
|
def update_note_by_id(
|
|
self, id: str, form_data: NoteUpdateForm
|
|
) -> Optional[NoteModel]:
|
|
with get_db() as db:
|
|
note = db.query(Note).filter(Note.id == id).first()
|
|
if not note:
|
|
return None
|
|
|
|
form_data = form_data.model_dump(exclude_unset=True)
|
|
|
|
if "title" in form_data:
|
|
note.title = form_data["title"]
|
|
if "data" in form_data:
|
|
note.data = {**note.data, **form_data["data"]}
|
|
if "meta" in form_data:
|
|
note.meta = {**note.meta, **form_data["meta"]}
|
|
|
|
if "access_control" in form_data:
|
|
note.access_control = form_data["access_control"]
|
|
|
|
note.updated_at = int(time.time_ns())
|
|
|
|
db.commit()
|
|
return NoteModel.model_validate(note) if note else None
|
|
|
|
def delete_note_by_id(self, id: str):
|
|
with get_db() as db:
|
|
db.query(Note).filter(Note.id == id).delete()
|
|
db.commit()
|
|
return True
|
|
|
|
|
|
Notes = NoteTable()
|