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/>.
|
|
|
|
"""
|
2017-01-06 22:00:08 -05:00
|
|
|
from __future__ import division
|
2017-04-17 22:36:02 -04:00
|
|
|
import os, sys, platform, argparse
|
2017-05-18 04:09:49 -04:00
|
|
|
from .alert import Alert
|
2017-04-17 22:36:02 -04:00
|
|
|
from PyQt5 import QtCore, QtWidgets
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2017-05-16 14:05:48 -04:00
|
|
|
from onionshare import strings, common, web
|
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-04-17 23:26:35 -04:00
|
|
|
from onionshare.settings import Settings
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2017-04-17 22:36:02 -04:00
|
|
|
from .onionshare_gui import OnionShareGui
|
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.
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
2017-04-15 22:07:02 -04:00
|
|
|
system = platform.system()
|
|
|
|
if system == 'Linux':
|
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):
|
|
|
|
if (event.type() == QtCore.QEvent.KeyPress and
|
|
|
|
event.key() == QtCore.Qt.Key_Q and
|
|
|
|
event.modifiers() == QtCore.Qt.ControlModifier):
|
|
|
|
self.quit()
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""
|
|
|
|
The main() function implements all of the logic that the GUI version of onionshare uses.
|
|
|
|
"""
|
2017-05-16 14:05:48 -04:00
|
|
|
strings.load_strings(common)
|
|
|
|
print(strings._('version_string').format(common.get_version()))
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Start the Qt app
|
2017-01-06 22:00:08 -05:00
|
|
|
global qtapp
|
|
|
|
qtapp = Application()
|
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Parse arguments
|
2017-11-11 18:40:04 -05:00
|
|
|
parser = argparse.ArgumentParser(formatter_class=lambda prog: argparse.HelpFormatter(prog,max_help_position=48))
|
2017-01-06 22:00:08 -05:00
|
|
|
parser.add_argument('--local-only', action='store_true', dest='local_only', help=strings._("help_local_only"))
|
|
|
|
parser.add_argument('--stay-open', action='store_true', dest='stay_open', help=strings._("help_stay_open"))
|
2017-11-11 01:12:10 -05:00
|
|
|
parser.add_argument('--shutdown-timeout', metavar='<int>', dest='shutdown_timeout', default=0, help=strings._("help_shutdown_timeout"))
|
2017-01-06 22:00:08 -05:00
|
|
|
parser.add_argument('--debug', action='store_true', dest='debug', help=strings._("help_debug"))
|
|
|
|
parser.add_argument('--filenames', metavar='filenames', nargs='+', help=strings._('help_filename'))
|
2017-06-01 03:35:27 -04:00
|
|
|
parser.add_argument('--config', metavar='config', default=False, help=strings._('help_config'))
|
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
|
|
|
|
|
2017-01-06 22:00:08 -05:00
|
|
|
local_only = bool(args.local_only)
|
|
|
|
stay_open = bool(args.stay_open)
|
2017-11-09 03:50:50 -05:00
|
|
|
shutdown_timeout = int(args.shutdown_timeout)
|
2017-01-06 22:00:08 -05:00
|
|
|
debug = bool(args.debug)
|
|
|
|
|
2017-05-16 14:12:55 -04:00
|
|
|
# Debug mode?
|
|
|
|
if debug:
|
|
|
|
common.set_debug(debug)
|
|
|
|
web.debug_mode()
|
|
|
|
|
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):
|
2017-01-06 22:00:08 -05:00
|
|
|
Alert(strings._("not_a_file", True).format(filename))
|
|
|
|
valid = False
|
2017-05-18 04:09:49 -04:00
|
|
|
if not os.access(filename, os.R_OK):
|
|
|
|
Alert(strings._("not_a_readable_file", True).format(filename))
|
|
|
|
valid = False
|
2017-01-06 22:00:08 -05:00
|
|
|
if not valid:
|
|
|
|
sys.exit()
|
|
|
|
|
2017-04-17 23:26:35 -04:00
|
|
|
# Start the Onion
|
2017-05-16 14:12:55 -04:00
|
|
|
onion = Onion()
|
2017-04-17 23:49:50 -04:00
|
|
|
|
2017-04-17 22:38:42 -04:00
|
|
|
# Start the OnionShare app
|
2017-01-06 22:00:08 -05:00
|
|
|
web.set_stay_open(stay_open)
|
2017-11-08 04:25:59 -05:00
|
|
|
app = OnionShare(onion, local_only, stay_open, shutdown_timeout)
|
2017-01-06 22:00:08 -05:00
|
|
|
|
2017-05-14 21:30:45 -04:00
|
|
|
# Launch the gui
|
2017-06-01 03:35:27 -04:00
|
|
|
gui = OnionShareGui(onion, qtapp, app, filenames, config)
|
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()
|
|
|
|
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_())
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|