2017-04-17 22:36:02 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2018-04-24 13:07:59 -04:00
|
|
|
Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
|
2017-04-17 22:36:02 -04:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
2018-03-06 03:56:40 -05:00
|
|
|
import queue
|
2017-04-17 22:36:02 -04:00
|
|
|
from PyQt5 import QtCore, QtWidgets, QtGui
|
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
from onionshare import strings
|
2018-04-26 12:30:53 -04:00
|
|
|
from onionshare.web import Web
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2017-05-14 21:30:45 -04:00
|
|
|
from .tor_connection_dialog import TorConnectionDialog
|
2017-05-14 21:46:54 -04:00
|
|
|
from .settings_dialog import SettingsDialog
|
2018-04-25 11:43:40 -04:00
|
|
|
from .widgets import Alert
|
2017-04-17 22:36:02 -04:00
|
|
|
from .update_checker import UpdateThread
|
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2019-10-20 22:41:20 -04:00
|
|
|
class MainWindow(QtWidgets.QMainWindow):
|
2017-04-17 22:36:02 -04:00
|
|
|
"""
|
2019-10-20 23:01:09 -04:00
|
|
|
MainWindow is the OnionShare main window, which contains the GUI elements, including all open tabs
|
2017-04-17 22:36:02 -04:00
|
|
|
"""
|
2018-04-23 22:51:51 -04:00
|
|
|
|
2019-10-21 00:36:30 -04:00
|
|
|
def __init__(self, common, filenames):
|
2019-10-20 22:41:20 -04:00
|
|
|
super(MainWindow, self).__init__()
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common = common
|
2019-10-20 22:41:20 -04:00
|
|
|
self.common.log("MainWindow", "__init__")
|
2017-05-22 02:47:12 -04:00
|
|
|
|
2019-10-20 23:11:45 -04:00
|
|
|
# Initialize the window
|
|
|
|
self.setMinimumWidth(820)
|
|
|
|
self.setMinimumHeight(660)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.setWindowTitle("OnionShare")
|
|
|
|
self.setWindowIcon(
|
|
|
|
QtGui.QIcon(self.common.get_resource_path("images/logo.png"))
|
|
|
|
)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-24 12:21:23 -04:00
|
|
|
# System tray
|
|
|
|
menu = QtWidgets.QMenu()
|
2019-10-13 00:01:25 -04:00
|
|
|
self.settings_action = menu.addAction(strings._("gui_settings_window_title"))
|
2018-04-24 12:21:23 -04:00
|
|
|
self.settings_action.triggered.connect(self.open_settings)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.help_action = menu.addAction(strings._("gui_settings_button_help"))
|
2019-04-21 19:10:00 -04:00
|
|
|
self.help_action.triggered.connect(lambda: SettingsDialog.help_clicked(self))
|
2019-10-13 00:01:25 -04:00
|
|
|
exit_action = menu.addAction(strings._("systray_menu_exit"))
|
2018-04-24 12:21:23 -04:00
|
|
|
exit_action.triggered.connect(self.close)
|
|
|
|
|
|
|
|
self.system_tray = QtWidgets.QSystemTrayIcon(self)
|
2019-10-21 00:36:30 -04:00
|
|
|
|
2018-04-24 12:21:23 -04:00
|
|
|
# The convention is Mac systray icons are always grayscale
|
2019-10-13 00:01:25 -04:00
|
|
|
if self.common.platform == "Darwin":
|
|
|
|
self.system_tray.setIcon(
|
|
|
|
QtGui.QIcon(self.common.get_resource_path("images/logo_grayscale.png"))
|
|
|
|
)
|
2018-04-24 12:21:23 -04:00
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.system_tray.setIcon(
|
|
|
|
QtGui.QIcon(self.common.get_resource_path("images/logo.png"))
|
|
|
|
)
|
2018-04-24 12:21:23 -04:00
|
|
|
self.system_tray.setContextMenu(menu)
|
|
|
|
self.system_tray.show()
|
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
# Server status indicator on the status bar
|
|
|
|
self.server_status_image_label = QtWidgets.QLabel()
|
|
|
|
self.server_status_image_label.setFixedWidth(20)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.server_status_label = QtWidgets.QLabel("")
|
|
|
|
self.server_status_label.setStyleSheet(
|
2019-10-20 23:01:09 -04:00
|
|
|
self.common.gui.css["server_status_indicator_label"]
|
2019-10-13 00:01:25 -04:00
|
|
|
)
|
2018-04-24 01:08:51 -04:00
|
|
|
server_status_indicator_layout = QtWidgets.QHBoxLayout()
|
|
|
|
server_status_indicator_layout.addWidget(self.server_status_image_label)
|
|
|
|
server_status_indicator_layout.addWidget(self.server_status_label)
|
|
|
|
self.server_status_indicator = QtWidgets.QWidget()
|
|
|
|
self.server_status_indicator.setLayout(server_status_indicator_layout)
|
2018-04-23 22:51:51 -04:00
|
|
|
|
2018-02-06 22:05:02 -05:00
|
|
|
# Status bar
|
|
|
|
self.status_bar = QtWidgets.QStatusBar()
|
|
|
|
self.status_bar.setSizeGripEnabled(False)
|
2019-10-20 23:01:09 -04:00
|
|
|
self.status_bar.setStyleSheet(self.common.gui.css["status_bar"])
|
2018-02-06 22:31:02 -05:00
|
|
|
self.status_bar.addPermanentWidget(self.server_status_indicator)
|
2017-04-17 22:36:02 -04:00
|
|
|
self.setStatusBar(self.status_bar)
|
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
# Placeholder label
|
|
|
|
label = QtWidgets.QLabel("coming soon...")
|
2018-04-24 00:08:03 -04:00
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
# Layout
|
2018-04-24 00:08:03 -04:00
|
|
|
layout = QtWidgets.QVBoxLayout()
|
|
|
|
layout.setContentsMargins(0, 0, 0, 0)
|
2019-10-21 01:08:47 -04:00
|
|
|
layout.addWidget(label)
|
2018-04-24 00:08:03 -04:00
|
|
|
|
2017-04-17 22:36:02 -04:00
|
|
|
central_widget = QtWidgets.QWidget()
|
2018-04-24 00:08:03 -04:00
|
|
|
central_widget.setLayout(layout)
|
2017-04-17 22:36:02 -04:00
|
|
|
self.setCentralWidget(central_widget)
|
|
|
|
self.show()
|
|
|
|
|
2017-05-16 19:50:33 -04:00
|
|
|
# Start the "Connecting to Tor" dialog, which calls onion.connect()
|
2019-10-21 01:08:47 -04:00
|
|
|
tor_con = TorConnectionDialog(self.common)
|
|
|
|
tor_con.canceled.connect(self.tor_connection_canceled)
|
|
|
|
tor_con.open_settings.connect(self.tor_connection_open_settings)
|
2019-10-21 00:36:30 -04:00
|
|
|
if not self.common.gui.local_only:
|
2018-03-07 00:13:22 -05:00
|
|
|
tor_con.start()
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2017-05-16 20:29:02 -04:00
|
|
|
# After connecting to Tor, check for updates
|
|
|
|
self.check_for_updates()
|
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
def tor_connection_canceled(self):
|
2017-05-14 21:30:45 -04:00
|
|
|
"""
|
2017-05-14 22:21:33 -04:00
|
|
|
If the user cancels before Tor finishes connecting, ask if they want to
|
|
|
|
quit, or open settings.
|
2017-05-14 21:30:45 -04:00
|
|
|
"""
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common.log("MainWindow", "tor_connection_canceled")
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2017-05-16 19:50:33 -04:00
|
|
|
def ask():
|
2019-10-13 00:01:25 -04:00
|
|
|
a = Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("gui_tor_connection_ask"),
|
|
|
|
QtWidgets.QMessageBox.Question,
|
|
|
|
buttons=QtWidgets.QMessageBox.NoButton,
|
|
|
|
autostart=False,
|
|
|
|
)
|
|
|
|
settings_button = QtWidgets.QPushButton(
|
|
|
|
strings._("gui_tor_connection_ask_open_settings")
|
|
|
|
)
|
|
|
|
quit_button = QtWidgets.QPushButton(
|
|
|
|
strings._("gui_tor_connection_ask_quit")
|
|
|
|
)
|
2017-05-14 22:21:33 -04:00
|
|
|
a.addButton(settings_button, QtWidgets.QMessageBox.AcceptRole)
|
|
|
|
a.addButton(quit_button, QtWidgets.QMessageBox.RejectRole)
|
|
|
|
a.setDefaultButton(settings_button)
|
|
|
|
a.exec_()
|
|
|
|
|
|
|
|
if a.clickedButton() == settings_button:
|
2017-05-16 19:50:33 -04:00
|
|
|
# Open settings
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"OnionShareGui",
|
|
|
|
"_tor_connection_canceled",
|
|
|
|
"Settings button clicked",
|
|
|
|
)
|
2017-05-16 18:24:14 -04:00
|
|
|
self.open_settings()
|
2017-05-14 21:30:45 -04:00
|
|
|
|
2017-05-16 19:50:33 -04:00
|
|
|
if a.clickedButton() == quit_button:
|
|
|
|
# Quit
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"OnionShareGui", "_tor_connection_canceled", "Quit button clicked"
|
|
|
|
)
|
2017-05-16 19:50:33 -04:00
|
|
|
|
|
|
|
# Wait 1ms for the event loop to finish, then quit
|
2019-10-21 00:36:30 -04:00
|
|
|
QtCore.QTimer.singleShot(1, self.common.gui.qtapp.quit)
|
2017-05-16 19:50:33 -04:00
|
|
|
|
|
|
|
# Wait 100ms before asking
|
|
|
|
QtCore.QTimer.singleShot(100, ask)
|
2017-05-14 21:30:45 -04:00
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
def tor_connection_open_settings(self):
|
2017-05-14 21:46:54 -04:00
|
|
|
"""
|
|
|
|
The TorConnectionDialog wants to open the Settings dialog
|
|
|
|
"""
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common.log("MainWindow", "tor_connection_open_settings")
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2017-05-14 21:46:54 -04:00
|
|
|
# Wait 1ms for the event loop to finish closing the TorConnectionDialog
|
2017-05-16 18:24:14 -04:00
|
|
|
QtCore.QTimer.singleShot(1, self.open_settings)
|
|
|
|
|
|
|
|
def open_settings(self):
|
|
|
|
"""
|
|
|
|
Open the SettingsDialog.
|
|
|
|
"""
|
2019-10-20 22:41:20 -04:00
|
|
|
self.common.log("MainWindow", "open_settings")
|
2017-05-22 20:08:05 -04:00
|
|
|
|
|
|
|
def reload_settings():
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"OnionShareGui", "open_settings", "settings have changed, reloading"
|
|
|
|
)
|
2018-03-13 06:28:47 -04:00
|
|
|
self.common.settings.load()
|
2018-04-24 12:21:23 -04:00
|
|
|
|
2017-12-20 17:22:53 -05:00
|
|
|
# We might've stopped the main requests timer if a Tor connection failed.
|
|
|
|
# If we've reloaded settings, we probably succeeded in obtaining a new
|
|
|
|
# connection. If so, restart the timer.
|
2019-10-21 00:36:30 -04:00
|
|
|
if not self.common.gui.local_only:
|
2019-10-21 01:08:47 -04:00
|
|
|
if self.common.gui.onion.is_authenticated():
|
2018-03-07 00:13:22 -05:00
|
|
|
if not self.timer.isActive():
|
|
|
|
self.timer.start(500)
|
2018-04-25 11:49:43 -04:00
|
|
|
self.share_mode.on_reload_settings()
|
2018-07-14 02:19:16 -04:00
|
|
|
self.receive_mode.on_reload_settings()
|
2019-04-19 10:52:43 -04:00
|
|
|
self.website_mode.on_reload_settings()
|
2018-03-07 00:13:22 -05:00
|
|
|
self.status_bar.clearMessage()
|
2018-04-24 12:21:23 -04:00
|
|
|
|
2019-03-25 00:05:54 -04:00
|
|
|
# If we switched off the auto-stop timer setting, ensure the widget is hidden.
|
2019-10-13 00:01:25 -04:00
|
|
|
if not self.common.settings.get("autostop_timer"):
|
2019-03-25 00:05:54 -04:00
|
|
|
self.share_mode.server_status.autostop_timer_container.hide()
|
|
|
|
self.receive_mode.server_status.autostop_timer_container.hide()
|
2019-05-24 04:08:51 -04:00
|
|
|
self.website_mode.server_status.autostop_timer_container.hide()
|
2019-03-25 00:28:31 -04:00
|
|
|
# If we switched off the auto-start timer setting, ensure the widget is hidden.
|
2019-10-13 00:01:25 -04:00
|
|
|
if not self.common.settings.get("autostart_timer"):
|
2019-03-25 00:28:31 -04:00
|
|
|
self.share_mode.server_status.autostart_timer_datetime = None
|
|
|
|
self.receive_mode.server_status.autostart_timer_datetime = None
|
2019-05-24 04:08:51 -04:00
|
|
|
self.website_mode.server_status.autostart_timer_datetime = None
|
2019-03-25 00:28:31 -04:00
|
|
|
self.share_mode.server_status.autostart_timer_container.hide()
|
|
|
|
self.receive_mode.server_status.autostart_timer_container.hide()
|
2019-05-24 04:08:51 -04:00
|
|
|
self.website_mode.server_status.autostart_timer_container.hide()
|
2019-09-04 00:46:32 -04:00
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
d = SettingsDialog(self.common)
|
2017-05-22 20:08:05 -04:00
|
|
|
d.settings_saved.connect(reload_settings)
|
|
|
|
d.exec_()
|
2017-05-14 21:46:54 -04:00
|
|
|
|
2018-02-07 12:55:55 -05:00
|
|
|
# When settings close, refresh the server status UI
|
2018-04-24 12:21:23 -04:00
|
|
|
self.share_mode.server_status.update()
|
2018-04-28 15:03:10 -04:00
|
|
|
self.receive_mode.server_status.update()
|
2019-04-19 10:52:43 -04:00
|
|
|
self.website_mode.server_status.update()
|
2018-02-07 12:55:55 -05:00
|
|
|
|
2017-05-16 20:29:02 -04:00
|
|
|
def check_for_updates(self):
|
|
|
|
"""
|
|
|
|
Check for updates in a new thread, if enabled.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
if self.common.platform == "Windows" or self.common.platform == "Darwin":
|
|
|
|
if self.common.settings.get("use_autoupdate"):
|
|
|
|
|
2017-05-16 20:29:02 -04:00
|
|
|
def update_available(update_url, installed_version, latest_version):
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("update_available").format(
|
|
|
|
update_url, installed_version, latest_version
|
|
|
|
),
|
|
|
|
)
|
2017-05-16 20:29:02 -04:00
|
|
|
|
2019-10-21 00:36:30 -04:00
|
|
|
self.update_thread = UpdateThread(
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common, self.common.gui.onion, self.common.gui.config
|
2019-10-21 00:36:30 -04:00
|
|
|
)
|
2017-05-16 20:29:02 -04:00
|
|
|
self.update_thread.update_available.connect(update_available)
|
|
|
|
self.update_thread.start()
|
|
|
|
|
2017-04-17 22:36:02 -04:00
|
|
|
def closeEvent(self, e):
|
2019-10-20 22:41:20 -04:00
|
|
|
self.common.log("MainWindow", "closeEvent")
|
2019-09-20 21:42:40 -04:00
|
|
|
self.system_tray.hide()
|
2019-10-21 01:08:47 -04:00
|
|
|
# TODO: Run the tab's close_event
|
|
|
|
e.accept()
|
2019-10-20 23:11:45 -04:00
|
|
|
|
|
|
|
def cleanup(self):
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common.gui.onion.cleanup()
|
|
|
|
# TODO: Run the tab's cleanup
|