2014-09-02 20:30:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2017-01-06 21:58:15 -05:00
|
|
|
Copyright (C) 2017 Micah Lee <micah@micahflee.com>
|
2014-09-02 15:10:42 -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/>.
|
|
|
|
"""
|
2016-02-12 18:12:27 -05:00
|
|
|
from PyQt5 import QtCore, QtWidgets
|
2014-08-27 19:46:19 -04:00
|
|
|
|
|
|
|
from onionshare import strings, helpers
|
|
|
|
|
2016-12-22 20:47:05 -05:00
|
|
|
class Options(QtWidgets.QVBoxLayout):
|
2015-11-15 22:01:20 -05:00
|
|
|
"""
|
|
|
|
The extra onionshare options in the GUI.
|
|
|
|
"""
|
2015-11-20 16:43:19 -05:00
|
|
|
def __init__(self, web, app):
|
2014-08-27 19:46:19 -04:00
|
|
|
super(Options, self).__init__()
|
2014-08-28 02:52:56 -04:00
|
|
|
|
|
|
|
self.web = web
|
2015-11-20 16:43:19 -05:00
|
|
|
self.app = app
|
2015-09-08 00:48:49 -04:00
|
|
|
|
2014-08-27 19:46:19 -04:00
|
|
|
# close automatically
|
2016-02-12 18:12:27 -05:00
|
|
|
self.close_automatically = QtWidgets.QCheckBox()
|
2014-08-28 02:52:56 -04:00
|
|
|
if self.web.stay_open:
|
2014-08-27 20:27:54 -04:00
|
|
|
self.close_automatically.setCheckState(QtCore.Qt.Unchecked)
|
|
|
|
else:
|
|
|
|
self.close_automatically.setCheckState(QtCore.Qt.Checked)
|
2014-09-15 22:09:37 -04:00
|
|
|
self.close_automatically.setText(strings._("close_on_finish", True))
|
2016-02-12 18:12:27 -05:00
|
|
|
self.close_automatically.stateChanged.connect(self.stay_open_changed)
|
2014-08-27 19:46:19 -04:00
|
|
|
|
2016-12-22 20:47:05 -05:00
|
|
|
# stealth
|
|
|
|
self.stealth = QtWidgets.QCheckBox()
|
|
|
|
self.stealth.setCheckState(QtCore.Qt.Unchecked)
|
2016-12-28 12:55:14 -05:00
|
|
|
self.stealth.setText(strings._("gui_create_stealth", True))
|
2016-12-22 20:47:05 -05:00
|
|
|
self.stealth.stateChanged.connect(self.stealth_changed)
|
|
|
|
|
2016-12-28 12:55:14 -05:00
|
|
|
# advanced options group
|
2016-12-29 17:35:57 -05:00
|
|
|
self.advanced_group = QtWidgets.QGroupBox(strings._("gui_advanced_options", True))
|
|
|
|
self.advanced_group.setCheckable(True)
|
|
|
|
self.advanced_group.setChecked(False)
|
|
|
|
self.advanced_group.setFlat(True)
|
|
|
|
self.advanced_group.toggled.connect(self.advanced_options_changed)
|
2016-12-28 12:55:14 -05:00
|
|
|
advanced_group_layout = QtWidgets.QVBoxLayout()
|
|
|
|
advanced_group_layout.addWidget(self.stealth)
|
2016-12-29 17:35:57 -05:00
|
|
|
self.advanced_group.setLayout(advanced_group_layout)
|
2016-12-28 12:55:14 -05:00
|
|
|
|
2014-08-27 19:46:19 -04:00
|
|
|
# add the widgets
|
|
|
|
self.addWidget(self.close_automatically)
|
2016-12-29 17:35:57 -05:00
|
|
|
self.addWidget(self.advanced_group)
|
2014-08-27 19:46:19 -04:00
|
|
|
|
2014-08-28 02:52:56 -04:00
|
|
|
def stay_open_changed(self, state):
|
2015-11-15 22:01:20 -05:00
|
|
|
"""
|
|
|
|
When the 'close automatically' checkbox is toggled, let the web app know.
|
|
|
|
"""
|
2016-12-28 17:43:47 -05:00
|
|
|
if state == 0:
|
2014-08-28 02:52:56 -04:00
|
|
|
self.web.set_stay_open(True)
|
2015-11-20 16:43:19 -05:00
|
|
|
self.app.stay_open = True
|
2016-12-28 17:43:47 -05:00
|
|
|
else:
|
|
|
|
self.web.set_stay_open(False)
|
|
|
|
self.app.stay_open = False
|
|
|
|
|
|
|
|
def advanced_options_changed(self, checked):
|
|
|
|
"""
|
|
|
|
When the 'advanced options' checkbox is unchecked, uncheck all advanced
|
|
|
|
options, and let the onionshare app know.
|
|
|
|
"""
|
|
|
|
if not checked:
|
|
|
|
self.stealth.setChecked(False)
|
|
|
|
self.app.set_stealth(False)
|
2016-12-22 20:47:05 -05:00
|
|
|
|
|
|
|
def stealth_changed(self, state):
|
|
|
|
"""
|
|
|
|
When the 'stealth' checkbox is toggled, let the onionshare app know.
|
|
|
|
"""
|
|
|
|
if state == 2:
|
2016-12-23 22:08:18 -05:00
|
|
|
self.app.set_stealth(True)
|
2016-12-22 20:47:05 -05:00
|
|
|
else:
|
2016-12-23 22:08:18 -05:00
|
|
|
self.app.set_stealth(False)
|
2016-12-22 20:47:05 -05:00
|
|
|
|
2016-12-29 17:35:57 -05:00
|
|
|
def set_advanced_enabled(self, enabled):
|
2016-12-22 20:47:05 -05:00
|
|
|
"""
|
|
|
|
You cannot toggle stealth after an onion service has started. This method
|
2016-12-29 17:35:57 -05:00
|
|
|
disables and re-enabled the advanced options group, including the stealth
|
|
|
|
checkbox.
|
2016-12-22 20:47:05 -05:00
|
|
|
"""
|
2016-12-29 17:35:57 -05:00
|
|
|
self.advanced_group.setEnabled(enabled)
|