2018-09-17 23:55:54 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
|
|
|
Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
"""
|
|
|
|
import time
|
|
|
|
from PyQt5 import QtCore
|
|
|
|
|
2019-11-10 20:32:34 -05:00
|
|
|
from onionshare import strings
|
|
|
|
from onionshare.onion import (
|
|
|
|
TorTooOld,
|
|
|
|
TorErrorInvalidSetting,
|
|
|
|
TorErrorAutomatic,
|
|
|
|
TorErrorSocketPort,
|
|
|
|
TorErrorSocketFile,
|
|
|
|
TorErrorMissingPassword,
|
|
|
|
TorErrorUnreadableCookieFile,
|
|
|
|
TorErrorAuthError,
|
|
|
|
TorErrorProtocolError,
|
|
|
|
BundledTorTimeout,
|
|
|
|
)
|
2018-09-18 20:44:54 -04:00
|
|
|
|
2018-09-17 23:55:54 -04:00
|
|
|
|
|
|
|
class OnionThread(QtCore.QThread):
|
|
|
|
"""
|
|
|
|
Starts the onion service, and waits for it to finish
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2018-09-17 23:55:54 -04:00
|
|
|
success = QtCore.pyqtSignal()
|
2019-03-04 18:28:27 -05:00
|
|
|
success_early = QtCore.pyqtSignal()
|
2018-09-17 23:55:54 -04:00
|
|
|
error = QtCore.pyqtSignal(str)
|
|
|
|
|
|
|
|
def __init__(self, mode):
|
|
|
|
super(OnionThread, self).__init__()
|
|
|
|
self.mode = mode
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.common.log("OnionThread", "__init__")
|
2018-09-17 23:55:54 -04:00
|
|
|
|
|
|
|
# allow this thread to be terminated
|
|
|
|
self.setTerminationEnabled()
|
|
|
|
|
|
|
|
def run(self):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.common.log("OnionThread", "run")
|
2018-09-17 23:55:54 -04:00
|
|
|
|
2019-05-29 21:21:53 -04:00
|
|
|
# Make a new static URL path for each new share
|
|
|
|
self.mode.web.generate_static_url_path()
|
|
|
|
|
2019-05-21 01:18:49 -04:00
|
|
|
# Choose port and password early, because we need them to exist in advance for scheduled shares
|
2019-03-04 18:28:27 -05:00
|
|
|
if not self.mode.app.port:
|
|
|
|
self.mode.app.choose_port()
|
2019-11-03 01:32:44 -05:00
|
|
|
if not self.mode.settings.get("general", "public"):
|
2019-05-21 01:18:49 -04:00
|
|
|
if not self.mode.web.password:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.web.generate_password(
|
2019-12-08 13:13:56 -05:00
|
|
|
self.mode.settings.get("onion", "password")
|
2019-10-13 00:01:25 -04:00
|
|
|
)
|
2018-09-17 23:55:54 -04:00
|
|
|
|
2018-09-19 01:07:04 -04:00
|
|
|
try:
|
2019-03-04 18:28:27 -05:00
|
|
|
if self.mode.obtain_onion_early:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.app.start_onion_service(
|
2019-12-08 15:51:30 -05:00
|
|
|
self.mode.settings, await_publication=False
|
2019-10-13 00:01:25 -04:00
|
|
|
)
|
2019-03-04 18:28:27 -05:00
|
|
|
# wait for modules in thread to load, preventing a thread-related cx_Freeze crash
|
|
|
|
time.sleep(0.2)
|
|
|
|
self.success_early.emit()
|
|
|
|
# Unregister the onion so we can use it in the next OnionThread
|
2019-11-29 02:40:45 -05:00
|
|
|
self.mode.app.stop_onion_service(self.mode.settings)
|
2019-03-04 18:28:27 -05:00
|
|
|
else:
|
2019-11-02 20:01:47 -04:00
|
|
|
self.mode.app.start_onion_service(
|
|
|
|
self.mode.settings, await_publication=True
|
|
|
|
)
|
2019-03-04 18:28:27 -05:00
|
|
|
# wait for modules in thread to load, preventing a thread-related cx_Freeze crash
|
|
|
|
time.sleep(0.2)
|
|
|
|
# start onionshare http service in new thread
|
|
|
|
self.mode.web_thread = WebThread(self.mode)
|
|
|
|
self.mode.web_thread.start()
|
|
|
|
self.success.emit()
|
2018-09-19 01:07:04 -04:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
except (
|
|
|
|
TorTooOld,
|
|
|
|
TorErrorInvalidSetting,
|
|
|
|
TorErrorAutomatic,
|
|
|
|
TorErrorSocketPort,
|
|
|
|
TorErrorSocketFile,
|
|
|
|
TorErrorMissingPassword,
|
|
|
|
TorErrorUnreadableCookieFile,
|
|
|
|
TorErrorAuthError,
|
|
|
|
TorErrorProtocolError,
|
|
|
|
BundledTorTimeout,
|
|
|
|
OSError,
|
|
|
|
) as e:
|
2018-09-19 01:07:04 -04:00
|
|
|
self.error.emit(e.args[0])
|
|
|
|
return
|
|
|
|
|
2018-09-17 23:55:54 -04:00
|
|
|
|
|
|
|
class WebThread(QtCore.QThread):
|
|
|
|
"""
|
|
|
|
Starts the web service
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2018-09-17 23:55:54 -04:00
|
|
|
success = QtCore.pyqtSignal()
|
|
|
|
error = QtCore.pyqtSignal(str)
|
|
|
|
|
|
|
|
def __init__(self, mode):
|
|
|
|
super(WebThread, self).__init__()
|
|
|
|
self.mode = mode
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.common.log("WebThread", "__init__")
|
2018-09-17 23:55:54 -04:00
|
|
|
|
|
|
|
def run(self):
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.common.log("WebThread", "run")
|
2019-11-02 20:39:27 -04:00
|
|
|
self.mode.web.start(self.mode.app.port)
|
2019-03-04 18:28:27 -05:00
|
|
|
self.success.emit()
|
|
|
|
|
|
|
|
|
2019-03-25 00:28:31 -04:00
|
|
|
class AutoStartTimer(QtCore.QThread):
|
2019-03-04 18:28:27 -05:00
|
|
|
"""
|
|
|
|
Waits for a prescribed time before allowing a share to start
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2019-03-04 18:28:27 -05:00
|
|
|
success = QtCore.pyqtSignal()
|
|
|
|
error = QtCore.pyqtSignal(str)
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2019-03-04 18:28:27 -05:00
|
|
|
def __init__(self, mode, canceled=False):
|
2019-03-25 00:28:31 -04:00
|
|
|
super(AutoStartTimer, self).__init__()
|
2019-03-04 18:28:27 -05:00
|
|
|
self.mode = mode
|
|
|
|
self.canceled = canceled
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.common.log("AutoStartTimer", "__init__")
|
2019-03-04 18:28:27 -05:00
|
|
|
|
|
|
|
# allow this thread to be terminated
|
|
|
|
self.setTerminationEnabled()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
now = QtCore.QDateTime.currentDateTime()
|
2019-10-13 00:01:25 -04:00
|
|
|
autostart_timer_datetime_delta = now.secsTo(
|
|
|
|
self.mode.server_status.autostart_timer_datetime
|
|
|
|
)
|
2019-03-04 18:28:27 -05:00
|
|
|
try:
|
|
|
|
# Sleep until scheduled time
|
2019-03-25 00:28:31 -04:00
|
|
|
while autostart_timer_datetime_delta > 0 and self.canceled == False:
|
2019-03-04 18:28:27 -05:00
|
|
|
time.sleep(0.1)
|
|
|
|
now = QtCore.QDateTime.currentDateTime()
|
2019-10-13 00:01:25 -04:00
|
|
|
autostart_timer_datetime_delta = now.secsTo(
|
|
|
|
self.mode.server_status.autostart_timer_datetime
|
|
|
|
)
|
2019-03-04 18:28:27 -05:00
|
|
|
# Timer has now finished
|
|
|
|
if self.canceled == False:
|
2019-10-13 00:01:25 -04:00
|
|
|
self.mode.server_status.server_button.setText(
|
|
|
|
strings._("gui_please_wait")
|
|
|
|
)
|
|
|
|
self.mode.server_status_label.setText(
|
|
|
|
strings._("gui_status_indicator_share_working")
|
|
|
|
)
|
2019-03-04 18:28:27 -05:00
|
|
|
self.success.emit()
|
|
|
|
except ValueError as e:
|
|
|
|
self.error.emit(e.args[0])
|
|
|
|
return
|