File size: 7,462 Bytes
9be760a
 
 
 
 
6c0aa26
9be760a
 
7445a27
9be760a
6c0aa26
 
 
 
 
 
9be760a
 
6c0aa26
 
 
 
9be760a
 
6c0aa26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9be760a
6c0aa26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9be760a
 
6c0aa26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7445a27
6c0aa26
7445a27
6c0aa26
9be760a
6c0aa26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9be760a
6c0aa26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9be760a
 
6c0aa26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9be760a
7445a27
6c0aa26
f16f0ac
6c0aa26
 
 
 
 
9be760a
 
6c0aa26
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
import gradio as gr
import json
import re
import sqlite3
import logging
from collections import defaultdict
from util import process_json_files
from gematria import calculate_gematria
from deep_translator import GoogleTranslator, exceptions

# Set up logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')

# Global variables for database connection and translator
conn = None
translator = None

def flatten_text(text):
  """Helper function to flatten nested lists into a single list."""
  if isinstance(text, list):
    return " ".join(flatten_text(item) if isinstance(item, list) else item for item in text)
  return text

def initialize_database():
  """Initializes the SQLite database."""
  global conn
  conn = sqlite3.connect('gematria.db')
  c = conn.cursor()
  c.execute('''
    CREATE TABLE IF NOT EXISTS results (
      gematria_sum INTEGER,
      words TEXT UNIQUE,
      translation TEXT,
      occurrences TEXT,
      PRIMARY KEY (words)
    )
  ''')
  c.execute('''
    CREATE TABLE IF NOT EXISTS processed_books (
      book INTEGER PRIMARY KEY,
      max_phrase_length INTEGER
    )
  ''')
  conn.commit()
  logging.info("Database initialized.")

def initialize_translator():
  """Initializes the Google Translator."""
  global translator
  translator = GoogleTranslator(source='iw', target='en')
  logging.info("Translator initialized.")

def insert_phrase_to_db(gematria_sum, phrase_candidate, translation, occurrence):
  """Inserts a phrase and its Gematria value into the database."""
  global conn
  c = conn.cursor()
  try:
    c.execute('''
      INSERT INTO results (gematria_sum, words, translation, occurrences)
      VALUES (?, ?, ?, ?)
    ''', (gematria_sum, phrase_candidate, translation, occurrence))
    conn.commit()
    logging.debug(f"Inserted phrase: {phrase_candidate} (Gematria: {gematria_sum})")
  except sqlite3.IntegrityError:
    logging.debug(f"Phrase already exists: {phrase_candidate} (Gematria: {gematria_sum})")
    c.execute('''
      SELECT occurrences FROM results WHERE words = ?
    ''', (phrase_candidate,))
    existing_occurrences = c.fetchone()[0]
    updated_occurrences = existing_occurrences + ';' + occurrence
    c.execute('''
      UPDATE results
      SET occurrences = ?
      WHERE words = ?
    ''', (updated_occurrences, phrase_candidate))
    conn.commit()

def populate_database(tanach_texts, max_phrase_length=3):
  """Populates the database with phrases from the Tanach and their Gematria values."""
  global conn
  logging.info("Populating database...")
  c = conn.cursor()
  for book_id, text in enumerate(tanach_texts):
    c.execute('''SELECT max_phrase_length FROM processed_books WHERE book = ?''', (book_id + 1,))
    result = c.fetchone()
    if result and result[0] >= max_phrase_length:
      logging.info(f"Skipping book {book_id+1}: Already processed with max_phrase_length {result[0]}")
      continue

    logging.info(f"Processing book {book_id+1} with max_phrase_length {max_phrase_length}")
    if 'text' not in text or not isinstance(text['text'], list):
      logging.warning(f"Skipping book {book_id} due to missing or invalid 'text' field.")
      continue
    title = text.get('title', 'Unknown')
    chapters = text['text']
    for chapter_id, chapter in enumerate(chapters):
      if not isinstance(chapter, list):
        logging.warning(f"Skipping chapter {chapter_id} in book {title} due to invalid format.")
        continue
      for verse_id, verse in enumerate(chapter):
        verse_text = flatten_text(verse)
        verse_text = re.sub(r"[^\u05D0-\u05EA ]+", "", verse_text)
        verse_text = re.sub(r" +", " ", verse_text)
        words = verse_text.split()
        for length in range(1, max_phrase_length + 1):
          for start in range(len(words) - length + 1):
            phrase_candidate = " ".join(words[start:start + length])
            gematria_sum = calculate_gematria(phrase_candidate.replace(" ", ""))
            occurrence = f"{book_id+1}:{title}:{chapter_id+1}:{verse_id+1}"
            insert_phrase_to_db(gematria_sum, phrase_candidate, None, occurrence)  # No translation initially
    try:
      c.execute('''INSERT INTO processed_books (book, max_phrase_length) VALUES (?, ?)''', (book_id + 1, max_phrase_length))
    except sqlite3.IntegrityError:
      c.execute('''UPDATE processed_books SET max_phrase_length = ? WHERE book = ?''', (max_phrase_length, book_id + 1))
    conn.commit()
  logging.info("Database population complete.")

