Spaces:
Sleeping
Sleeping
File size: 8,853 Bytes
1138072 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | # database.py - نظام قاعدة البيانات البسيطة للملاحظات
import sqlite3
import json
import os
from datetime import datetime
from typing import List, Dict, Optional
class NotesDatabase:
"""قاعدة بيانات بسيطة لحفظ الملاحظات والملخصات"""
def __init__(self, db_path: str = "lecture_notes.db"):
self.db_path = db_path
self.init_database()
def init_database(self):
"""إنشاء قاعدة البيانات والجداول"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
# جدول الملاحظات الرئيسي
cursor.execute('''
CREATE TABLE IF NOT EXISTS lecture_notes (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
original_text TEXT NOT NULL,
translated_text TEXT,
summary TEXT,
key_points TEXT,
subject TEXT,
date_created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
date_modified TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
audio_file_path TEXT,
language_detected TEXT,
target_language TEXT,
markers TEXT
)
''')
# جدول الملخصات السريعة
cursor.execute('''
CREATE TABLE IF NOT EXISTS quick_summaries (
id INTEGER PRIMARY KEY AUTOINCREMENT,
note_id INTEGER,
summary_type TEXT,
content TEXT,
date_created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (note_id) REFERENCES lecture_notes (id)
)
''')
conn.commit()
def save_lecture_note(self, data: Dict) -> int:
"""حفظ ملاحظة محاضرة جديدة"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
cursor.execute('''
INSERT INTO lecture_notes
(title, original_text, translated_text, summary, key_points,
subject, audio_file_path, language_detected, target_language, markers)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
''', (
data.get('title', 'محاضرة جديدة'),
data.get('original_text', ''),
data.get('translated_text', ''),
data.get('summary', ''),
data.get('key_points', ''),
data.get('subject', ''),
data.get('audio_file_path', ''),
data.get('language_detected', ''),
data.get('target_language', ''),
json.dumps(data.get('markers', []))
))
note_id = cursor.lastrowid
conn.commit()
return note_id
def get_all_notes(self, limit: int = 50) -> List[Dict]:
"""استرجاع جميع الملاحظات"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
cursor.execute('''
SELECT * FROM lecture_notes
ORDER BY date_created DESC
LIMIT ?
''', (limit,))
columns = [description[0] for description in cursor.description]
notes = []
for row in cursor.fetchall():
note = dict(zip(columns, row))
# تحويل markers من JSON string إلى list
if note['markers']:
try:
note['markers'] = json.loads(note['markers'])
except:
note['markers'] = []
notes.append(note)
return notes
def get_note_by_id(self, note_id: int) -> Optional[Dict]:
"""استرجاع ملاحظة محددة بالـ ID"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
cursor.execute('SELECT * FROM lecture_notes WHERE id = ?', (note_id,))
row = cursor.fetchone()
if row:
columns = [description[0] for description in cursor.description]
note = dict(zip(columns, row))
if note['markers']:
try:
note['markers'] = json.loads(note['markers'])
except:
note['markers'] = []
return note
return None
def update_note(self, note_id: int, data: Dict) -> bool:
"""تحديث ملاحظة موجودة"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
# بناء query التحديث بناءً على البيانات الموجودة
update_fields = []
values = []
for field in ['title', 'summary', 'key_points', 'subject']:
if field in data:
update_fields.append(f"{field} = ?")
values.append(data[field])
if not update_fields:
return False
update_fields.append("date_modified = CURRENT_TIMESTAMP")
values.append(note_id)
query = f"UPDATE lecture_notes SET {', '.join(update_fields)} WHERE id = ?"
cursor.execute(query, values)
conn.commit()
return cursor.rowcount > 0
def delete_note(self, note_id: int) -> bool:
"""حذف ملاحظة"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
# حذف الملخصات المرتبطة أولاً
cursor.execute('DELETE FROM quick_summaries WHERE note_id = ?', (note_id,))
# ثم حذف الملاحظة
cursor.execute('DELETE FROM lecture_notes WHERE id = ?', (note_id,))
conn.commit()
return cursor.rowcount > 0
def search_notes(self, query: str) -> List[Dict]:
"""البحث في الملاحظات"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
search_query = f"%{query}%"
cursor.execute('''
SELECT * FROM lecture_notes
WHERE title LIKE ? OR original_text LIKE ?
OR translated_text LIKE ? OR summary LIKE ?
ORDER BY date_created DESC
''', (search_query, search_query, search_query, search_query))
columns = [description[0] for description in cursor.description]
notes = []
for row in cursor.fetchall():
note = dict(zip(columns, row))
if note['markers']:
try:
note['markers'] = json.loads(note['markers'])
except:
note['markers'] = []
notes.append(note)
return notes
def get_notes_by_subject(self, subject: str) -> List[Dict]:
"""استرجاع الملاحظات حسب المادة"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
cursor.execute('''
SELECT * FROM lecture_notes
WHERE subject = ?
ORDER BY date_created DESC
''', (subject,))
columns = [description[0] for description in cursor.description]
notes = []
for row in cursor.fetchall():
note = dict(zip(columns, row))
if note['markers']:
try:
note['markers'] = json.loads(note['markers'])
except:
note['markers'] = []
notes.append(note)
return notes
def get_subjects(self) -> List[str]:
"""استرجاع قائمة المواد الدراسية"""
with sqlite3.connect(self.db_path) as conn:
cursor = conn.cursor()
cursor.execute('''
SELECT DISTINCT subject FROM lecture_notes
WHERE subject IS NOT NULL AND subject != ''
ORDER BY subject
''')
return [row[0] for row in cursor.fetchall()]
|