Compare commits

..
Author SHA1 Message Date
Typosaurus 131f988bea ticket #44 attempt 2 2026-07-19 20:05:41 +00:00
Typosaurus 1c31c1d6a5 ticket #44 attempt 1 2026-07-19 19:47:01 +00:00
8 changed files with 6 additions and 37 deletions
File diff suppressed because one or more lines are too long
-1
View File
@@ -18,7 +18,6 @@ NOTIFICATION_TYPES = [
{"key": "reminder", "label": "Reminders", "description": "A reminder or scheduled task you asked Devii to run fires"},
{"key": "harvest_stolen", "label": "Farm raids", "description": "Someone steals a ready build from your Code Farm"},
{"key": "award", "label": "Awards", "description": "Someone gives you an award on your profile"},
{"key": "admin_alert", "label": "Admin alerts", "description": "System alerts requiring admin attention"},
]
-2
View File
@@ -23,7 +23,6 @@ from devplacepy.utils import (
require_user,
)
from devplacepy.services.audit import record as audit
from devplacepy.services.devii.quota import notify_admins_quota_blocked
logger = logging.getLogger("devii.router")
@@ -280,7 +279,6 @@ async def devii_ws(websocket: WebSocket):
summary=f"AI request by {username or owner_id} blocked - 24h quota reached",
metadata={"limit_usd": limit, "owner_kind": owner_kind},
)
notify_admins_quota_blocked(owner_kind, owner_id, username)
await websocket.send_json(
{
"type": "error",
-26
View File
@@ -1,26 +0,0 @@
# retoor <retoor@molodetz.nl>
import logging
from devplacepy.database import get_table
from devplacepy.utils.notifications import create_notification
logger = logging.getLogger("devii.quota")
ADMIN_ALERT_TYPE = "admin_alert"
def notify_admins_quota_blocked(owner_kind: str, owner_id: str, username: str) -> None:
if owner_kind != "user":
return
admins = get_table("users").find(role="Admin")
for admin in admins:
if admin["uid"] == owner_id:
continue
create_notification(
admin["uid"],
ADMIN_ALERT_TYPE,
f"User {username} blocked - 24h AI quota reached",
owner_id,
"/admin/users",
)
-2
View File
@@ -10,7 +10,6 @@ from typing import Any
from devplacepy.database import get_table
from devplacepy.services.audit import record as audit
from devplacepy.services.devii.quota import notify_admins_quota_blocked
from devplacepy.services.manager import service_manager
from devplacepy.utils import is_admin, is_primary_admin
@@ -401,7 +400,6 @@ class TelegramBridge:
summary=f"Telegram AI request by {user.get('username', owner_id)} blocked - 24h quota reached",
metadata={"limit_usd": limit},
)
notify_admins_quota_blocked("user", owner_id, user.get("username", ""))
await self._service.send(
chat_id, "Your daily AI quota is reached (100%). Please try again later."
)
-1
View File
@@ -115,7 +115,6 @@ devii-terminal.devii-state-fullscreen .devii-window {
}
devii-terminal.devii-state-normal .devii-window {
resize: both;
}
devii-terminal.devii-state-normal .devii-titlebar {
cursor: move;
+1
View File
@@ -86,6 +86,7 @@ export class DeviiTerminal {
}
_canOpenOnGesture() {
if (this.element && this.element.state !== "closed") return false;
if (document.querySelector(".modal-overlay.visible")) return false;
if (document.querySelector(".dialog-overlay.visible")) return false;
if (document.querySelector(".context-menu.visible")) return false;
@@ -297,8 +297,8 @@ export default class FloatingWindow extends Component {
if (!this.geometry) return;
const g = this.geometry;
const safeHeight = this._safeViewport.height;
g.width = Math.min(g.width, window.innerWidth - 16);
g.height = Math.min(g.height, safeHeight - 16);
g.width = Math.max(320, Math.min(g.width, window.innerWidth - 16));
g.height = Math.max(220, Math.min(g.height, safeHeight - 16));
g.left = Math.max(8, Math.min(g.left, window.innerWidth - g.width - 8));
g.top = Math.max(8, Math.min(g.top, safeHeight - g.height - 8));
}
@@ -409,8 +409,8 @@ export default class FloatingWindow extends Component {
this._ro = new ResizeObserver(() => {
if (this.state === "normal" && this.geometry && !this._drag) {
const rect = this.win.getBoundingClientRect();
this.geometry.width = Math.round(rect.width);
this.geometry.height = Math.round(rect.height);
this.geometry.width = Math.max(320, Math.round(rect.width));
this.geometry.height = Math.max(220, Math.round(rect.height));
this._persistGeometry();
}
this._syncControls();