2014-09-02 20:30:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2018-04-24 13:07:59 -04:00
|
|
|
Copyright (C) 2014-2018 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/>.
|
|
|
|
"""
|
2017-01-06 22:00:08 -05:00
|
|
|
from __future__ import division
|
2018-09-21 02:09:14 -04:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import platform
|
|
|
|
import argparse
|
|
|
|
import signal
|
2019-10-20 22:18:56 -04:00
|
|
|
import psutil
|
2017-04-17 22:36:02 -04:00
|
|
|
from PyQt5 import QtCore, QtWidgets
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2018-03-08 13:18:31 -05:00
|
|
|
from onionshare.common import Common
|
2017-04-17 23:49:50 -04:00
|
|
|
from onionshare.onion import Onion
|
2017-04-17 22:36:02 -04:00
|
|
|
from onionshare.onionshare import OnionShare
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2019-10-20 23:01:09 -04:00
|
|
|
from .gui_common import GuiCommon
|
2019-10-20 22:18:56 -04:00
|
|
|
from .widgets import Alert
|
2019-10-20 22:41:20 -04:00
|
|
|
from .main_window import MainWindow
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2017-01-06 22:00:08 -05:00
|
|
|
class Application(QtWidgets.QApplication):
|
|
|
|
"""
|
|
|
|
This is Qt's QApplication class. It has been overridden to support threads
|
|
|
|
and the quick keyboard shortcut.
|
|
|
|
"""
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2018-03-08 13:18:31 -05:00
|
|
|
def __init__(self, common):
|
2019-10-13 00:01:25 -04:00
|
|
|
if common.platform == "Linux" or common.platform == "BSD":
|
2017-01-06 22:00:08 -05:00
|
|
|
self.setAttribute(QtCore.Qt.AA_X11InitThreads, True)
|
|
|
|
QtWidgets.QApplication.__init__(self, sys.argv)
|
|
|
|
self.installEventFilter(self)
|
|
|
|
|
|
|
|
def eventFilter(self, obj, event):
|
2019-10-13 00:01:25 -04:00
|
|
|
if (
|
|
|
|
event.type() == QtCore.QEvent.KeyPress
|
|
|
|
and event.key() == QtCore.Qt.Key_Q
|
|
|
|
and event.modifiers() == QtCore.Qt.ControlModifier
|
|
|
|
):
|
|
|
|
self.quit()
|
2017-01-06 22:00:08 -05:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""
|
|
|
|
The main() function implements all of the logic that the GUI version of onionshare uses.
|
|
|
|
"""
|
2018-03-08 13:18:31 -05:00
|
|
|
common = Common()
|
2019-10-20 23:01:09 -04:00
|
|
|
common.gui = GuiCommon(common)
|
2018-03-08 13:18:31 -05:00
|
|
|
|
2018-09-30 20:06:29 -04:00
|
|
|
# Display OnionShare banner
|
2019-10-20 13:30:16 -04:00
|
|
|
print(f"OnionShare {common.version} | https://onionshare.org/")
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2018-09-21 02:09:14 -04:00
|
|
|
# Allow Ctrl-C to smoothly quit the program instead of throwing an exception
|
|
|
|
# https://stackoverflow.com/questions/42814093/how-to-handle-ctrlc-in-python-app-with-pyqt
|
|
|
|
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Start the Qt app
|
2017-01-06 22:00:08 -05:00
|
|
|
global qtapp
|
2018-03-08 13:18:31 -05:00
|
|
|
qtapp = Application(common)
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Parse arguments
|
2019-10-13 00:01:25 -04:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
formatter_class=lambda prog: argparse.HelpFormatter(prog, max_help_position=48)
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--local-only",
|
|
|
|
action="store_true",
|
|
|
|
dest="local_only",
|
|
|
|
help="Don't use Tor (only for development)",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-v",
|
|
|
|
"--verbose",
|
|
|
|
action="store_true",
|
|
|
|
dest="verbose",
|
|
|
|
help="Log OnionShare errors to stdout, and web errors to disk",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--filenames",
|
|
|
|
metavar="filenames",
|
|
|
|
nargs="+",
|
|
|
|
help="List of files or folders to share",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--config",
|
|
|
|
metavar="config",
|
|
|
|
default=False,
|
|
|
|
help="Custom JSON config file location (optional)",
|
|
|
|
)
|
2017-01-06 22:00:08 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
filenames = args.filenames
|
|
|
|
if filenames:
|
|
|
|
for i in range(len(filenames)):
|
|
|
|
filenames[i] = os.path.abspath(filenames[i])
|
|
|
|
|
2017-06-01 03:35:27 -04:00
|
|
|
config = args.config
|
2018-10-01 01:32:53 -04:00
|
|
|
if config:
|
|
|
|
common.load_settings(config)
|
2017-06-01 03:35:27 -04:00
|
|
|
|
2017-01-06 22:00:08 -05:00
|
|
|
local_only = bool(args.local_only)
|
2019-04-18 22:53:21 -04:00
|
|
|
verbose = bool(args.verbose)
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2019-04-18 22:53:21 -04:00
|
|
|
# Verbose mode?
|
|
|
|
common.verbose = verbose
|
2017-05-16 14:12:55 -04:00
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Validation
|
2017-01-06 22:00:08 -05:00
|
|
|
if filenames:
|
|
|
|
valid = True
|
|
|
|
for filename in filenames:
|
2018-01-01 17:36:57 -05:00
|
|
|
if not os.path.isfile(filename) and not os.path.isdir(filename):
|
2019-10-20 13:30:16 -04:00
|
|
|
Alert(common, f"{filename} is not a valid file.")
|
2017-01-06 22:00:08 -05:00
|
|
|
valid = False
|
2017-05-18 04:09:49 -04:00
|
|
|
if not os.access(filename, os.R_OK):
|
2019-10-20 13:30:16 -04:00
|
|
|
Alert(common, f"{filename} is not a readable file.")
|
2017-05-18 04:09:49 -04:00
|
|
|
valid = False
|
2017-01-06 22:00:08 -05:00
|
|
|
if not valid:
|
|
|
|
sys.exit()
|
|
|
|
|
2019-10-20 22:18:56 -04:00
|
|
|
# Is there another onionshare-gui running?
|
|
|
|
existing_pid = None
|
|
|
|
for proc in psutil.process_iter(attrs=["pid", "name", "cmdline"]):
|
|
|
|
if proc.info["pid"] == os.getpid():
|
|
|
|
continue
|
|
|
|
|
|
|
|
if proc.info["name"] == "onionshare-gui":
|
|
|
|
existing_pid = proc.info["pid"]
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# Dev mode onionshare?
|
|
|
|
if proc.info["cmdline"] and len(proc.info["cmdline"]) >= 2:
|
|
|
|
if (
|
|
|
|
os.path.basename(proc.info["cmdline"][0]).lower() == "python"
|
|
|
|
and os.path.basename(proc.info["cmdline"][1]) == "onionshare-gui"
|
|
|
|
):
|
|
|
|
existing_pid = proc.info["pid"]
|
|
|
|
break
|
|
|
|
|
|
|
|
if existing_pid:
|
|
|
|
print(f"Opening tab in existing OnionShare window (pid {proc.info['pid']})")
|
|
|
|
# TODO: open tab
|
|
|
|
return
|
|
|
|
|
2017-04-17 23:26:35 -04:00
|
|
|
# Start the Onion
|
2018-03-08 13:18:31 -05:00
|
|
|
onion = Onion(common)
|
2017-04-17 23:49:50 -04:00
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Start the OnionShare app
|
2018-05-04 19:43:30 -04:00
|
|
|
app = OnionShare(common, onion, local_only)
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2017-05-14 21:30:45 -04:00
|
|
|
# Launch the gui
|
2019-10-20 22:41:20 -04:00
|
|
|
gui = MainWindow(common, onion, qtapp, app, filenames, config, local_only)
|
2017-05-14 21:30:45 -04:00
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Clean up when app quits
|
2017-01-06 22:00:08 -05:00
|
|
|
def shutdown():
|
2017-04-17 23:26:35 -04:00
|
|
|
onion.cleanup()
|
2017-01-06 22:00:08 -05:00
|
|
|
app.cleanup()
|
2019-10-13 00:01:25 -04:00
|
|
|
|
2017-01-06 22:00:08 -05:00
|
|
|
qtapp.aboutToQuit.connect(shutdown)
|
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# All done
|
2017-01-06 22:00:08 -05:00
|
|
|
sys.exit(qtapp.exec_())
|
|
|
|
|
2019-10-13 00:01:25 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2017-01-06 22:00:08 -05:00
|
|
|
main()
|