open-webui/backend/open_webui/routers/channels.py

395 lines
12 KiB
Python
Raw Normal View History

2024-12-22 10:42:19 +00:00
import json
import logging
from typing import Optional
2024-12-23 02:40:01 +00:00
2024-12-25 07:53:25 +00:00
from fastapi import APIRouter, Depends, HTTPException, Request, status, BackgroundTasks
2024-12-23 02:40:01 +00:00
from pydantic import BaseModel
2024-12-25 07:57:39 +00:00
from open_webui.socket.main import sio, get_user_ids_from_room
2024-12-23 04:50:14 +00:00
from open_webui.models.users import Users, UserNameResponse
2024-12-22 10:42:19 +00:00
from open_webui.models.channels import Channels, ChannelModel, ChannelForm
from open_webui.models.messages import Messages, MessageModel, MessageForm
from open_webui.config import ENABLE_ADMIN_CHAT_ACCESS, ENABLE_ADMIN_EXPORT
from open_webui.constants import ERROR_MESSAGES
2024-12-25 16:50:57 +00:00
from open_webui.env import SRC_LOG_LEVELS
2024-12-22 10:42:19 +00:00
from open_webui.utils.auth import get_admin_user, get_verified_user
2024-12-25 07:53:25 +00:00
from open_webui.utils.access_control import has_access, get_users_with_access
from open_webui.utils.webhook import post_webhook
2024-12-22 10:42:19 +00:00
log = logging.getLogger(__name__)
log.setLevel(SRC_LOG_LEVELS["MODELS"])
router = APIRouter()
############################
# GetChatList
############################
@router.get("/", response_model=list[ChannelModel])
async def get_channels(user=Depends(get_verified_user)):
2024-12-23 02:47:40 +00:00
if user.role == "admin":
return Channels.get_channels()
else:
return Channels.get_channels_by_user_id(user.id)
2024-12-22 10:42:19 +00:00
############################
# CreateNewChannel
############################
@router.post("/create", response_model=Optional[ChannelModel])
async def create_new_channel(form_data: ChannelForm, user=Depends(get_admin_user)):
try:
channel = Channels.insert_new_channel(form_data, user.id)
return ChannelModel(**channel.model_dump())
except Exception as e:
log.exception(e)
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
2024-12-23 05:20:24 +00:00
############################
# GetChannelById
############################
@router.get("/{id}", response_model=Optional[ChannelModel])
async def get_channel_by_id(id: str, user=Depends(get_verified_user)):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
2024-12-23 08:37:13 +00:00
if user.role != "admin" and not has_access(
user.id, type="read", access_control=channel.access_control
):
2024-12-23 05:20:24 +00:00
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
return ChannelModel(**channel.model_dump())
2024-12-23 06:09:51 +00:00
############################
# UpdateChannelById
############################
@router.post("/{id}/update", response_model=Optional[ChannelModel])
async def update_channel_by_id(
id: str, form_data: ChannelForm, user=Depends(get_admin_user)
):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
try:
channel = Channels.update_channel_by_id(id, form_data)
return ChannelModel(**channel.model_dump())
except Exception as e:
log.exception(e)
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
2024-12-23 06:15:29 +00:00
############################
# DeleteChannelById
############################
@router.delete("/{id}/delete", response_model=bool)
async def delete_channel_by_id(id: str, user=Depends(get_admin_user)):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
try:
Channels.delete_channel_by_id(id)
return True
except Exception as e:
log.exception(e)
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
2024-12-22 10:42:19 +00:00
############################
# GetChannelMessages
############################
2024-12-23 04:50:14 +00:00
class MessageUserModel(MessageModel):
user: UserNameResponse
@router.get("/{id}/messages", response_model=list[MessageUserModel])
2024-12-23 07:31:33 +00:00
async def get_channel_messages(
id: str, skip: int = 0, limit: int = 50, user=Depends(get_verified_user)
):
2024-12-22 10:42:19 +00:00
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
2024-12-23 08:37:13 +00:00
if user.role != "admin" and not has_access(
user.id, type="read", access_control=channel.access_control
):
2024-12-22 10:42:19 +00:00
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
2024-12-23 04:50:14 +00:00
message_list = Messages.get_messages_by_channel_id(id, skip, limit)
users = {}
messages = []
for message in message_list:
if message.user_id not in users:
user = Users.get_user_by_id(message.user_id)
users[message.user_id] = user
messages.append(
MessageUserModel(
**{
**message.model_dump(),
"user": UserNameResponse(**users[message.user_id].model_dump()),
}
)
)
return messages
2024-12-22 10:42:19 +00:00
############################
# PostNewMessage
############################
2024-12-25 16:50:57 +00:00
async def send_notification(webui_url, channel, message, active_user_ids):
2024-12-25 07:53:25 +00:00
users = get_users_with_access("read", channel.access_control)
for user in users:
if user.id in active_user_ids:
continue
else:
if user.settings:
webhook_url = user.settings.ui.get("notifications", {}).get(
"webhook_url", None
)
if webhook_url:
post_webhook(
webhook_url,
2024-12-25 16:50:57 +00:00
f"#{channel.name} - {webui_url}/channels/{channel.id}\n\n{message.content}",
2024-12-25 07:53:25 +00:00
{
"action": "channel",
"message": message.content,
"title": channel.name,
2024-12-25 16:50:57 +00:00
"url": f"{webui_url}/channels/{channel.id}",
2024-12-25 07:53:25 +00:00
},
)
2024-12-22 10:42:19 +00:00
@router.post("/{id}/messages/post", response_model=Optional[MessageModel])
async def post_new_message(
2024-12-25 16:50:57 +00:00
request: Request,
2024-12-25 07:53:25 +00:00
id: str,
form_data: MessageForm,
background_tasks: BackgroundTasks,
user=Depends(get_verified_user),
2024-12-22 10:42:19 +00:00
):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
2024-12-23 08:37:13 +00:00
if user.role != "admin" and not has_access(
user.id, type="read", access_control=channel.access_control
):
2024-12-22 10:42:19 +00:00
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
try:
message = Messages.insert_new_message(form_data, channel.id, user.id)
2024-12-23 02:40:01 +00:00
if message:
2024-12-25 07:53:25 +00:00
event_data = {
"channel_id": channel.id,
"message_id": message.id,
"data": {
"type": "message",
2024-12-23 04:50:14 +00:00
"data": {
2024-12-25 07:53:25 +00:00
**message.model_dump(),
"user": UserNameResponse(**user.model_dump()).model_dump(),
2024-12-23 04:50:14 +00:00
},
2024-12-23 02:40:01 +00:00
},
2024-12-25 07:53:25 +00:00
"user": UserNameResponse(**user.model_dump()).model_dump(),
"channel": channel.model_dump(),
}
await sio.emit(
"channel-events",
event_data,
2024-12-23 02:40:01 +00:00
to=f"channel:{channel.id}",
)
2024-12-25 07:57:39 +00:00
active_user_ids = get_user_ids_from_room(f"channel:{channel.id}")
2024-12-25 07:53:25 +00:00
background_tasks.add_task(
2024-12-25 16:50:57 +00:00
send_notification,
request.app.state.config.WEBUI_URL,
channel,
message,
active_user_ids,
2024-12-25 07:53:25 +00:00
)
2024-12-22 10:42:19 +00:00
return MessageModel(**message.model_dump())
except Exception as e:
log.exception(e)
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
2024-12-23 07:53:45 +00:00
############################
# UpdateMessageById
############################
@router.post(
"/{id}/messages/{message_id}/update", response_model=Optional[MessageModel]
)
async def update_message_by_id(
id: str, message_id: str, form_data: MessageForm, user=Depends(get_verified_user)
):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
2024-12-23 08:37:13 +00:00
if user.role != "admin" and not has_access(
user.id, type="read", access_control=channel.access_control
):
2024-12-23 07:53:45 +00:00
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
message = Messages.get_message_by_id(message_id)
if not message:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
if message.channel_id != id:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
try:
message = Messages.update_message_by_id(message_id, form_data)
if message:
await sio.emit(
"channel-events",
{
"channel_id": channel.id,
"message_id": message.id,
"data": {
"type": "message:update",
"data": {
**message.model_dump(),
"user": UserNameResponse(**user.model_dump()).model_dump(),
},
},
2024-12-25 01:25:59 +00:00
"user": UserNameResponse(**user.model_dump()).model_dump(),
"channel": channel.model_dump(),
2024-12-23 07:53:45 +00:00
},
to=f"channel:{channel.id}",
)
return MessageModel(**message.model_dump())
except Exception as e:
log.exception(e)
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
############################
# DeleteMessageById
############################
@router.delete("/{id}/messages/{message_id}/delete", response_model=bool)
async def delete_message_by_id(
id: str, message_id: str, user=Depends(get_verified_user)
):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
2024-12-23 08:37:13 +00:00
if user.role != "admin" and not has_access(
user.id, type="read", access_control=channel.access_control
):
2024-12-23 07:53:45 +00:00
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
message = Messages.get_message_by_id(message_id)
if not message:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
if message.channel_id != id:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
try:
Messages.delete_message_by_id(message_id)
await sio.emit(
"channel-events",
{
"channel_id": channel.id,
"message_id": message.id,
"data": {
"type": "message:delete",
"data": {
**message.model_dump(),
"user": UserNameResponse(**user.model_dump()).model_dump(),
},
},
2024-12-25 01:25:59 +00:00
"user": UserNameResponse(**user.model_dump()).model_dump(),
"channel": channel.model_dump(),
2024-12-23 07:53:45 +00:00
},
to=f"channel:{channel.id}",
)
return True
except Exception as e:
log.exception(e)
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)