forked from tecwindow/WikiSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WikiSearch.py
359 lines (305 loc) · 14.6 KB
/
WikiSearch.py
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
#-*- coding: utf-8 -*-
# import project libraries.
from custome_errors import *
sys.excepthook = my_excepthook
import wx
import json
import nlpia2_wikipedia as wikipedia
import threading
import webbrowser
import datetime
import os
import sys
#change working dir to main exe dir
#os.chdir(os.path.dirname(sys.argv[0]))
import globals as g
from view_search_dialog import ViewSearch
from update_dialog import UpdateDialog
from settings import *
from functions import *
from dialogs import HistoryDialog, FavouritesDialog, SavedArticlesDialog
from packaging import version
from view_search_dialog import *
#Set language for main window
_ = SetLanguage(Settings().ReadSettings())
# information of program
CurrntVersion = "1.4.0"
ProgramName = "WikiSearch"
ProgramDescription = _("With this program, you can search or browse any Wikipedia article. site: https://github.com/tecwindow/WikiSearch")
CurrentSettings = Settings().ReadSettings()
# Create main window with wx.
class window(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, title = ProgramName, size=(430, 335))
#make window in center.
self.Center()
#make window Minimum size.
self.Maximize(False)
self.EnableMaximizeButton(False)
# Creating panel
Panel = wx.Panel(self)
# Creating ComboBox for languages
wx.StaticText(Panel, -1, _("Choose the search language:"), pos=(15,70), size=(380, 30))
self.LanguageSearch = wx.ComboBox(Panel, -1, pos=(15, 100), size=(120, 40), style=wx.CB_READONLY+wx.CB_SORT)
self.LanguageSearch.SetItems(g.name)
self.LanguageSearch.Value = CurrentSettings["search language"]
# Creating search edit
wx.StaticText(Panel, -1, _("Enter search words"), pos=(190,70), size=(380, 30))
self.SearchText = wx.TextCtrl(Panel, -1, pos=(160, 100), size=(230, 30))
# Creating Buttons
self.StartSearch = wx.Button(Panel, -1, _("Start search"), pos=(10,235), size=(100,30))
self.StartSearch.SetDefault()
self.StartSearch.Enabled = False
self.RandomArticles = wx.Button(Panel, -1, _("View random articles"), pos=(130,235), size=(120,30))
self.Close = wx.Button(Panel, -1, _("Close the program"), pos=(270,235), size=(120,30))
#creating menu bar
menubar = wx.MenuBar()
MainMenu = wx.Menu()
self.HelpFile = MainMenu.Append(-1, _("&Help file\tF1"))
AboutProgramItem = MainMenu.Append(-1, _("&About"))
ContactMenu = wx.Menu()
QaisMenu = wx.Menu()
QaisEm = QaisMenu.Append(-1, "&E-mail")
QaisTe =QaisMenu.Append(-1, "&Telegram")
QaisWh =QaisMenu.Append(-1, "&Whats App")
QaisTw =QaisMenu.Append(-1, "&Twitter")
QaisFa =QaisMenu.Append(-1, "&Facebook")
ContactMenu.AppendSubMenu(QaisMenu, _("Qais Alrefai"))
MahmoodMenu = wx.Menu()
MahmoodEm =MahmoodMenu.Append(-1, "&E-mail")
MahmoodTe =MahmoodMenu.Append(-1, "&Telegram")
MahmoodWh =MahmoodMenu.Append(-1, "&Whats App")
MahmoodTw =MahmoodMenu.Append(-1, "&Twitter")
MahmoodFa =MahmoodMenu.Append(-1, "&Facebook")
ContactMenu.AppendSubMenu(MahmoodMenu, _("Mahmood atef"))
MesterPerfectMenu = wx.Menu()
MesterPerfectEm =MesterPerfectMenu.Append(-1, "&E-mail")
MesterPerfectTe =MesterPerfectMenu.Append(-1, "&Telegram")
MesterPerfectWh =MesterPerfectMenu.Append(-1, "&Whats App")
MesterPerfectTw =MesterPerfectMenu.Append(-1, "&Twitter")
MesterPerfectFa =MesterPerfectMenu.Append(-1, "&Facebook")
ContactMenu.AppendSubMenu(MesterPerfectMenu, _("Ahmed Bakr"))
TecWindow=ContactMenu.Append(-1, "TecWindow on Telegram")
MainMenu.AppendSubMenu(ContactMenu, _("&Contact us"))
self.SavedArticlesItem = MainMenu.Append(-1, _("&Saved articles\tctrl+S"))
self.FavouritesItem = MainMenu.Append(-1, _("&Favourite articles\tctrl+F"))
self.HistoryItems = MainMenu.Append(-1, _("&History\tctrl+H"))
self.PreferencesItem = MainMenu.Append(-1, _("Program &settings\tAlt+S"))
self.CheckForItem = MainMenu.Append(-1, _("Check for &update\tctrl+u"))
self.CloseProgramItem = MainMenu.Append(-1, _("Close program\tctrl+w"))
menubar.Append(MainMenu, _("Main menu"))
self.SetMenuBar(menubar)
self.hotKeys = wx.AcceleratorTable([
(wx.ACCEL_CTRL, ord("W"), self.CloseProgramItem.GetId()),
(0, wx.WXK_F1, self.HelpFile.GetId()),
(wx.ACCEL_CTRL, ord("U"), self.CheckForItem.GetId()),
(wx.ACCEL_CTRL, ord("R"), self.RandomArticles.GetId()),
(wx.ACCEL_CTRL, ord("H"), self.HistoryItems.GetId()),
(wx.ACCEL_CTRL, ord("S"), self.SavedArticlesItem.GetId()),
(wx.ACCEL_CTRL, ord("F"), self.FavouritesItem.GetId()),
(wx.ACCEL_ALT, ord("S"), self.PreferencesItem.GetId()),
])
Panel.SetAcceleratorTable(self.hotKeys)
# Show Main window
self.Show()
# Check if the is there link in the clipboard in case the feature is enabled.
if CurrentSettings["auto detect"] == "True":
self.AutoDetect()
# Check if the is there update in case the feature is enabled.
if CurrentSettings["auto update"] == "True":
threading.Thread(target=self.OnCheckForItem(None, AutoCheck="yes"), daemon=True).start()
# events for buttons
self.StartSearch.Bind(wx.EVT_BUTTON, self.OnViewSearch)
self.Close.Bind(wx.EVT_BUTTON, self.OnClose)
self.RandomArticles.Bind(wx.EVT_BUTTON, self.OnRandomArticle)
#events for menu items
self.Bind(wx.EVT_MENU, self.OnAboutProgram, AboutProgramItem)
self.Bind(wx.EVT_MENU, lambda event: SettingsDialog(self).ShowModal(), self.PreferencesItem)
self.Bind(wx.EVT_MENU, self.OnCheckForItem, self.CheckForItem)
self.Bind(wx.EVT_MENU, self.OnHelp, self.HelpFile)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open("mailto:ww258148@gmail.com"), QaisEm)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://t.me/QaisAlrefai"), QaisTe)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://twitter.com/qais_Alrefai"), QaisTw)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://wa.me/962792540394"), QaisWh)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://www.facebook.com/Qais1461"), QaisFa)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open("mailto:mahmoud.atef.987123@gmail.com"), MahmoodEm)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://t.me/MahmoodAtef"), MahmoodTe)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://twitter.com/mahmoud_atef999"), MahmoodTw)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://wa.me/201224660664"), MahmoodWh)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://www.facebook.com/mahmoud.atef.000"), MahmoodFa)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open("mailto:AhmedBakr593@gmail.com"), MesterPerfectEm)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://t.me/MesterPerfect"), MesterPerfectTe)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://twitter.com/my_nvda"), MesterPerfectTw)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://wa.me/201554240991"), MesterPerfectWh)
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://www.facebook.com/my.nvda.1"), MesterPerfectFa)
if CurrentSettings["language"] == "Arabic":
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://t.me/TecWindow"), TecWindow)
else:
self.Bind(wx.EVT_MENU, lambda event: webbrowser.open_new("https://t.me/TecWindowProjects"), TecWindow)
self.Bind(wx.EVT_MENU, self.OnClose, self.CloseProgramItem)
self.Bind(wx.EVT_MENU, lambda event: HistoryDialog(self), self.HistoryItems)
self.Bind(wx.EVT_MENU, lambda event: FavouritesDialog(self), self.FavouritesItem)
self.Bind(wx.EVT_MENU, lambda event: SavedArticlesDialog(self), self.SavedArticlesItem)
self.Bind(wx.EVT_CLOSE, self.OnClose)
self.SearchText.Bind(wx.EVT_TEXT, self.OnText)
# Creating Ontext function to disable start search buttion if search edit is empty.
def OnText(self, event):
self.StartSearch.Enable(enable = not self.SearchText.IsEmpty())
#creating OnClose function to Close Program.
def OnClose(self, event):
CurrentSettings = Settings().ReadSettings()
if g.NumberArticle == 1:
ArticleCounte = _("There is 1 open article.")
elif g.NumberArticle > 1:
ArticleCounte = _("There are {} open articles.").format(g.NumberArticle)
if (g.NumberArticle >= 1) and (CurrentSettings["close message"] == "True"):
ConfirmClosProgram = wx.RichMessageDialog(self,_("""{}
Do you want to close the program anyway?""").format(ArticleCounte), _("Confirm"), style=wx.YES_NO+wx.YES_DEFAULT+wx.ICON_WARNING+wx.ICON_QUESTION)
ConfirmClosProgram.ShowCheckBox(_("Don't show that again"))
ConfirmClosProgram.SetYesNoLabels(_("&Yes"), _("&No"))
ConfirmClosProgramResult = ConfirmClosProgram.ShowModal()
if ConfirmClosProgram.IsCheckBoxChecked():
CurrentSettings["close message"] = "False"
Settings().WriteSettings(**CurrentSettings)
if ConfirmClosProgramResult == wx.ID_YES:
wx.Exit()
g.Data.CloseConnection()
else:
return
else:
wx.Exit()
g.Data.CloseConnection()
#creating OnAboutProgram function to show information about this program.
def OnAboutProgram(self, event):
AboutDialog = wx.MessageDialog(self, _("""{} Version {}.
{}
This program was developed by:
Ahmed Bakr.
Qais Alrifai.
Mahmoud Atef.""").format(ProgramName, CurrntVersion, ProgramDescription), _("About the program"), style=wx.ICON_INFORMATION+wx.OK)
AboutDialog.SetOKLabel(_("&Ok"))
AboutDialog.ShowModal()
#Create a function to detect links from the clipboard
def AutoDetect(self):
Link = pyperclip.paste()
if (Link.startswith("https://") and "wikipedia.org" in Link):
title, LanguageName, LanguageCode = GetTitleFromURL(Link)
ArticleTitle = title.replace('_', ' ')
AutoDetectDialog = wx.MessageDialog(None, _("A link to an article with the title {} has been detected in your clipboard.").format(ArticleTitle), _("AutoDetect"), style=wx.CANCEL+wx.YES_NO+wx.YES_DEFAULT+wx.ICON_QUESTION+wx.ICON_WARNING)
AutoDetectDialog.SetYesNoCancelLabels(_("&View Article"), _("&Open in browser"), _("&Cancel"))
AutoDetectDialogResult = AutoDetectDialog.ShowModal()
if AutoDetectDialogResult == wx.ID_NO:
webbrowser.open_new(Link)
#self.Destroy()
#return
elif AutoDetectDialogResult == wx.ID_YES:
wikipedia.set_lang(LanguageCode)
if CurrentSettings["wepviewer"] == "0":
window1 = ViewArticleWindow(None, title, self)
else:
window1 = WebViewArticle(None, title, self)
#adding the article to history.
#Getting the date and time of visit article.
date = datetime.date.today()
time = datetime.datetime.now()
time = time.strftime("%H:%M:%S")
g.Data.InsertData("HistoryTable", (title, str(date), str(time), LanguageName))
#self.Destroy()
#return
return
#creating OnViewSearch function to show search results
def OnViewSearch(self, event):
CurrentSettings = Settings().ReadSettings()
CurrentSettings["search language"] = self.LanguageSearch.Value
Settings().WriteSettings(**CurrentSettings)
#Set language for search
try:
wikipedia.set_lang(g.code[self.LanguageSearch.GetValue()])
except:
ConnectionError = wx.MessageDialog(self, _("There is no internet connection."), _("Connection error"), style=wx.ICON_ERROR+wx.OK)
ConnectionError.SetOKLabel(_("&Ok"))
ConnectionError.ShowModal()
return None
#geting text of search
TextSearch = self.SearchText.Value
# if The Search text is a Wikipedia link make the article open directly.
if (TextSearch.startswith("https://") and "wikipedia.org" in TextSearch):
title, LanguageName, LanguageCode = GetTitleFromURL(self.SearchText.Value)
wikipedia.set_lang(LanguageCode)
if CurrentSettings["wepviewer"] == "0":
window1 = ViewArticleWindow(None, title, self)
else:
window1 = WebViewArticle(None, title, self)
#adding the article to history.
#Getting the date and time of visit article.
date = datetime.date.today()
time = datetime.datetime.now()
time = time.strftime("%H:%M:%S")
g.Data.InsertData("HistoryTable", (title, str(date), str(time), LanguageName))
return
#Show dialog of search results
self.dialog1 = ViewSearch(self, TextSearch)
#start thread function to add search results for list box in dialog.
thread1 = threading.Thread(target=self.dialog1.OpenThread, daemon=True)
thread1.start()
def OnRandomArticle(self, event):
CurrentSettings = Settings().ReadSettings()
CurrentSettings["search language"] = self.LanguageSearch.Value
Settings().WriteSettings(**CurrentSettings)
#Set language for random article
try:
wikipedia.set_lang(g.code[self.LanguageSearch.GetValue()])
except:
ConnectionError = wx.MessageDialog(self, _("There is no internet connection."), _("Connection error"), style=wx.ICON_ERROR+wx.OK)
ConnectionError.SetOKLabel(_("&Ok"))
ConnectionError.ShowModal()
return None
#Show dialog of random article
self.dialog1 = ViewSearch(self, None)
thread1 = threading.Thread(target=self.dialog1.OpenThread, daemon=True)
thread1.start()
#creating function to check for update
def OnCheckForItem(self, event, AutoCheck= "no"):
#geting the info recent version from online info file.
try:
info = GetOnlineInfo()
except:
if AutoCheck == "no":
ConnectionError = wx.MessageDialog(self, _("There is no internet connection."), _("Connection error"), style=wx.ICON_ERROR+wx.OK)
ConnectionError.SetOKLabel(_("&Ok"))
ConnectionError.ShowModal()
return None
RecentVersion = info["version"]
whatIsNew = info["What's new"]
#Show the update dialog if there is new version.
if version.parse(RecentVersion) > version.parse(CurrntVersion):
UpdateDialog(self, RecentVersion, whatIsNew)
#if there is no new version show MessageBox tell that.
else:
if AutoCheck == "yes":
pass
else:
LatestVersionDialog = wx.MessageDialog(self, _("You are using version {} which is the latest version.").format(CurrntVersion), _("No update available"), style=wx.ICON_INFORMATION+wx.OK)
LatestVersionDialog.SetOKLabel(_("&Ok"))
LatestVersionDialog.ShowModal()
def OnHelp(self, event):
language = {
"English": "en",
"Arabic": "ar",
"Spanish": "es",
"French": "fr"
}
CurrentLanguage = language[CurrentSettings["language"]]
HelpFile = os.getcwd() + "/" + "help/" + CurrentLanguage + "/" + "HelpMe.html"
if os.path.exists(HelpFile):
os.startfile(HelpFile)
else:
os.startfile(os.getcwd() + "/" + "help/en/HelpMe.html")
#end of class
if __name__ == "__main__":
# Create app with wx.
app= wx.App()
# Call up the main window.
main_window = window()
# make loop for the main window
app.MainLoop()