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
|
|
|
|
2018-04-24 00:24:12 -04:00
|
|
|
from .share_mode import ShareMode
|
|
|
|
from .receive_mode import ReceiveMode
|
|
|
|
|
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
|
2018-04-25 12:46:49 -04:00
|
|
|
from .server_status import ServerStatus
|
2017-04-17 22:36:02 -04:00
|
|
|
|
|
|
|
class OnionShareGui(QtWidgets.QMainWindow):
|
|
|
|
"""
|
|
|
|
OnionShareGui is the main window for the GUI that contains all of the
|
|
|
|
GUI elements.
|
|
|
|
"""
|
2018-04-23 22:51:51 -04:00
|
|
|
MODE_SHARE = 'share'
|
|
|
|
MODE_RECEIVE = 'receive'
|
|
|
|
|
2018-04-26 12:30:53 -04:00
|
|
|
def __init__(self, common, onion, qtapp, app, filenames, config=False, local_only=False):
|
2017-04-17 22:36:02 -04:00
|
|
|
super(OnionShareGui, self).__init__()
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common = common
|
|
|
|
self.common.log('OnionShareGui', '__init__')
|
2017-05-22 02:47:12 -04:00
|
|
|
|
2017-05-14 21:30:45 -04:00
|
|
|
self.onion = onion
|
2017-04-17 22:36:02 -04:00
|
|
|
self.qtapp = qtapp
|
|
|
|
self.app = app
|
2018-03-07 00:13:22 -05:00
|
|
|
self.local_only = local_only
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-23 22:51:51 -04:00
|
|
|
self.mode = self.MODE_SHARE
|
|
|
|
|
2017-04-17 22:36:02 -04:00
|
|
|
self.setWindowTitle('OnionShare')
|
2018-03-08 13:18:31 -05:00
|
|
|
self.setWindowIcon(QtGui.QIcon(self.common.get_resource_path('images/logo.png')))
|
2018-02-11 01:16:52 -05:00
|
|
|
self.setMinimumWidth(430)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2017-05-14 21:30:45 -04:00
|
|
|
# Load settings
|
2017-06-01 03:35:27 -04:00
|
|
|
self.config = config
|
2018-03-13 06:28:47 -04:00
|
|
|
self.common.load_settings(self.config)
|
2017-05-14 21:30:45 -04:00
|
|
|
|
2018-04-24 12:21:23 -04:00
|
|
|
# System tray
|
|
|
|
menu = QtWidgets.QMenu()
|
|
|
|
self.settings_action = menu.addAction(strings._('gui_settings_window_title', True))
|
|
|
|
self.settings_action.triggered.connect(self.open_settings)
|
|
|
|
help_action = menu.addAction(strings._('gui_settings_button_help', True))
|
|
|
|
help_action.triggered.connect(SettingsDialog.help_clicked)
|
|
|
|
exit_action = menu.addAction(strings._('systray_menu_exit', True))
|
|
|
|
exit_action.triggered.connect(self.close)
|
|
|
|
|
|
|
|
self.system_tray = QtWidgets.QSystemTrayIcon(self)
|
|
|
|
# The convention is Mac systray icons are always grayscale
|
|
|
|
if self.common.platform == 'Darwin':
|
|
|
|
self.system_tray.setIcon(QtGui.QIcon(self.common.get_resource_path('images/logo_grayscale.png')))
|
|
|
|
else:
|
|
|
|
self.system_tray.setIcon(QtGui.QIcon(self.common.get_resource_path('images/logo.png')))
|
|
|
|
self.system_tray.setContextMenu(menu)
|
|
|
|
self.system_tray.show()
|
|
|
|
|
2018-04-23 22:51:51 -04:00
|
|
|
# Mode switcher, to switch between share files and receive files
|
|
|
|
self.mode_switcher_selected_style = """
|
|
|
|
QPushButton {
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #4e064f;
|
|
|
|
border: 0;
|
|
|
|
border-right: 1px solid #69266b;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 0;
|
|
|
|
}"""
|
|
|
|
self.mode_switcher_unselected_style = """
|
|
|
|
QPushButton {
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #601f61;
|
|
|
|
border: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
border-radius: 0;
|
|
|
|
}"""
|
|
|
|
self.share_mode_button = QtWidgets.QPushButton(strings._('gui_mode_share_button', True));
|
|
|
|
self.share_mode_button.setFixedHeight(50)
|
2018-04-24 00:15:30 -04:00
|
|
|
self.share_mode_button.clicked.connect(self.share_mode_clicked)
|
2018-04-23 22:51:51 -04:00
|
|
|
self.receive_mode_button = QtWidgets.QPushButton(strings._('gui_mode_receive_button', True));
|
|
|
|
self.receive_mode_button.setFixedHeight(50)
|
2018-04-24 00:15:30 -04:00
|
|
|
self.receive_mode_button.clicked.connect(self.receive_mode_clicked)
|
2018-04-23 22:51:51 -04:00
|
|
|
self.settings_button = QtWidgets.QPushButton()
|
|
|
|
self.settings_button.setDefault(False)
|
|
|
|
self.settings_button.setFixedWidth(40)
|
|
|
|
self.settings_button.setFixedHeight(50)
|
|
|
|
self.settings_button.setIcon( QtGui.QIcon(self.common.get_resource_path('images/settings.png')) )
|
|
|
|
self.settings_button.clicked.connect(self.open_settings)
|
2018-04-24 00:15:30 -04:00
|
|
|
self.settings_button.setStyleSheet("""
|
|
|
|
QPushButton {
|
|
|
|
background-color: #601f61;
|
|
|
|
border: 0;
|
|
|
|
border-left: 1px solid #69266b;
|
|
|
|
border-radius: 0;
|
|
|
|
}""")
|
2018-04-23 22:51:51 -04:00
|
|
|
mode_switcher_layout = QtWidgets.QHBoxLayout();
|
|
|
|
mode_switcher_layout.setSpacing(0)
|
|
|
|
mode_switcher_layout.addWidget(self.share_mode_button)
|
|
|
|
mode_switcher_layout.addWidget(self.receive_mode_button)
|
|
|
|
mode_switcher_layout.addWidget(self.settings_button)
|
2018-04-24 00:24:12 -04:00
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
# Server status indicator on the status bar
|
|
|
|
self.server_status_image_stopped = QtGui.QImage(self.common.get_resource_path('images/server_stopped.png'))
|
|
|
|
self.server_status_image_working = QtGui.QImage(self.common.get_resource_path('images/server_working.png'))
|
|
|
|
self.server_status_image_started = QtGui.QImage(self.common.get_resource_path('images/server_started.png'))
|
|
|
|
self.server_status_image_label = QtWidgets.QLabel()
|
|
|
|
self.server_status_image_label.setFixedWidth(20)
|
2018-04-28 01:20:12 -04:00
|
|
|
self.server_status_label = QtWidgets.QLabel('')
|
|
|
|
self.server_status_label.setStyleSheet('QLabel { font-style: italic; color: #666666; padding: 2px; }')
|
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)
|
2018-04-24 00:15:30 -04:00
|
|
|
self.status_bar.setStyleSheet("""
|
|
|
|
QStatusBar {
|
|
|
|
font-style: italic;
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStatusBar::item {
|
|
|
|
border: 0px;
|
|
|
|
}""")
|
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)
|
|
|
|
|
2018-04-26 12:30:53 -04:00
|
|
|
# Share mode
|
|
|
|
self.share_mode = ShareMode(self.common, qtapp, app, self.status_bar, self.server_status_label, self.system_tray, filenames)
|
2018-04-26 00:54:28 -04:00
|
|
|
self.share_mode.init()
|
2018-04-24 01:08:51 -04:00
|
|
|
self.share_mode.server_status.server_started.connect(self.update_server_status_indicator)
|
|
|
|
self.share_mode.server_status.server_stopped.connect(self.update_server_status_indicator)
|
|
|
|
self.share_mode.start_server_finished.connect(self.update_server_status_indicator)
|
|
|
|
self.share_mode.stop_server_finished.connect(self.update_server_status_indicator)
|
2018-04-24 11:48:17 -04:00
|
|
|
self.share_mode.stop_server_finished.connect(self.stop_server_finished)
|
2018-04-24 01:08:51 -04:00
|
|
|
self.share_mode.start_server_finished.connect(self.clear_message)
|
|
|
|
self.share_mode.server_status.button_clicked.connect(self.clear_message)
|
|
|
|
self.share_mode.server_status.url_copied.connect(self.copy_url)
|
|
|
|
self.share_mode.server_status.hidservauth_copied.connect(self.copy_hidservauth)
|
2018-04-26 02:03:57 -04:00
|
|
|
self.share_mode.set_server_active.connect(self.set_server_active)
|
2018-04-26 12:30:53 -04:00
|
|
|
|
|
|
|
# Receive mode
|
|
|
|
self.receive_mode = ReceiveMode(self.common, qtapp, app, self.status_bar, self.server_status_label, self.system_tray)
|
2018-04-26 00:54:28 -04:00
|
|
|
self.receive_mode.init()
|
2018-04-28 01:32:20 -04:00
|
|
|
self.receive_mode.server_status.server_started.connect(self.update_server_status_indicator)
|
|
|
|
self.receive_mode.server_status.server_stopped.connect(self.update_server_status_indicator)
|
|
|
|
self.receive_mode.start_server_finished.connect(self.update_server_status_indicator)
|
|
|
|
self.receive_mode.stop_server_finished.connect(self.update_server_status_indicator)
|
|
|
|
self.receive_mode.stop_server_finished.connect(self.stop_server_finished)
|
|
|
|
self.receive_mode.start_server_finished.connect(self.clear_message)
|
|
|
|
self.receive_mode.server_status.button_clicked.connect(self.clear_message)
|
|
|
|
self.receive_mode.server_status.url_copied.connect(self.copy_url)
|
|
|
|
self.receive_mode.server_status.hidservauth_copied.connect(self.copy_hidservauth)
|
|
|
|
self.receive_mode.set_server_active.connect(self.set_server_active)
|
2018-04-26 02:03:57 -04:00
|
|
|
self.receive_mode.set_server_active.connect(self.set_server_active)
|
2018-04-24 01:08:51 -04:00
|
|
|
|
|
|
|
self.update_mode_switcher()
|
|
|
|
self.update_server_status_indicator()
|
|
|
|
|
2018-04-24 00:08:03 -04:00
|
|
|
# Layouts
|
|
|
|
contents_layout = QtWidgets.QVBoxLayout()
|
|
|
|
contents_layout.setContentsMargins(10, 10, 10, 10)
|
2018-04-24 00:24:12 -04:00
|
|
|
contents_layout.addWidget(self.receive_mode)
|
|
|
|
contents_layout.addWidget(self.share_mode)
|
2018-04-24 00:08:03 -04:00
|
|
|
|
|
|
|
layout = QtWidgets.QVBoxLayout()
|
|
|
|
layout.setContentsMargins(0, 0, 0, 0)
|
|
|
|
layout.addLayout(mode_switcher_layout)
|
|
|
|
layout.addLayout(contents_layout)
|
|
|
|
|
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()
|
|
|
|
|
2018-04-26 02:03:57 -04:00
|
|
|
# The servers isn't active yet
|
|
|
|
self.set_server_active(False)
|
2017-05-16 18:41:35 -04:00
|
|
|
|
2018-01-14 01:46:57 -05:00
|
|
|
# Create the timer
|
|
|
|
self.timer = QtCore.QTimer()
|
2018-04-24 01:08:51 -04:00
|
|
|
self.timer.timeout.connect(self.timer_callback)
|
2018-01-14 01:46:57 -05:00
|
|
|
|
2017-05-16 19:50:33 -04:00
|
|
|
# Start the "Connecting to Tor" dialog, which calls onion.connect()
|
2018-03-13 06:28:47 -04:00
|
|
|
tor_con = TorConnectionDialog(self.common, self.qtapp, self.onion)
|
2017-05-16 19:50:33 -04:00
|
|
|
tor_con.canceled.connect(self._tor_connection_canceled)
|
|
|
|
tor_con.open_settings.connect(self._tor_connection_open_settings)
|
2018-03-07 00:13:22 -05:00
|
|
|
if not self.local_only:
|
|
|
|
tor_con.start()
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2018-01-14 01:46:57 -05:00
|
|
|
# Start the timer
|
2018-01-14 01:42:27 -05:00
|
|
|
self.timer.start(500)
|
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()
|
|
|
|
|
2018-04-23 22:51:51 -04:00
|
|
|
def update_mode_switcher(self):
|
|
|
|
# Based on the current mode, switch the mode switcher button styles,
|
|
|
|
# and show and hide widgets to switch modes
|
|
|
|
if self.mode == self.MODE_SHARE:
|
|
|
|
self.share_mode_button.setStyleSheet(self.mode_switcher_selected_style)
|
|
|
|
self.receive_mode_button.setStyleSheet(self.mode_switcher_unselected_style)
|
2018-04-24 00:24:12 -04:00
|
|
|
|
|
|
|
self.share_mode.show()
|
|
|
|
self.receive_mode.hide()
|
2018-04-23 22:51:51 -04:00
|
|
|
else:
|
|
|
|
self.share_mode_button.setStyleSheet(self.mode_switcher_unselected_style)
|
|
|
|
self.receive_mode_button.setStyleSheet(self.mode_switcher_selected_style)
|
|
|
|
|
2018-04-24 00:24:12 -04:00
|
|
|
self.share_mode.hide()
|
|
|
|
self.receive_mode.show()
|
|
|
|
|
2018-04-25 12:46:49 -04:00
|
|
|
self.update_server_status_indicator()
|
2018-04-24 00:24:12 -04:00
|
|
|
self.adjustSize();
|
|
|
|
|
2018-04-24 00:15:30 -04:00
|
|
|
def share_mode_clicked(self):
|
|
|
|
self.mode = self.MODE_SHARE
|
|
|
|
self.update_mode_switcher()
|
|
|
|
|
|
|
|
def receive_mode_clicked(self):
|
|
|
|
self.mode = self.MODE_RECEIVE
|
|
|
|
self.update_mode_switcher()
|
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
def update_server_status_indicator(self):
|
|
|
|
self.common.log('OnionShareGui', 'update_server_status_indicator')
|
|
|
|
|
2018-04-25 12:46:49 -04:00
|
|
|
# Set the status image
|
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
if self.mode == self.MODE_SHARE:
|
2018-04-25 12:46:49 -04:00
|
|
|
# Share mode
|
|
|
|
if self.share_mode.server_status.status == ServerStatus.STATUS_STOPPED:
|
2018-04-24 01:08:51 -04:00
|
|
|
self.server_status_image_label.setPixmap(QtGui.QPixmap.fromImage(self.server_status_image_stopped))
|
2018-04-25 12:46:49 -04:00
|
|
|
self.server_status_label.setText(strings._('gui_status_indicator_share_stopped', True))
|
|
|
|
elif self.share_mode.server_status.status == ServerStatus.STATUS_WORKING:
|
2018-04-24 01:08:51 -04:00
|
|
|
self.server_status_image_label.setPixmap(QtGui.QPixmap.fromImage(self.server_status_image_working))
|
2018-04-25 12:46:49 -04:00
|
|
|
self.server_status_label.setText(strings._('gui_status_indicator_share_working', True))
|
|
|
|
elif self.share_mode.server_status.status == ServerStatus.STATUS_STARTED:
|
2018-04-24 01:08:51 -04:00
|
|
|
self.server_status_image_label.setPixmap(QtGui.QPixmap.fromImage(self.server_status_image_started))
|
2018-04-25 12:46:49 -04:00
|
|
|
self.server_status_label.setText(strings._('gui_status_indicator_share_started', True))
|
2018-04-24 01:08:51 -04:00
|
|
|
else:
|
2018-04-25 12:46:49 -04:00
|
|
|
# Receive mode
|
|
|
|
if self.receive_mode.server_status.status == ServerStatus.STATUS_STOPPED:
|
|
|
|
self.server_status_image_label.setPixmap(QtGui.QPixmap.fromImage(self.server_status_image_stopped))
|
|
|
|
self.server_status_label.setText(strings._('gui_status_indicator_receive_stopped', True))
|
|
|
|
elif self.receive_mode.server_status.status == ServerStatus.STATUS_WORKING:
|
|
|
|
self.server_status_image_label.setPixmap(QtGui.QPixmap.fromImage(self.server_status_image_working))
|
|
|
|
self.server_status_label.setText(strings._('gui_status_indicator_receive_working', True))
|
|
|
|
elif self.receive_mode.server_status.status == ServerStatus.STATUS_STARTED:
|
|
|
|
self.server_status_image_label.setPixmap(QtGui.QPixmap.fromImage(self.server_status_image_started))
|
|
|
|
self.server_status_label.setText(strings._('gui_status_indicator_receive_started', True))
|
2018-04-24 01:08:51 -04:00
|
|
|
|
2018-04-24 11:48:17 -04:00
|
|
|
def stop_server_finished(self):
|
|
|
|
# When the server stopped, cleanup the ephemeral onion service
|
|
|
|
self.onion.cleanup(stop_tor=False)
|
|
|
|
|
2017-05-14 21:30:45 -04:00
|
|
|
def _tor_connection_canceled(self):
|
|
|
|
"""
|
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
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', '_tor_connection_canceled')
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2017-05-16 19:50:33 -04:00
|
|
|
def ask():
|
2018-03-08 13:18:31 -05:00
|
|
|
a = Alert(self.common, strings._('gui_tor_connection_ask', True), QtWidgets.QMessageBox.Question, buttons=QtWidgets.QMessageBox.NoButton, autostart=False)
|
2017-05-16 19:50:33 -04:00
|
|
|
settings_button = QtWidgets.QPushButton(strings._('gui_tor_connection_ask_open_settings', True))
|
|
|
|
quit_button = QtWidgets.QPushButton(strings._('gui_tor_connection_ask_quit', True))
|
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
|
2018-03-08 13:18:31 -05: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
|
2018-03-08 13:18:31 -05: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
|
|
|
|
QtCore.QTimer.singleShot(1, self.qtapp.quit)
|
|
|
|
|
|
|
|
# Wait 100ms before asking
|
|
|
|
QtCore.QTimer.singleShot(100, ask)
|
2017-05-14 21:30:45 -04:00
|
|
|
|
2017-05-14 21:46:54 -04:00
|
|
|
def _tor_connection_open_settings(self):
|
|
|
|
"""
|
|
|
|
The TorConnectionDialog wants to open the Settings dialog
|
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', '_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.
|
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', 'open_settings')
|
2017-05-22 20:08:05 -04:00
|
|
|
|
|
|
|
def reload_settings():
|
2018-03-08 13:18:31 -05: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.
|
2018-03-07 00:13:22 -05:00
|
|
|
if not self.local_only:
|
|
|
|
if self.onion.is_authenticated():
|
|
|
|
if not self.timer.isActive():
|
|
|
|
self.timer.start(500)
|
2018-04-25 11:49:43 -04:00
|
|
|
self.share_mode.on_reload_settings()
|
2018-03-07 00:13:22 -05:00
|
|
|
self.status_bar.clearMessage()
|
2018-04-24 12:21:23 -04:00
|
|
|
|
2018-02-23 23:38:45 -05:00
|
|
|
# If we switched off the shutdown timeout setting, ensure the widget is hidden.
|
2018-03-13 06:28:47 -04:00
|
|
|
if not self.common.settings.get('shutdown_timeout'):
|
2018-04-24 12:21:23 -04:00
|
|
|
self.share_mode.server_status.shutdown_timeout_container.hide()
|
2017-05-22 20:08:05 -04:00
|
|
|
|
2018-04-22 20:38:28 -04:00
|
|
|
d = SettingsDialog(self.common, self.onion, self.qtapp, self.config, self.local_only)
|
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-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.
|
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
if self.common.platform == 'Windows' or self.common.platform == 'Darwin':
|
2018-03-13 06:28:47 -04:00
|
|
|
if self.common.settings.get('use_autoupdate'):
|
2017-05-16 20:29:02 -04:00
|
|
|
def update_available(update_url, installed_version, latest_version):
|
2018-03-08 13:18:31 -05:00
|
|
|
Alert(self.common, strings._("update_available", True).format(update_url, installed_version, latest_version))
|
2017-05-16 20:29:02 -04:00
|
|
|
|
2018-03-08 13:18:31 -05:00
|
|
|
self.update_thread = UpdateThread(self.common, self.onion, self.config)
|
2017-05-16 20:29:02 -04:00
|
|
|
self.update_thread.update_available.connect(update_available)
|
|
|
|
self.update_thread.start()
|
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
def timer_callback(self):
|
2017-04-17 22:36:02 -04:00
|
|
|
"""
|
2018-04-24 01:08:51 -04:00
|
|
|
Check for messages communicated from the web app, and update the GUI accordingly. Also,
|
|
|
|
call ShareMode and ReceiveMode's timer_callbacks.
|
2017-04-17 22:36:02 -04:00
|
|
|
"""
|
|
|
|
self.update()
|
2017-11-08 04:25:59 -05:00
|
|
|
|
2018-03-07 00:13:22 -05:00
|
|
|
if not self.local_only:
|
|
|
|
# Have we lost connection to Tor somehow?
|
|
|
|
if not self.onion.is_authenticated():
|
|
|
|
self.timer.stop()
|
|
|
|
self.status_bar.showMessage(strings._('gui_tor_connection_lost', True))
|
2018-04-24 12:26:06 -04:00
|
|
|
self.system_tray.showMessage(strings._('gui_tor_connection_lost', True), strings._('gui_tor_connection_error_settings', True))
|
2017-12-20 17:22:53 -05:00
|
|
|
|
2018-04-24 12:21:23 -04:00
|
|
|
self.share_mode.handle_tor_broke()
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
# Process events from the web object
|
|
|
|
if self.mode == self.MODE_SHARE:
|
|
|
|
web = self.share_mode.web
|
|
|
|
else:
|
|
|
|
web = self.receive_mode.web
|
|
|
|
|
|
|
|
events = []
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
done = False
|
|
|
|
while not done:
|
|
|
|
try:
|
|
|
|
r = web.q.get(False)
|
|
|
|
events.append(r)
|
|
|
|
except queue.Empty:
|
|
|
|
done = True
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
for event in events:
|
|
|
|
if event["type"] == Web.REQUEST_LOAD:
|
|
|
|
self.share_mode.handle_request_load(event)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
elif event["type"] == Web.REQUEST_DOWNLOAD:
|
|
|
|
self.share_mode.handle_request_download(event)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
elif event["type"] == Web.REQUEST_RATE_LIMIT:
|
|
|
|
self.share_mode.handle_request_rate_limit(event)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
elif event["type"] == Web.REQUEST_PROGRESS:
|
|
|
|
self.share_mode.handle_request_progress(event)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
elif event["type"] == Web.REQUEST_CANCELED:
|
|
|
|
self.share_mode.handle_request_canceled(event)
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-26 13:59:38 -04:00
|
|
|
elif event["path"] != '/favicon.ico':
|
|
|
|
self.status_bar.showMessage('[#{0:d}] {1:s}: {2:s}'.format(web.error404_count, strings._('other_page_loaded', True), event["path"]))
|
2017-04-17 22:36:02 -04:00
|
|
|
|
2018-04-24 01:08:51 -04:00
|
|
|
if self.mode == self.MODE_SHARE:
|
|
|
|
self.share_mode.timer_callback()
|
|
|
|
else:
|
|
|
|
self.receive_mode.timer_callback()
|
2017-12-02 21:21:25 -05:00
|
|
|
|
2017-04-17 22:36:02 -04:00
|
|
|
def copy_url(self):
|
|
|
|
"""
|
|
|
|
When the URL gets copied to the clipboard, display this in the status bar.
|
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', 'copy_url')
|
2018-04-24 12:26:06 -04:00
|
|
|
self.system_tray.showMessage(strings._('gui_copied_url_title', True), strings._('gui_copied_url', True))
|
2017-04-17 22:36:02 -04:00
|
|
|
|
|
|
|
def copy_hidservauth(self):
|
|
|
|
"""
|
|
|
|
When the stealth onion service HidServAuth gets copied to the clipboard, display this in the status bar.
|
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', 'copy_hidservauth')
|
2018-04-24 12:26:06 -04:00
|
|
|
self.system_tray.showMessage(strings._('gui_copied_hidservauth_title', True), strings._('gui_copied_hidservauth', True))
|
2017-04-17 22:36:02 -04:00
|
|
|
|
|
|
|
def clear_message(self):
|
|
|
|
"""
|
|
|
|
Clear messages from the status bar.
|
|
|
|
"""
|
|
|
|
self.status_bar.clearMessage()
|
|
|
|
|
2018-04-26 02:03:57 -04:00
|
|
|
def set_server_active(self, active):
|
2017-05-16 18:41:35 -04:00
|
|
|
"""
|
2018-04-24 11:51:39 -04:00
|
|
|
Disable the Settings and Receive Files buttons while an Share Files server is active.
|
2017-05-16 18:41:35 -04:00
|
|
|
"""
|
2017-06-03 05:01:40 -04:00
|
|
|
if active:
|
2018-02-10 13:59:01 -05:00
|
|
|
self.settings_button.hide()
|
2018-04-26 02:03:57 -04:00
|
|
|
if self.mode == self.MODE_SHARE:
|
|
|
|
self.share_mode_button.show()
|
|
|
|
self.receive_mode_button.hide()
|
|
|
|
else:
|
|
|
|
self.share_mode_button.hide()
|
|
|
|
self.receive_mode_button.show()
|
2017-06-03 05:04:21 -04:00
|
|
|
else:
|
2018-02-10 13:59:01 -05:00
|
|
|
self.settings_button.show()
|
2018-04-24 11:51:39 -04:00
|
|
|
self.share_mode_button.show()
|
|
|
|
self.receive_mode_button.show()
|
2017-05-16 18:41:35 -04:00
|
|
|
|
2017-07-09 17:19:08 -04:00
|
|
|
# Disable settings menu action when server is active
|
2018-04-24 12:21:23 -04:00
|
|
|
self.settings_action.setEnabled(not active)
|
2017-05-16 18:41:35 -04:00
|
|
|
|
2017-04-17 22:36:02 -04:00
|
|
|
def closeEvent(self, e):
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', 'closeEvent')
|
2017-05-14 21:30:45 -04:00
|
|
|
try:
|
|
|
|
if self.server_status.status != self.server_status.STATUS_STOPPED:
|
2018-03-08 13:18:31 -05:00
|
|
|
self.common.log('OnionShareGui', 'closeEvent, opening warning dialog')
|
2017-05-14 21:30:45 -04:00
|
|
|
dialog = QtWidgets.QMessageBox()
|
2018-02-06 20:47:05 -05:00
|
|
|
dialog.setWindowTitle(strings._('gui_quit_title', True))
|
2017-05-14 21:30:45 -04:00
|
|
|
dialog.setText(strings._('gui_quit_warning', True))
|
2018-02-06 20:47:05 -05:00
|
|
|
dialog.setIcon(QtWidgets.QMessageBox.Critical)
|
2017-05-14 21:30:45 -04:00
|
|
|
quit_button = dialog.addButton(strings._('gui_quit_warning_quit', True), QtWidgets.QMessageBox.YesRole)
|
|
|
|
dont_quit_button = dialog.addButton(strings._('gui_quit_warning_dont_quit', True), QtWidgets.QMessageBox.NoRole)
|
|
|
|
dialog.setDefaultButton(dont_quit_button)
|
|
|
|
reply = dialog.exec_()
|
|
|
|
|
|
|
|
# Quit
|
|
|
|
if reply == 0:
|
|
|
|
self.stop_server()
|
|
|
|
e.accept()
|
|
|
|
# Don't Quit
|
|
|
|
else:
|
|
|
|
e.ignore()
|
|
|
|
|
|
|
|
except:
|
|
|
|
e.accept()
|