def get_translation(phrase):
  """Retrieves or generates the English translation of a Hebrew phrase."""
  global translator, conn
  c = conn.cursor()
  c.execute('''
    SELECT translation FROM results
    WHERE words = ?
  ''', (phrase,))
  result = c.fetchone()
  if result and result[0]:
    return result[0]
  else:
    translation = translate_and_store(phrase)
    c.execute('''
      UPDATE results
      SET translation = ?
      WHERE words = ?
    ''', (translation, phrase))
    conn.commit()
    return translation


def translate_and_store(phrase):
  """Translates a phrase using Google Translate."""
  global translator
  try:
    translation = translator.translate(phrase)
    logging.debug(f"Translated phrase: {translation}")
    return translation
  except (exceptions.TranslationNotFound, exceptions.NotValidPayload,
          exceptions.ServerException, exceptions.RequestError) as e:
    logging.error(f"Error translating phrase '{phrase}': {e}")
    return "[Translation Error]"

def search_gematria_in_db(gematria_sum):
  """Searches the database for phrases with a given Gematria value."""
  global conn
  c = conn.cursor()
  c.execute('''
    SELECT words, occurrences FROM results WHERE gematria_sum = ?
  ''', (gematria_sum,))
  results = c.fetchall()
  logging.debug(f"Found {len(results)} matching phrases for Gematria: {gematria_sum}")
  return results

def gematria_search_interface(phrase):
  """The main function for the Gradio interface."""
  if not phrase.strip():
    return "Please enter a phrase."

  # Datenbankverbindung innerhalb der Funktion erstellen
  global conn
  conn = sqlite3.connect('gematria.db')
  c = conn.cursor()

  phrase_gematria = calculate_gematria(phrase.replace(" ", ""))
  logging.info(f"Searching for phrases with Gematria: {phrase_gematria}")

  matching_phrases = search_gematria_in_db(phrase_gematria)
  if not matching_phrases:
    return "No matching phrases found."

  # Format results for display
  results = []
  for words, occurrences in matching_phrases:
    translation = get_translation(words)
    for occurrence in occurrences.split(';'):
      book, title, chapter, verse = occurrence.split(':')
      results.append(f"Book: {title} ({book})\nChapter: {chapter}, Verse: {verse}\nPhrase: {words}\nTranslation: {translation}\n\n")

  conn.close()
  return "\n".join(results)

def run_app():
  """Initializes and launches the Gradio app."""
  initialize_database()
  initialize_translator()

  # Pre-populate the database
  tanach_texts = process_json_files(1, 39)
  populate_database(tanach_texts)

  iface = gr.Interface(
    fn=gematria_search_interface,
    inputs=gr.Textbox(label="Enter phrase"),
    outputs=gr.Textbox(label="Results"),
    title="Gematria Search in Tanach",
    description="Search for phrases in the Tanach that have the same Gematria value.",
    live=False,
    allow_flagging="never"
  )
  iface.launch()

if __name__ == "__main__":
  run_app()