2016-12-28 21:44:41 -05: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>
|
2016-12-28 21:44:41 -05: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/>.
|
|
|
|
"""
|
|
|
|
from PyQt5 import QtCore, QtWidgets, QtGui
|
2019-09-01 16:16:00 -04:00
|
|
|
import sys
|
|
|
|
import platform
|
|
|
|
import datetime
|
|
|
|
import re
|
|
|
|
import os
|
2016-12-28 21:44:41 -05:00
|
|
|
|
2017-05-16 14:05:48 -04:00
|
|
|
from onionshare import strings, common
|
2016-12-28 22:52:21 -05:00
|
|
|
from onionshare.settings import Settings
|
2017-04-08 21:10:17 -04:00
|
|
|
from onionshare.onion import *
|
2016-12-29 12:58:13 -05:00
|
|
|
|
2018-04-25 11:43:40 -04:00
|
|
|
from .widgets import Alert
|
2017-04-15 21:04:05 -04:00
|
|
|
from .update_checker import *
|
2017-05-16 19:50:33 -04:00
|
|
|
from .tor_connection_dialog import TorConnectionDialog
|
2016-12-28 21:44:41 -05:00
|
|
|
|
2019-09-01 16:16:00 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
class SettingsDialog(QtWidgets.QDialog):
|
|
|
|
"""
|
|
|
|
Settings dialog.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2017-05-22 20:08:05 -04:00
|
|
|
settings_saved = QtCore.pyqtSignal()
|
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
def __init__(self, common):
|
2017-04-14 01:56:47 -04:00
|
|
|
super(SettingsDialog, self).__init__()
|
2018-03-08 13:18:31 -05:00
|
|
|
|
|
|
|
self.common = common
|
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "__init__")
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
self.setModal(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.setWindowTitle(strings._("gui_settings_window_title"))
|
|
|
|
self.setWindowIcon(
|
|
|
|
QtGui.QIcon(self.common.get_resource_path("images/logo.png"))
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
2018-02-25 22:02:15 -05:00
|
|
|
self.system = platform.system()
|
2017-04-15 18:24:08 -04:00
|
|
|
|
2019-09-01 16:16:00 -04:00
|
|
|
# If ONIONSHARE_HIDE_TOR_SETTINGS=1, hide Tor settings in the dialog
|
2019-10-13 00:01:25 -04:00
|
|
|
self.hide_tor_settings = os.environ.get("ONIONSHARE_HIDE_TOR_SETTINGS") == "1"
|
2019-09-01 16:16:00 -04:00
|
|
|
|
2017-04-15 18:24:08 -04:00
|
|
|
# Automatic updates options
|
|
|
|
|
|
|
|
# Autoupdate
|
|
|
|
self.autoupdate_checkbox = QtWidgets.QCheckBox()
|
|
|
|
self.autoupdate_checkbox.setCheckState(QtCore.Qt.Unchecked)
|
2018-09-30 20:47:10 -04:00
|
|
|
self.autoupdate_checkbox.setText(strings._("gui_settings_autoupdate_option"))
|
2017-04-15 18:24:08 -04:00
|
|
|
|
|
|
|
# Last update time
|
|
|
|
self.autoupdate_timestamp = QtWidgets.QLabel()
|
|
|
|
|
|
|
|
# Check for updates button
|
2019-10-13 00:01:25 -04:00
|
|
|
self.check_for_updates_button = QtWidgets.QPushButton(
|
|
|
|
strings._("gui_settings_autoupdate_check_button")
|
|
|
|
)
|
2017-04-15 18:24:08 -04:00
|
|
|
self.check_for_updates_button.clicked.connect(self.check_for_updates)
|
2018-01-02 19:16:50 -05:00
|
|
|
# We can't check for updates if not connected to Tor
|
2019-10-21 01:08:47 -04:00
|
|
|
if not self.common.gui.onion.connected_to_tor:
|
2018-01-02 19:16:50 -05:00
|
|
|
self.check_for_updates_button.setEnabled(False)
|
2017-04-15 18:24:08 -04:00
|
|
|
|
|
|
|
# Autoupdate options layout
|
|
|
|
autoupdate_group_layout = QtWidgets.QVBoxLayout()
|
|
|
|
autoupdate_group_layout.addWidget(self.autoupdate_checkbox)
|
|
|
|
autoupdate_group_layout.addWidget(self.autoupdate_timestamp)
|
|
|
|
autoupdate_group_layout.addWidget(self.check_for_updates_button)
|
2019-10-13 00:01:25 -04:00
|
|
|
autoupdate_group = QtWidgets.QGroupBox(
|
|
|
|
strings._("gui_settings_autoupdate_label")
|
|
|
|
)
|
2017-04-15 18:24:08 -04:00
|
|
|
autoupdate_group.setLayout(autoupdate_group_layout)
|
|
|
|
|
|
|
|
# Autoupdate is only available for Windows and Mac (Linux updates using package manager)
|
2019-10-13 00:01:25 -04:00
|
|
|
if self.system != "Windows" and self.system != "Darwin":
|
2017-04-15 18:24:08 -04:00
|
|
|
autoupdate_group.hide()
|
|
|
|
|
2018-09-30 19:14:14 -04:00
|
|
|
# Language settings
|
2018-09-30 20:47:10 -04:00
|
|
|
language_label = QtWidgets.QLabel(strings._("gui_settings_language_label"))
|
2018-09-30 19:14:14 -04:00
|
|
|
self.language_combobox = QtWidgets.QComboBox()
|
2018-09-30 19:23:46 -04:00
|
|
|
# Populate the dropdown with all of OnionShare's available languages
|
2019-10-13 00:01:25 -04:00
|
|
|
language_names_to_locales = {
|
|
|
|
v: k for k, v in self.common.settings.available_locales.items()
|
|
|
|
}
|
2018-09-30 19:14:14 -04:00
|
|
|
language_names = list(language_names_to_locales)
|
|
|
|
language_names.sort()
|
|
|
|
for language_name in language_names:
|
|
|
|
locale = language_names_to_locales[language_name]
|
|
|
|
self.language_combobox.addItem(language_name, QtCore.QVariant(locale))
|
2018-09-30 19:23:46 -04:00
|
|
|
language_layout = QtWidgets.QHBoxLayout()
|
|
|
|
language_layout.addWidget(language_label)
|
2018-09-30 19:14:14 -04:00
|
|
|
language_layout.addWidget(self.language_combobox)
|
2018-09-30 19:23:46 -04:00
|
|
|
language_layout.addStretch()
|
2018-09-30 19:14:14 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
# Connection type: either automatic, control port, or socket file
|
|
|
|
|
2017-04-08 20:48:58 -04:00
|
|
|
# Bundled Tor
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_bundled_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_connection_type_bundled_option")
|
|
|
|
)
|
|
|
|
self.connection_type_bundled_radio.toggled.connect(
|
|
|
|
self.connection_type_bundled_toggled
|
|
|
|
)
|
2017-04-08 20:48:58 -04:00
|
|
|
|
2017-04-14 01:22:34 -04:00
|
|
|
# Bundled Tor doesn't work on dev mode in Windows or Mac
|
2019-10-13 00:01:25 -04:00
|
|
|
if (self.system == "Windows" or self.system == "Darwin") and getattr(
|
|
|
|
sys, "onionshare_dev_mode", False
|
|
|
|
):
|
2017-04-08 20:48:58 -04:00
|
|
|
self.connection_type_bundled_radio.setEnabled(False)
|
|
|
|
|
2017-12-11 16:43:12 -05:00
|
|
|
# Bridge options for bundled tor
|
|
|
|
|
|
|
|
# No bridges option radio
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_no_bridges_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_tor_bridges_no_bridges_radio_option")
|
|
|
|
)
|
|
|
|
self.tor_bridges_no_bridges_radio.toggled.connect(
|
|
|
|
self.tor_bridges_no_bridges_radio_toggled
|
|
|
|
)
|
2017-12-11 16:43:12 -05:00
|
|
|
|
2018-01-17 00:30:12 -05:00
|
|
|
# obfs4 option radio
|
2018-01-14 20:49:29 -05:00
|
|
|
# if the obfs4proxy binary is missing, we can't use obfs4 transports
|
2019-10-13 00:01:25 -04:00
|
|
|
(
|
|
|
|
self.tor_path,
|
|
|
|
self.tor_geo_ip_file_path,
|
|
|
|
self.tor_geo_ipv6_file_path,
|
|
|
|
self.obfs4proxy_file_path,
|
|
|
|
) = self.common.get_tor_paths()
|
2018-01-17 00:30:12 -05:00
|
|
|
if not os.path.isfile(self.obfs4proxy_file_path):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_obfs4_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_tor_bridges_obfs4_radio_option_no_obfs4proxy")
|
|
|
|
)
|
2018-01-17 00:30:12 -05:00
|
|
|
self.tor_bridges_use_obfs4_radio.setEnabled(False)
|
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_obfs4_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_tor_bridges_obfs4_radio_option")
|
|
|
|
)
|
|
|
|
self.tor_bridges_use_obfs4_radio.toggled.connect(
|
|
|
|
self.tor_bridges_use_obfs4_radio_toggled
|
|
|
|
)
|
2017-12-11 16:43:12 -05:00
|
|
|
|
2018-02-15 18:19:53 -05:00
|
|
|
# meek_lite-azure option radio
|
|
|
|
# if the obfs4proxy binary is missing, we can't use meek_lite-azure transports
|
2019-10-13 00:01:25 -04:00
|
|
|
(
|
|
|
|
self.tor_path,
|
|
|
|
self.tor_geo_ip_file_path,
|
|
|
|
self.tor_geo_ipv6_file_path,
|
|
|
|
self.obfs4proxy_file_path,
|
|
|
|
) = self.common.get_tor_paths()
|
2018-02-15 18:19:53 -05:00
|
|
|
if not os.path.isfile(self.obfs4proxy_file_path):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_meek_lite_azure_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._(
|
|
|
|
"gui_settings_tor_bridges_meek_lite_azure_radio_option_no_obfs4proxy"
|
|
|
|
)
|
|
|
|
)
|
2018-02-24 17:09:42 -05:00
|
|
|
self.tor_bridges_use_meek_lite_azure_radio.setEnabled(False)
|
2018-02-15 18:19:53 -05:00
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_meek_lite_azure_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_tor_bridges_meek_lite_azure_radio_option")
|
|
|
|
)
|
|
|
|
self.tor_bridges_use_meek_lite_azure_radio.toggled.connect(
|
|
|
|
self.tor_bridges_use_meek_lite_azure_radio_toggled
|
|
|
|
)
|
2018-02-15 18:19:53 -05:00
|
|
|
|
2017-12-11 16:43:12 -05:00
|
|
|
# Custom bridges radio and textbox
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_custom_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_tor_bridges_custom_radio_option")
|
|
|
|
)
|
|
|
|
self.tor_bridges_use_custom_radio.toggled.connect(
|
|
|
|
self.tor_bridges_use_custom_radio_toggled
|
|
|
|
)
|
|
|
|
|
|
|
|
self.tor_bridges_use_custom_label = QtWidgets.QLabel(
|
|
|
|
strings._("gui_settings_tor_bridges_custom_label")
|
|
|
|
)
|
|
|
|
self.tor_bridges_use_custom_label.setTextInteractionFlags(
|
|
|
|
QtCore.Qt.TextBrowserInteraction
|
|
|
|
)
|
2018-01-14 02:57:52 -05:00
|
|
|
self.tor_bridges_use_custom_label.setOpenExternalLinks(True)
|
2017-12-11 16:43:12 -05:00
|
|
|
self.tor_bridges_use_custom_textbox = QtWidgets.QPlainTextEdit()
|
2018-01-14 18:49:17 -05:00
|
|
|
self.tor_bridges_use_custom_textbox.setMaximumHeight(200)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_custom_textbox.setPlaceholderText(
|
|
|
|
"[address:port] [identifier]"
|
|
|
|
)
|
2017-12-11 16:43:12 -05:00
|
|
|
|
|
|
|
tor_bridges_use_custom_textbox_options_layout = QtWidgets.QVBoxLayout()
|
2019-10-13 00:01:25 -04:00
|
|
|
tor_bridges_use_custom_textbox_options_layout.addWidget(
|
|
|
|
self.tor_bridges_use_custom_label
|
|
|
|
)
|
|
|
|
tor_bridges_use_custom_textbox_options_layout.addWidget(
|
|
|
|
self.tor_bridges_use_custom_textbox
|
|
|
|
)
|
2017-12-11 16:43:12 -05:00
|
|
|
|
|
|
|
self.tor_bridges_use_custom_textbox_options = QtWidgets.QWidget()
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_custom_textbox_options.setLayout(
|
|
|
|
tor_bridges_use_custom_textbox_options_layout
|
|
|
|
)
|
2017-12-11 16:43:12 -05:00
|
|
|
self.tor_bridges_use_custom_textbox_options.hide()
|
|
|
|
|
|
|
|
# Bridges layout/widget
|
|
|
|
bridges_layout = QtWidgets.QVBoxLayout()
|
|
|
|
bridges_layout.addWidget(self.tor_bridges_no_bridges_radio)
|
|
|
|
bridges_layout.addWidget(self.tor_bridges_use_obfs4_radio)
|
2018-02-15 18:19:53 -05:00
|
|
|
bridges_layout.addWidget(self.tor_bridges_use_meek_lite_azure_radio)
|
2017-12-11 16:43:12 -05:00
|
|
|
bridges_layout.addWidget(self.tor_bridges_use_custom_radio)
|
|
|
|
bridges_layout.addWidget(self.tor_bridges_use_custom_textbox_options)
|
|
|
|
|
|
|
|
self.bridges = QtWidgets.QWidget()
|
|
|
|
self.bridges.setLayout(bridges_layout)
|
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
# Automatic
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_automatic_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_connection_type_automatic_option")
|
|
|
|
)
|
|
|
|
self.connection_type_automatic_radio.toggled.connect(
|
|
|
|
self.connection_type_automatic_toggled
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
# Control port
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_control_port_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_connection_type_control_port_option")
|
|
|
|
)
|
|
|
|
self.connection_type_control_port_radio.toggled.connect(
|
|
|
|
self.connection_type_control_port_toggled
|
|
|
|
)
|
|
|
|
|
|
|
|
connection_type_control_port_extras_label = QtWidgets.QLabel(
|
|
|
|
strings._("gui_settings_control_port_label")
|
|
|
|
)
|
2016-12-28 22:52:21 -05:00
|
|
|
self.connection_type_control_port_extras_address = QtWidgets.QLineEdit()
|
|
|
|
self.connection_type_control_port_extras_port = QtWidgets.QLineEdit()
|
2016-12-28 21:44:41 -05:00
|
|
|
connection_type_control_port_extras_layout = QtWidgets.QHBoxLayout()
|
2019-10-13 00:01:25 -04:00
|
|
|
connection_type_control_port_extras_layout.addWidget(
|
|
|
|
connection_type_control_port_extras_label
|
|
|
|
)
|
|
|
|
connection_type_control_port_extras_layout.addWidget(
|
|
|
|
self.connection_type_control_port_extras_address
|
|
|
|
)
|
|
|
|
connection_type_control_port_extras_layout.addWidget(
|
|
|
|
self.connection_type_control_port_extras_port
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
self.connection_type_control_port_extras = QtWidgets.QWidget()
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_control_port_extras.setLayout(
|
|
|
|
connection_type_control_port_extras_layout
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
self.connection_type_control_port_extras.hide()
|
|
|
|
|
|
|
|
# Socket file
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_socket_file_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_connection_type_socket_file_option")
|
|
|
|
)
|
|
|
|
self.connection_type_socket_file_radio.toggled.connect(
|
|
|
|
self.connection_type_socket_file_toggled
|
|
|
|
)
|
|
|
|
|
|
|
|
connection_type_socket_file_extras_label = QtWidgets.QLabel(
|
|
|
|
strings._("gui_settings_socket_file_label")
|
|
|
|
)
|
2016-12-28 22:52:21 -05:00
|
|
|
self.connection_type_socket_file_extras_path = QtWidgets.QLineEdit()
|
2016-12-28 21:44:41 -05:00
|
|
|
connection_type_socket_file_extras_layout = QtWidgets.QHBoxLayout()
|
2019-10-13 00:01:25 -04:00
|
|
|
connection_type_socket_file_extras_layout.addWidget(
|
|
|
|
connection_type_socket_file_extras_label
|
|
|
|
)
|
|
|
|
connection_type_socket_file_extras_layout.addWidget(
|
|
|
|
self.connection_type_socket_file_extras_path
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
self.connection_type_socket_file_extras = QtWidgets.QWidget()
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_socket_file_extras.setLayout(
|
|
|
|
connection_type_socket_file_extras_layout
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
self.connection_type_socket_file_extras.hide()
|
|
|
|
|
2017-04-15 19:33:41 -04:00
|
|
|
# Tor SOCKS address and port
|
2019-10-13 00:01:25 -04:00
|
|
|
gui_settings_socks_label = QtWidgets.QLabel(
|
|
|
|
strings._("gui_settings_socks_label")
|
|
|
|
)
|
2017-04-15 19:33:41 -04:00
|
|
|
self.connection_type_socks_address = QtWidgets.QLineEdit()
|
|
|
|
self.connection_type_socks_port = QtWidgets.QLineEdit()
|
|
|
|
connection_type_socks_layout = QtWidgets.QHBoxLayout()
|
|
|
|
connection_type_socks_layout.addWidget(gui_settings_socks_label)
|
|
|
|
connection_type_socks_layout.addWidget(self.connection_type_socks_address)
|
|
|
|
connection_type_socks_layout.addWidget(self.connection_type_socks_port)
|
|
|
|
|
|
|
|
self.connection_type_socks = QtWidgets.QWidget()
|
|
|
|
self.connection_type_socks.setLayout(connection_type_socks_layout)
|
|
|
|
self.connection_type_socks.hide()
|
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
# Authentication options
|
|
|
|
|
|
|
|
# No authentication
|
2019-10-13 00:01:25 -04:00
|
|
|
self.authenticate_no_auth_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_authenticate_no_auth_option")
|
|
|
|
)
|
|
|
|
self.authenticate_no_auth_radio.toggled.connect(
|
|
|
|
self.authenticate_no_auth_toggled
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
# Password
|
2019-10-13 00:01:25 -04:00
|
|
|
self.authenticate_password_radio = QtWidgets.QRadioButton(
|
|
|
|
strings._("gui_settings_authenticate_password_option")
|
|
|
|
)
|
|
|
|
self.authenticate_password_radio.toggled.connect(
|
|
|
|
self.authenticate_password_toggled
|
|
|
|
)
|
|
|
|
|
|
|
|
authenticate_password_extras_label = QtWidgets.QLabel(
|
|
|
|
strings._("gui_settings_password_label")
|
|
|
|
)
|
|
|
|
self.authenticate_password_extras_password = QtWidgets.QLineEdit("")
|
2016-12-28 21:44:41 -05:00
|
|
|
authenticate_password_extras_layout = QtWidgets.QHBoxLayout()
|
2019-10-13 00:01:25 -04:00
|
|
|
authenticate_password_extras_layout.addWidget(
|
|
|
|
authenticate_password_extras_label
|
|
|
|
)
|
|
|
|
authenticate_password_extras_layout.addWidget(
|
|
|
|
self.authenticate_password_extras_password
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
self.authenticate_password_extras = QtWidgets.QWidget()
|
|
|
|
self.authenticate_password_extras.setLayout(authenticate_password_extras_layout)
|
|
|
|
self.authenticate_password_extras.hide()
|
|
|
|
|
|
|
|
# Authentication options layout
|
|
|
|
authenticate_group_layout = QtWidgets.QVBoxLayout()
|
|
|
|
authenticate_group_layout.addWidget(self.authenticate_no_auth_radio)
|
|
|
|
authenticate_group_layout.addWidget(self.authenticate_password_radio)
|
|
|
|
authenticate_group_layout.addWidget(self.authenticate_password_extras)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.authenticate_group = QtWidgets.QGroupBox(
|
|
|
|
strings._("gui_settings_authenticate_label")
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
self.authenticate_group.setLayout(authenticate_group_layout)
|
|
|
|
|
2017-05-18 03:10:47 -04:00
|
|
|
# Put the radios into their own group so they are exclusive
|
|
|
|
connection_type_radio_group_layout = QtWidgets.QVBoxLayout()
|
|
|
|
connection_type_radio_group_layout.addWidget(self.connection_type_bundled_radio)
|
2019-10-13 00:01:25 -04:00
|
|
|
connection_type_radio_group_layout.addWidget(
|
|
|
|
self.connection_type_automatic_radio
|
|
|
|
)
|
|
|
|
connection_type_radio_group_layout.addWidget(
|
|
|
|
self.connection_type_control_port_radio
|
|
|
|
)
|
|
|
|
connection_type_radio_group_layout.addWidget(
|
|
|
|
self.connection_type_socket_file_radio
|
|
|
|
)
|
|
|
|
connection_type_radio_group = QtWidgets.QGroupBox(
|
|
|
|
strings._("gui_settings_connection_type_label")
|
|
|
|
)
|
2017-05-18 03:10:47 -04:00
|
|
|
connection_type_radio_group.setLayout(connection_type_radio_group_layout)
|
|
|
|
|
2017-12-10 22:53:13 -05:00
|
|
|
# The Bridges options are not exclusive (enabling Bridges offers obfs4 or custom bridges)
|
|
|
|
connection_type_bridges_radio_group_layout = QtWidgets.QVBoxLayout()
|
2017-12-11 16:43:12 -05:00
|
|
|
connection_type_bridges_radio_group_layout.addWidget(self.bridges)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_bridges_radio_group = QtWidgets.QGroupBox(
|
|
|
|
strings._("gui_settings_tor_bridges")
|
|
|
|
)
|
|
|
|
self.connection_type_bridges_radio_group.setLayout(
|
|
|
|
connection_type_bridges_radio_group_layout
|
|
|
|
)
|
2017-12-11 16:43:12 -05:00
|
|
|
self.connection_type_bridges_radio_group.hide()
|
2017-12-10 22:53:13 -05:00
|
|
|
|
2018-04-22 20:20:58 -04:00
|
|
|
# Test tor settings button
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_test_button = QtWidgets.QPushButton(
|
|
|
|
strings._("gui_settings_connection_type_test_button")
|
|
|
|
)
|
2018-04-22 20:20:58 -04:00
|
|
|
self.connection_type_test_button.clicked.connect(self.test_tor_clicked)
|
|
|
|
connection_type_test_button_layout = QtWidgets.QHBoxLayout()
|
|
|
|
connection_type_test_button_layout.addWidget(self.connection_type_test_button)
|
|
|
|
connection_type_test_button_layout.addStretch()
|
|
|
|
|
2018-04-22 20:15:15 -04:00
|
|
|
# Connection type layout
|
|
|
|
connection_type_layout = QtWidgets.QVBoxLayout()
|
|
|
|
connection_type_layout.addWidget(self.connection_type_control_port_extras)
|
|
|
|
connection_type_layout.addWidget(self.connection_type_socket_file_extras)
|
|
|
|
connection_type_layout.addWidget(self.connection_type_socks)
|
|
|
|
connection_type_layout.addWidget(self.authenticate_group)
|
|
|
|
connection_type_layout.addWidget(self.connection_type_bridges_radio_group)
|
2018-04-22 20:20:58 -04:00
|
|
|
connection_type_layout.addLayout(connection_type_test_button_layout)
|
2018-04-22 20:15:15 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
# Buttons
|
2019-10-13 00:01:25 -04:00
|
|
|
self.save_button = QtWidgets.QPushButton(strings._("gui_settings_button_save"))
|
2017-04-14 01:56:47 -04:00
|
|
|
self.save_button.clicked.connect(self.save_clicked)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.cancel_button = QtWidgets.QPushButton(
|
|
|
|
strings._("gui_settings_button_cancel")
|
|
|
|
)
|
2017-04-14 01:56:47 -04:00
|
|
|
self.cancel_button.clicked.connect(self.cancel_clicked)
|
2019-10-20 13:30:16 -04:00
|
|
|
version_label = QtWidgets.QLabel(f"OnionShare {self.common.version}")
|
2019-10-20 23:01:09 -04:00
|
|
|
version_label.setStyleSheet(self.common.gui.css["settings_version"])
|
2019-10-13 00:01:25 -04:00
|
|
|
self.help_button = QtWidgets.QPushButton(strings._("gui_settings_button_help"))
|
2017-05-19 23:56:20 -04:00
|
|
|
self.help_button.clicked.connect(self.help_clicked)
|
2016-12-28 21:44:41 -05:00
|
|
|
buttons_layout = QtWidgets.QHBoxLayout()
|
2018-02-06 22:05:02 -05:00
|
|
|
buttons_layout.addWidget(version_label)
|
2017-05-20 00:04:52 -04:00
|
|
|
buttons_layout.addWidget(self.help_button)
|
2017-05-16 20:29:02 -04:00
|
|
|
buttons_layout.addStretch()
|
2017-04-14 01:56:47 -04:00
|
|
|
buttons_layout.addWidget(self.save_button)
|
|
|
|
buttons_layout.addWidget(self.cancel_button)
|
|
|
|
|
2017-04-15 18:24:08 -04:00
|
|
|
# Tor network connection status
|
|
|
|
self.tor_status = QtWidgets.QLabel()
|
2019-10-20 23:01:09 -04:00
|
|
|
self.tor_status.setStyleSheet(self.common.gui.css["settings_tor_status"])
|
2017-04-15 18:24:08 -04:00
|
|
|
self.tor_status.hide()
|
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
# Layout
|
2019-11-02 20:24:06 -04:00
|
|
|
tor_layout = QtWidgets.QVBoxLayout()
|
|
|
|
tor_layout.addWidget(connection_type_radio_group)
|
|
|
|
tor_layout.addLayout(connection_type_layout)
|
|
|
|
tor_layout.addWidget(self.tor_status)
|
|
|
|
tor_layout.addStretch()
|
2017-05-16 20:02:00 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
layout = QtWidgets.QVBoxLayout()
|
2019-11-02 20:24:06 -04:00
|
|
|
if not self.hide_tor_settings:
|
|
|
|
layout.addLayout(tor_layout)
|
|
|
|
layout.addSpacing(20)
|
|
|
|
layout.addWidget(autoupdate_group)
|
|
|
|
if autoupdate_group.isVisible():
|
|
|
|
layout.addSpacing(20)
|
|
|
|
layout.addLayout(language_layout)
|
|
|
|
layout.addSpacing(20)
|
|
|
|
layout.addStretch()
|
2016-12-28 21:44:41 -05:00
|
|
|
layout.addLayout(buttons_layout)
|
2017-05-16 20:02:00 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
self.setLayout(layout)
|
2017-04-15 18:24:08 -04:00
|
|
|
self.cancel_button.setFocus()
|
2016-12-28 22:52:21 -05:00
|
|
|
|
2018-12-06 02:05:25 -05:00
|
|
|
self.reload_settings()
|
2018-12-05 23:33:45 -05:00
|
|
|
|
2018-12-06 02:05:25 -05:00
|
|
|
def reload_settings(self):
|
2016-12-28 22:52:21 -05:00
|
|
|
# Load settings, and fill them in
|
2019-11-02 20:13:06 -04:00
|
|
|
self.old_settings = Settings(self.common)
|
2017-05-16 19:50:33 -04:00
|
|
|
self.old_settings.load()
|
2016-12-29 11:02:32 -05:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
use_autoupdate = self.old_settings.get("use_autoupdate")
|
2017-04-15 18:24:08 -04:00
|
|
|
if use_autoupdate:
|
|
|
|
self.autoupdate_checkbox.setCheckState(QtCore.Qt.Checked)
|
|
|
|
else:
|
|
|
|
self.autoupdate_checkbox.setCheckState(QtCore.Qt.Unchecked)
|
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
autoupdate_timestamp = self.old_settings.get("autoupdate_timestamp")
|
2017-04-15 21:04:05 -04:00
|
|
|
self._update_autoupdate_timestamp(autoupdate_timestamp)
|
2017-04-15 18:24:08 -04:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
locale = self.old_settings.get("locale")
|
2018-09-30 19:14:14 -04:00
|
|
|
locale_index = self.language_combobox.findData(QtCore.QVariant(locale))
|
|
|
|
self.language_combobox.setCurrentIndex(locale_index)
|
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
connection_type = self.old_settings.get("connection_type")
|
|
|
|
if connection_type == "bundled":
|
2017-04-08 20:48:58 -04:00
|
|
|
if self.connection_type_bundled_radio.isEnabled():
|
|
|
|
self.connection_type_bundled_radio.setChecked(True)
|
|
|
|
else:
|
|
|
|
# If bundled tor is disabled, fallback to automatic
|
|
|
|
self.connection_type_automatic_radio.setChecked(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
elif connection_type == "automatic":
|
2016-12-28 22:52:21 -05:00
|
|
|
self.connection_type_automatic_radio.setChecked(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
elif connection_type == "control_port":
|
2016-12-28 23:03:32 -05:00
|
|
|
self.connection_type_control_port_radio.setChecked(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
elif connection_type == "socket_file":
|
2016-12-28 22:52:21 -05:00
|
|
|
self.connection_type_socket_file_radio.setChecked(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.connection_type_control_port_extras_address.setText(
|
|
|
|
self.old_settings.get("control_port_address")
|
|
|
|
)
|
|
|
|
self.connection_type_control_port_extras_port.setText(
|
|
|
|
str(self.old_settings.get("control_port_port"))
|
|
|
|
)
|
|
|
|
self.connection_type_socket_file_extras_path.setText(
|
|
|
|
self.old_settings.get("socket_file_path")
|
|
|
|
)
|
|
|
|
self.connection_type_socks_address.setText(
|
|
|
|
self.old_settings.get("socks_address")
|
|
|
|
)
|
|
|
|
self.connection_type_socks_port.setText(
|
|
|
|
str(self.old_settings.get("socks_port"))
|
|
|
|
)
|
|
|
|
auth_type = self.old_settings.get("auth_type")
|
|
|
|
if auth_type == "no_auth":
|
2016-12-28 22:52:21 -05:00
|
|
|
self.authenticate_no_auth_radio.setChecked(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
elif auth_type == "password":
|
2016-12-28 22:52:21 -05:00
|
|
|
self.authenticate_password_radio.setChecked(True)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.authenticate_password_extras_password.setText(
|
|
|
|
self.old_settings.get("auth_password")
|
|
|
|
)
|
2016-12-28 21:44:41 -05:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
if self.old_settings.get("no_bridges"):
|
2017-12-10 22:53:13 -05:00
|
|
|
self.tor_bridges_no_bridges_radio.setChecked(True)
|
|
|
|
self.tor_bridges_use_obfs4_radio.setChecked(False)
|
2018-02-15 18:19:53 -05:00
|
|
|
self.tor_bridges_use_meek_lite_azure_radio.setChecked(False)
|
2017-12-10 22:53:13 -05:00
|
|
|
self.tor_bridges_use_custom_radio.setChecked(False)
|
|
|
|
else:
|
|
|
|
self.tor_bridges_no_bridges_radio.setChecked(False)
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_bridges_use_obfs4_radio.setChecked(
|
|
|
|
self.old_settings.get("tor_bridges_use_obfs4")
|
|
|
|
)
|
|
|
|
self.tor_bridges_use_meek_lite_azure_radio.setChecked(
|
|
|
|
self.old_settings.get("tor_bridges_use_meek_lite_azure")
|
|
|
|
)
|
|
|
|
|
|
|
|
if self.old_settings.get("tor_bridges_use_custom_bridges"):
|
2017-12-10 22:53:13 -05:00
|
|
|
self.tor_bridges_use_custom_radio.setChecked(True)
|
2017-12-11 01:58:53 -05:00
|
|
|
# Remove the 'Bridge' lines at the start of each bridge.
|
|
|
|
# They are added automatically to provide compatibility with
|
|
|
|
# copying/pasting bridges provided from https://bridges.torproject.org
|
|
|
|
new_bridges = []
|
2019-10-13 00:01:25 -04:00
|
|
|
bridges = self.old_settings.get("tor_bridges_use_custom_bridges").split(
|
|
|
|
"Bridge "
|
|
|
|
)
|
2017-12-11 01:58:53 -05:00
|
|
|
for bridge in bridges:
|
|
|
|
new_bridges.append(bridge)
|
2019-10-13 00:01:25 -04:00
|
|
|
new_bridges = "".join(new_bridges)
|
2017-12-11 01:58:53 -05:00
|
|
|
self.tor_bridges_use_custom_textbox.setPlainText(new_bridges)
|
2017-12-10 22:53:13 -05:00
|
|
|
|
2017-04-08 20:48:58 -04:00
|
|
|
def connection_type_bundled_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
Connection type bundled was toggled. If checked, hide authentication fields.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "connection_type_bundled_toggled")
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2017-04-08 20:48:58 -04:00
|
|
|
if checked:
|
|
|
|
self.authenticate_group.hide()
|
2017-04-15 19:33:41 -04:00
|
|
|
self.connection_type_socks.hide()
|
2017-12-11 16:43:12 -05:00
|
|
|
self.connection_type_bridges_radio_group.show()
|
2017-04-08 20:48:58 -04:00
|
|
|
|
2017-12-10 22:53:13 -05:00
|
|
|
def tor_bridges_no_bridges_radio_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
'No bridges' option was toggled. If checked, enable other bridge options.
|
|
|
|
"""
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2017-12-10 22:53:13 -05:00
|
|
|
if checked:
|
2017-12-11 00:48:26 -05:00
|
|
|
self.tor_bridges_use_custom_textbox_options.hide()
|
2017-12-10 22:53:13 -05:00
|
|
|
|
|
|
|
def tor_bridges_use_obfs4_radio_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
obfs4 bridges option was toggled. If checked, disable custom bridge options.
|
|
|
|
"""
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2017-12-10 22:53:13 -05:00
|
|
|
if checked:
|
2017-12-11 00:48:26 -05:00
|
|
|
self.tor_bridges_use_custom_textbox_options.hide()
|
2017-12-10 22:53:13 -05:00
|
|
|
|
2018-02-15 18:19:53 -05:00
|
|
|
def tor_bridges_use_meek_lite_azure_radio_toggled(self, checked):
|
|
|
|
"""
|
2018-02-24 17:09:42 -05:00
|
|
|
meek_lite_azure bridges option was toggled. If checked, disable custom bridge options.
|
2018-02-15 18:19:53 -05:00
|
|
|
"""
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2018-02-15 18:19:53 -05:00
|
|
|
if checked:
|
|
|
|
self.tor_bridges_use_custom_textbox_options.hide()
|
2018-03-04 21:52:50 -05:00
|
|
|
# Alert the user about meek's costliness if it looks like they're turning it on
|
2019-10-13 00:01:25 -04:00
|
|
|
if not self.old_settings.get("tor_bridges_use_meek_lite_azure"):
|
|
|
|
Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("gui_settings_meek_lite_expensive_warning"),
|
|
|
|
QtWidgets.QMessageBox.Warning,
|
|
|
|
)
|
2018-02-15 18:19:53 -05:00
|
|
|
|
2017-12-10 22:53:13 -05:00
|
|
|
def tor_bridges_use_custom_radio_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
Custom bridges option was toggled. If checked, show custom bridge options.
|
|
|
|
"""
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2017-12-10 22:53:13 -05:00
|
|
|
if checked:
|
2017-12-11 00:48:26 -05:00
|
|
|
self.tor_bridges_use_custom_textbox_options.show()
|
2017-04-08 20:48:58 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
def connection_type_automatic_toggled(self, checked):
|
|
|
|
"""
|
2017-04-08 20:48:58 -04:00
|
|
|
Connection type automatic was toggled. If checked, hide authentication fields.
|
2016-12-28 21:44:41 -05:00
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "connection_type_automatic_toggled")
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2016-12-28 21:44:41 -05:00
|
|
|
if checked:
|
2017-04-08 16:42:07 -04:00
|
|
|
self.authenticate_group.hide()
|
2017-04-15 19:33:41 -04:00
|
|
|
self.connection_type_socks.hide()
|
2017-12-11 16:43:12 -05:00
|
|
|
self.connection_type_bridges_radio_group.hide()
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
def connection_type_control_port_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
Connection type control port was toggled. If checked, show extra fields
|
|
|
|
for Tor control address and port. If unchecked, hide those extra fields.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "connection_type_control_port_toggled")
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2016-12-28 21:44:41 -05:00
|
|
|
if checked:
|
2017-04-08 20:48:58 -04:00
|
|
|
self.authenticate_group.show()
|
2016-12-28 21:44:41 -05:00
|
|
|
self.connection_type_control_port_extras.show()
|
2017-04-15 19:33:41 -04:00
|
|
|
self.connection_type_socks.show()
|
2017-12-11 16:43:12 -05:00
|
|
|
self.connection_type_bridges_radio_group.hide()
|
2016-12-28 21:44:41 -05:00
|
|
|
else:
|
|
|
|
self.connection_type_control_port_extras.hide()
|
|
|
|
|
|
|
|
def connection_type_socket_file_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
Connection type socket file was toggled. If checked, show extra fields
|
|
|
|
for socket file. If unchecked, hide those extra fields.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "connection_type_socket_file_toggled")
|
2019-09-01 16:16:00 -04:00
|
|
|
if self.hide_tor_settings:
|
|
|
|
return
|
2016-12-28 21:44:41 -05:00
|
|
|
if checked:
|
2017-04-08 20:48:58 -04:00
|
|
|
self.authenticate_group.show()
|
2016-12-28 21:44:41 -05:00
|
|
|
self.connection_type_socket_file_extras.show()
|
2017-04-15 19:33:41 -04:00
|
|
|
self.connection_type_socks.show()
|
2017-12-11 16:43:12 -05:00
|
|
|
self.connection_type_bridges_radio_group.hide()
|
2016-12-28 21:44:41 -05:00
|
|
|
else:
|
|
|
|
self.connection_type_socket_file_extras.hide()
|
|
|
|
|
|
|
|
def authenticate_no_auth_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
Authentication option no authentication was toggled.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "authenticate_no_auth_toggled")
|
2016-12-28 21:44:41 -05:00
|
|
|
|
|
|
|
def authenticate_password_toggled(self, checked):
|
|
|
|
"""
|
|
|
|
Authentication option password was toggled. If checked, show extra fields
|
|
|
|
for password auth. If unchecked, hide those extra fields.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "authenticate_password_toggled")
|
2016-12-28 21:44:41 -05:00
|
|
|
if checked:
|
|
|
|
self.authenticate_password_extras.show()
|
|
|
|
else:
|
|
|
|
self.authenticate_password_extras.hide()
|
|
|
|
|
2017-04-15 16:05:11 -04:00
|
|
|
def test_tor_clicked(self):
|
2016-12-28 21:44:41 -05:00
|
|
|
"""
|
2017-04-15 18:24:08 -04:00
|
|
|
Test Tor Settings button clicked. With the given settings, see if we can
|
2016-12-28 21:44:41 -05:00
|
|
|
successfully connect and authenticate to Tor.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "test_tor_clicked")
|
2016-12-29 11:02:32 -05:00
|
|
|
settings = self.settings_from_fields()
|
2016-12-29 12:58:13 -05:00
|
|
|
|
2017-04-14 01:22:34 -04:00
|
|
|
try:
|
2017-04-14 02:08:25 -04:00
|
|
|
# Show Tor connection status if connection type is bundled tor
|
2019-10-13 00:01:25 -04:00
|
|
|
if settings.get("connection_type") == "bundled":
|
2017-04-15 21:04:05 -04:00
|
|
|
self.tor_status.show()
|
|
|
|
self._disable_buttons()
|
2017-05-14 20:35:35 -04:00
|
|
|
|
|
|
|
def tor_status_update_func(progress, summary):
|
|
|
|
self._tor_status_update(progress, summary)
|
2017-05-14 21:36:31 -04:00
|
|
|
return True
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2017-04-14 01:56:47 -04:00
|
|
|
else:
|
2017-05-14 20:35:35 -04:00
|
|
|
tor_status_update_func = None
|
2017-04-14 01:56:47 -04:00
|
|
|
|
2018-03-13 06:28:47 -04:00
|
|
|
onion = Onion(self.common)
|
2019-10-13 00:01:25 -04:00
|
|
|
onion.connect(
|
|
|
|
custom_settings=settings,
|
|
|
|
tor_status_update_func=tor_status_update_func,
|
|
|
|
)
|
2017-04-08 22:00:31 -04:00
|
|
|
|
2017-04-14 01:22:34 -04:00
|
|
|
# If an exception hasn't been raised yet, the Tor settings work
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("settings_test_success").format(
|
|
|
|
onion.tor_version,
|
|
|
|
onion.supports_ephemeral,
|
|
|
|
onion.supports_stealth,
|
|
|
|
onion.supports_v3_onions,
|
|
|
|
),
|
|
|
|
)
|
2016-12-29 12:58:13 -05:00
|
|
|
|
2017-04-14 13:00:56 -04:00
|
|
|
# Clean up
|
|
|
|
onion.cleanup()
|
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
except (
|
|
|
|
TorErrorInvalidSetting,
|
|
|
|
TorErrorAutomatic,
|
|
|
|
TorErrorSocketPort,
|
|
|
|
TorErrorSocketFile,
|
|
|
|
TorErrorMissingPassword,
|
|
|
|
TorErrorUnreadableCookieFile,
|
|
|
|
TorErrorAuthError,
|
|
|
|
TorErrorProtocolError,
|
|
|
|
BundledTorNotSupported,
|
|
|
|
BundledTorTimeout,
|
|
|
|
) as e:
|
2018-03-08 13:18:31 -05:00
|
|
|
Alert(self.common, e.args[0], QtWidgets.QMessageBox.Warning)
|
2019-10-13 00:01:25 -04:00
|
|
|
if settings.get("connection_type") == "bundled":
|
2017-04-15 21:04:05 -04:00
|
|
|
self.tor_status.hide()
|
|
|
|
self._enable_buttons()
|
2016-12-28 21:44:41 -05:00
|
|
|
|
2017-04-15 18:24:08 -04:00
|
|
|
def check_for_updates(self):
|
|
|
|
"""
|
|
|
|
Check for Updates button clicked. Manually force an update check.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "check_for_updates")
|
2017-05-14 22:54:12 -04:00
|
|
|
# Disable buttons
|
|
|
|
self._disable_buttons()
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common.gui.qtapp.processEvents()
|
2017-04-15 21:04:05 -04:00
|
|
|
|
2018-01-23 00:32:14 -05:00
|
|
|
def update_timestamp():
|
|
|
|
# Update the last checked label
|
2019-11-02 20:13:06 -04:00
|
|
|
settings = Settings(self.common)
|
2018-01-23 00:32:14 -05:00
|
|
|
settings.load()
|
2019-10-13 00:01:25 -04:00
|
|
|
autoupdate_timestamp = settings.get("autoupdate_timestamp")
|
2018-01-23 00:32:14 -05:00
|
|
|
self._update_autoupdate_timestamp(autoupdate_timestamp)
|
|
|
|
|
2018-01-23 00:51:13 -05:00
|
|
|
def close_forced_update_thread():
|
2018-01-23 00:32:14 -05:00
|
|
|
forced_update_thread.quit()
|
|
|
|
# Enable buttons
|
|
|
|
self._enable_buttons()
|
|
|
|
# Update timestamp
|
|
|
|
update_timestamp()
|
|
|
|
|
2017-04-15 21:04:05 -04:00
|
|
|
# Check for updates
|
2017-04-15 21:55:41 -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
|
|
|
|
),
|
|
|
|
)
|
2018-01-23 00:51:13 -05:00
|
|
|
close_forced_update_thread()
|
|
|
|
|
2017-04-15 21:55:41 -04:00
|
|
|
def update_not_available():
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(self.common, strings._("update_not_available"))
|
2018-01-23 00:51:13 -05:00
|
|
|
close_forced_update_thread()
|
2017-04-15 21:55:41 -04:00
|
|
|
|
2018-01-23 00:51:13 -05:00
|
|
|
def update_error():
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("update_error_check_error"),
|
|
|
|
QtWidgets.QMessageBox.Warning,
|
|
|
|
)
|
2018-01-23 00:51:13 -05:00
|
|
|
close_forced_update_thread()
|
2017-04-15 21:04:05 -04:00
|
|
|
|
2018-08-30 01:18:29 -04:00
|
|
|
def update_invalid_version(latest_version):
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("update_error_invalid_latest_version").format(latest_version),
|
|
|
|
QtWidgets.QMessageBox.Warning,
|
|
|
|
)
|
2018-01-23 00:51:13 -05:00
|
|
|
close_forced_update_thread()
|
2018-01-23 00:32:14 -05:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
forced_update_thread = UpdateThread(
|
2019-11-02 20:13:06 -04:00
|
|
|
self.common, self.onion, force=True
|
2019-10-13 00:01:25 -04:00
|
|
|
)
|
2018-01-23 00:32:14 -05:00
|
|
|
forced_update_thread.update_available.connect(update_available)
|
|
|
|
forced_update_thread.update_not_available.connect(update_not_available)
|
2018-01-23 00:51:13 -05:00
|
|
|
forced_update_thread.update_error.connect(update_error)
|
|
|
|
forced_update_thread.update_invalid_version.connect(update_invalid_version)
|
2018-01-23 00:32:14 -05:00
|
|
|
forced_update_thread.start()
|
2017-04-15 18:24:08 -04:00
|
|
|
|
2016-12-28 21:44:41 -05:00
|
|
|
def save_clicked(self):
|
|
|
|
"""
|
|
|
|
Save button clicked. Save current settings to disk.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "save_clicked")
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2018-09-30 20:06:29 -04:00
|
|
|
def changed(s1, s2, keys):
|
|
|
|
"""
|
|
|
|
Compare the Settings objects s1 and s2 and return true if any values
|
|
|
|
have changed for the given keys.
|
|
|
|
"""
|
|
|
|
for key in keys:
|
|
|
|
if s1.get(key) != s2.get(key):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2016-12-29 11:02:32 -05:00
|
|
|
settings = self.settings_from_fields()
|
2018-02-25 03:42:38 -05:00
|
|
|
if settings:
|
2018-09-30 20:06:29 -04:00
|
|
|
# If language changed, inform user they need to restart OnionShare
|
2019-10-13 00:01:25 -04:00
|
|
|
if changed(settings, self.old_settings, ["locale"]):
|
2018-09-30 20:06:29 -04:00
|
|
|
# Look up error message in different locale
|
2019-10-13 00:01:25 -04:00
|
|
|
new_locale = settings.get("locale")
|
|
|
|
if (
|
|
|
|
new_locale in strings.translations
|
|
|
|
and "gui_settings_language_changed_notice"
|
|
|
|
in strings.translations[new_locale]
|
|
|
|
):
|
|
|
|
notice = strings.translations[new_locale][
|
|
|
|
"gui_settings_language_changed_notice"
|
|
|
|
]
|
2018-09-30 20:06:29 -04:00
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
notice = strings._("gui_settings_language_changed_notice")
|
2018-09-30 23:32:09 -04:00
|
|
|
Alert(self.common, notice, QtWidgets.QMessageBox.Information)
|
2018-09-30 20:06:29 -04:00
|
|
|
|
|
|
|
# Save the new settings
|
2018-02-25 03:42:38 -05:00
|
|
|
settings.save()
|
|
|
|
|
|
|
|
# If Tor isn't connected, or if Tor settings have changed, Reinitialize
|
|
|
|
# the Onion object
|
|
|
|
reboot_onion = False
|
2019-10-21 01:08:47 -04:00
|
|
|
if not self.common.gui.local_only:
|
|
|
|
if self.common.gui.onion.is_authenticated():
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"SettingsDialog", "save_clicked", "Connected to Tor"
|
|
|
|
)
|
|
|
|
|
|
|
|
if changed(
|
|
|
|
settings,
|
|
|
|
self.old_settings,
|
|
|
|
[
|
|
|
|
"connection_type",
|
|
|
|
"control_port_address",
|
|
|
|
"control_port_port",
|
|
|
|
"socks_address",
|
|
|
|
"socks_port",
|
|
|
|
"socket_file_path",
|
|
|
|
"auth_type",
|
|
|
|
"auth_password",
|
|
|
|
"no_bridges",
|
|
|
|
"tor_bridges_use_obfs4",
|
|
|
|
"tor_bridges_use_meek_lite_azure",
|
|
|
|
"tor_bridges_use_custom_bridges",
|
|
|
|
],
|
|
|
|
):
|
2018-03-07 00:13:22 -05:00
|
|
|
|
|
|
|
reboot_onion = True
|
|
|
|
|
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"SettingsDialog", "save_clicked", "Not connected to Tor"
|
|
|
|
)
|
2018-03-07 00:13:22 -05:00
|
|
|
# Tor isn't connected, so try connecting
|
2018-02-25 03:42:38 -05:00
|
|
|
reboot_onion = True
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2018-03-07 00:13:22 -05:00
|
|
|
# Do we need to reinitialize Tor?
|
|
|
|
if reboot_onion:
|
|
|
|
# Reinitialize the Onion object
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"SettingsDialog", "save_clicked", "rebooting the Onion"
|
|
|
|
)
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common.gui.onion.cleanup()
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
tor_con = TorConnectionDialog(self.common, settings)
|
2018-03-07 00:13:22 -05:00
|
|
|
tor_con.start()
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"SettingsDialog",
|
|
|
|
"save_clicked",
|
2019-10-21 01:08:47 -04:00
|
|
|
f"Onion done rebooting, connected to Tor: {self.common.gui.onion.connected_to_tor}",
|
2019-10-13 00:01:25 -04:00
|
|
|
)
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2019-10-21 01:08:47 -04:00
|
|
|
if self.common.gui.onion.is_authenticated() and not tor_con.wasCanceled():
|
2018-03-07 00:13:22 -05:00
|
|
|
self.settings_saved.emit()
|
|
|
|
self.close()
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2018-03-07 00:13:22 -05:00
|
|
|
else:
|
2018-02-25 03:42:38 -05:00
|
|
|
self.settings_saved.emit()
|
|
|
|
self.close()
|
|
|
|
else:
|
2017-05-22 20:08:05 -04:00
|
|
|
self.settings_saved.emit()
|
2017-05-16 19:50:33 -04:00
|
|
|
self.close()
|
|
|
|
|
2016-12-29 11:02:32 -05:00
|
|
|
def cancel_clicked(self):
|
|
|
|
"""
|
|
|
|
Cancel button clicked.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "cancel_clicked")
|
2019-10-21 01:08:47 -04:00
|
|
|
if not self.common.gui.local_only and not self.common.gui.onion.is_authenticated():
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(
|
|
|
|
self.common,
|
|
|
|
strings._("gui_tor_connection_canceled"),
|
|
|
|
QtWidgets.QMessageBox.Warning,
|
|
|
|
)
|
2017-12-04 02:43:40 -05:00
|
|
|
sys.exit()
|
|
|
|
else:
|
|
|
|
self.close()
|
2016-12-29 11:02:32 -05:00
|
|
|
|
2017-05-19 23:56:20 -04:00
|
|
|
def help_clicked(self):
|
|
|
|
"""
|
|
|
|
Help button clicked.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "help_clicked")
|
2018-09-29 17:49:06 -04:00
|
|
|
SettingsDialog.open_help()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def open_help():
|
2019-10-13 00:01:25 -04:00
|
|
|
help_url = "https://github.com/micahflee/onionshare/wiki"
|
2018-09-29 17:49:06 -04:00
|
|
|
QtGui.QDesktopServices.openUrl(QtCore.QUrl(help_url))
|
2017-05-19 23:56:20 -04:00
|
|
|
|
2016-12-29 11:02:32 -05:00
|
|
|
def settings_from_fields(self):
|
|
|
|
"""
|
|
|
|
Return a Settings object that's full of values from the settings dialog.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "settings_from_fields")
|
2019-11-02 20:13:06 -04:00
|
|
|
settings = Settings(self.common)
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.load() # To get the last update timestamp
|
|
|
|
|
2018-09-30 19:14:14 -04:00
|
|
|
# Language
|
|
|
|
locale_index = self.language_combobox.currentIndex()
|
|
|
|
locale = self.language_combobox.itemData(locale_index)
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("locale", locale)
|
2018-09-30 19:14:14 -04:00
|
|
|
|
|
|
|
# Tor connection
|
2017-04-08 20:48:58 -04:00
|
|
|
if self.connection_type_bundled_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("connection_type", "bundled")
|
2016-12-28 23:03:32 -05:00
|
|
|
if self.connection_type_automatic_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("connection_type", "automatic")
|
2016-12-28 23:03:32 -05:00
|
|
|
if self.connection_type_control_port_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("connection_type", "control_port")
|
2016-12-28 23:03:32 -05:00
|
|
|
if self.connection_type_socket_file_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("connection_type", "socket_file")
|
2016-12-28 23:03:32 -05:00
|
|
|
|
2018-01-17 15:54:19 -05:00
|
|
|
if self.autoupdate_checkbox.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("use_autoupdate", True)
|
2018-01-17 15:54:19 -05:00
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("use_autoupdate", False)
|
|
|
|
|
|
|
|
settings.set(
|
|
|
|
"control_port_address",
|
|
|
|
self.connection_type_control_port_extras_address.text(),
|
|
|
|
)
|
|
|
|
settings.set(
|
|
|
|
"control_port_port", self.connection_type_control_port_extras_port.text()
|
|
|
|
)
|
|
|
|
settings.set(
|
|
|
|
"socket_file_path", self.connection_type_socket_file_extras_path.text()
|
|
|
|
)
|
|
|
|
|
|
|
|
settings.set("socks_address", self.connection_type_socks_address.text())
|
|
|
|
settings.set("socks_port", self.connection_type_socks_port.text())
|
2017-04-15 19:33:41 -04:00
|
|
|
|
2016-12-28 23:03:32 -05:00
|
|
|
if self.authenticate_no_auth_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("auth_type", "no_auth")
|
2016-12-28 23:03:32 -05:00
|
|
|
if self.authenticate_password_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("auth_type", "password")
|
2016-12-28 23:03:32 -05:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("auth_password", self.authenticate_password_extras_password.text())
|
2016-12-28 21:44:41 -05:00
|
|
|
|
2017-12-10 22:53:13 -05:00
|
|
|
# Whether we use bridges
|
|
|
|
if self.tor_bridges_no_bridges_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("no_bridges", True)
|
|
|
|
settings.set("tor_bridges_use_obfs4", False)
|
|
|
|
settings.set("tor_bridges_use_meek_lite_azure", False)
|
|
|
|
settings.set("tor_bridges_use_custom_bridges", "")
|
2017-12-10 22:53:13 -05:00
|
|
|
if self.tor_bridges_use_obfs4_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("no_bridges", False)
|
|
|
|
settings.set("tor_bridges_use_obfs4", True)
|
|
|
|
settings.set("tor_bridges_use_meek_lite_azure", False)
|
|
|
|
settings.set("tor_bridges_use_custom_bridges", "")
|
2018-02-15 18:19:53 -05:00
|
|
|
if self.tor_bridges_use_meek_lite_azure_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("no_bridges", False)
|
|
|
|
settings.set("tor_bridges_use_obfs4", False)
|
|
|
|
settings.set("tor_bridges_use_meek_lite_azure", True)
|
|
|
|
settings.set("tor_bridges_use_custom_bridges", "")
|
2017-12-10 22:53:13 -05:00
|
|
|
if self.tor_bridges_use_custom_radio.isChecked():
|
2019-10-13 00:01:25 -04:00
|
|
|
settings.set("no_bridges", False)
|
|
|
|
settings.set("tor_bridges_use_obfs4", False)
|
|
|
|
settings.set("tor_bridges_use_meek_lite_azure", False)
|
2018-02-15 18:19:53 -05:00
|
|
|
|
2017-12-11 01:58:53 -05:00
|
|
|
# Insert a 'Bridge' line at the start of each bridge.
|
|
|
|
# This makes it easier to copy/paste a set of bridges
|
|
|
|
# provided from https://bridges.torproject.org
|
|
|
|
new_bridges = []
|
2019-10-13 00:01:25 -04:00
|
|
|
bridges = self.tor_bridges_use_custom_textbox.toPlainText().split("\n")
|
2018-01-14 04:12:24 -05:00
|
|
|
bridges_valid = False
|
2017-12-11 01:58:53 -05:00
|
|
|
for bridge in bridges:
|
2019-10-13 00:01:25 -04:00
|
|
|
if bridge != "":
|
2018-01-14 04:12:24 -05:00
|
|
|
# Check the syntax of the custom bridge to make sure it looks legitimate
|
2019-10-13 00:01:25 -04:00
|
|
|
ipv4_pattern = re.compile(
|
|
|
|
"(obfs4\s+)?(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]):([0-9]+)(\s+)([A-Z0-9]+)(.+)$"
|
|
|
|
)
|
|
|
|
ipv6_pattern = re.compile(
|
|
|
|
"(obfs4\s+)?\[(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\]:[0-9]+\s+[A-Z0-9]+(.+)$"
|
|
|
|
)
|
|
|
|
meek_lite_pattern = re.compile(
|
|
|
|
"(meek_lite)(\s)+([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+:[0-9]+)(\s)+([0-9A-Z]+)(\s)+url=(.+)(\s)+front=(.+)"
|
|
|
|
)
|
|
|
|
if (
|
|
|
|
ipv4_pattern.match(bridge)
|
|
|
|
or ipv6_pattern.match(bridge)
|
|
|
|
or meek_lite_pattern.match(bridge)
|
|
|
|
):
|
|
|
|
new_bridges.append("".join(["Bridge ", bridge, "\n"]))
|
2018-01-14 04:12:24 -05:00
|
|
|
bridges_valid = True
|
2018-02-25 21:48:28 -05:00
|
|
|
|
2018-01-14 04:12:24 -05:00
|
|
|
if bridges_valid:
|
2019-10-13 00:01:25 -04:00
|
|
|
new_bridges = "".join(new_bridges)
|
|
|
|
settings.set("tor_bridges_use_custom_bridges", new_bridges)
|
2018-01-14 04:12:24 -05:00
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
Alert(self.common, strings._("gui_settings_tor_bridges_invalid"))
|
|
|
|
settings.set("no_bridges", True)
|
2018-02-25 03:42:38 -05:00
|
|
|
return False
|
2017-12-10 22:53:13 -05:00
|
|
|
|
2016-12-29 11:02:32 -05:00
|
|
|
return settings
|
2017-04-15 21:04:05 -04:00
|
|
|
|
2017-05-16 19:50:33 -04:00
|
|
|
def closeEvent(self, e):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "closeEvent")
|
2017-05-16 19:50:33 -04:00
|
|
|
|
|
|
|
# On close, if Tor isn't connected, then quit OnionShare altogether
|
2019-10-21 01:08:47 -04:00
|
|
|
if not self.common.gui.local_only:
|
|
|
|
if not self.common.gui.onion.is_authenticated():
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log(
|
|
|
|
"SettingsDialog", "closeEvent", "Closing while not connected to Tor"
|
|
|
|
)
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2018-03-07 00:13:22 -05:00
|
|
|
# Wait 1ms for the event loop to finish, then quit
|
2019-10-21 01:08:47 -04:00
|
|
|
QtCore.QTimer.singleShot(1, self.common.gui.qtapp.quit)
|
2017-05-16 19:50:33 -04:00
|
|
|
|
2017-04-15 21:04:05 -04:00
|
|
|
def _update_autoupdate_timestamp(self, autoupdate_timestamp):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "_update_autoupdate_timestamp")
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2017-04-15 21:04:05 -04:00
|
|
|
if autoupdate_timestamp:
|
|
|
|
dt = datetime.datetime.fromtimestamp(autoupdate_timestamp)
|
2019-10-13 00:01:25 -04:00
|
|
|
last_checked = dt.strftime("%B %d, %Y %H:%M")
|
2017-04-15 21:04:05 -04:00
|
|
|
else:
|
2019-10-13 00:01:25 -04:00
|
|
|
last_checked = strings._("gui_settings_autoupdate_timestamp_never")
|
|
|
|
self.autoupdate_timestamp.setText(
|
|
|
|
strings._("gui_settings_autoupdate_timestamp").format(last_checked)
|
|
|
|
)
|
2017-04-15 21:04:05 -04:00
|
|
|
|
2017-05-14 21:36:31 -04:00
|
|
|
def _tor_status_update(self, progress, summary):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.tor_status.setText(
|
2019-10-20 13:30:16 -04:00
|
|
|
f"<strong>{strings._('connecting_to_tor')}</strong><br>{progress}% {summary}"
|
2019-10-13 00:01:25 -04:00
|
|
|
)
|
2019-10-21 01:08:47 -04:00
|
|
|
self.common.gui.qtapp.processEvents()
|
2019-10-13 00:01:25 -04:00
|
|
|
if "Done" in summary:
|
2017-04-15 21:04:05 -04:00
|
|
|
self.tor_status.hide()
|
|
|
|
self._enable_buttons()
|
|
|
|
|
|
|
|
def _disable_buttons(self):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "_disable_buttons")
|
2017-05-16 14:31:52 -04:00
|
|
|
|
2017-04-15 21:04:05 -04:00
|
|
|
self.check_for_updates_button.setEnabled(False)
|
|
|
|
self.connection_type_test_button.setEnabled(False)
|
|
|
|
self.save_button.setEnabled(False)
|
|
|
|
self.cancel_button.setEnabled(False)
|
|
|
|
|
|
|
|
def _enable_buttons(self):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.common.log("SettingsDialog", "_enable_buttons")
|
2018-01-03 16:43:43 -05:00
|
|
|
# We can't check for updates if we're still not connected to Tor
|
2019-10-21 01:08:47 -04:00
|
|
|
if not self.common.gui.onion.connected_to_tor:
|
2018-01-03 16:43:43 -05:00
|
|
|
self.check_for_updates_button.setEnabled(False)
|
|
|
|
else:
|
|
|
|
self.check_for_updates_button.setEnabled(True)
|
2017-04-15 21:04:05 -04:00
|
|
|
self.connection_type_test_button.setEnabled(True)
|
|
|
|
self.save_button.setEnabled(True)
|
|
|
|
self.cancel_button.setEnabled(True)
|