2014-08-14 10:37:33 -04:00
|
|
|
from __future__ import division
|
2014-08-27 20:52:45 -04:00
|
|
|
import os, sys, subprocess, inspect, platform, argparse, threading, time, math, inspect, platform, urllib2
|
2014-08-14 10:37:33 -04:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2014-06-19 16:19:46 -04:00
|
|
|
|
2014-08-27 17:21:08 -04:00
|
|
|
import common
|
2014-06-22 00:54:44 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
import onionshare
|
|
|
|
except ImportError:
|
2014-08-27 17:21:08 -04:00
|
|
|
sys.path.append(os.path.abspath(common.onionshare_gui_dir+"/.."))
|
2014-06-22 00:54:44 -04:00
|
|
|
import onionshare
|
2014-08-26 22:04:39 -04:00
|
|
|
from onionshare import strings, helpers, web
|
2014-08-14 10:37:33 -04:00
|
|
|
|
2014-08-27 17:21:08 -04:00
|
|
|
from file_selection import FileSelection
|
2014-08-27 19:11:43 -04:00
|
|
|
from server_status import ServerStatus
|
2014-08-27 19:43:18 -04:00
|
|
|
from downloads import Downloads
|
2014-08-27 19:46:19 -04:00
|
|
|
from options import Options
|
2014-08-27 17:21:08 -04:00
|
|
|
|
2014-08-14 10:37:33 -04:00
|
|
|
class Application(QtGui.QApplication):
|
2014-06-19 23:00:36 -04:00
|
|
|
def __init__(self):
|
2014-08-26 22:04:39 -04:00
|
|
|
platform = helpers.get_platform()
|
2014-06-19 23:00:36 -04:00
|
|
|
if platform == 'Tails' or platform == 'Linux':
|
2014-08-14 10:37:33 -04:00
|
|
|
self.setAttribute(QtCore.Qt.AA_X11InitThreads, True)
|
|
|
|
QtGui.QApplication.__init__(self, sys.argv)
|
2014-06-19 21:16:22 -04:00
|
|
|
|
2014-08-14 10:37:33 -04:00
|
|
|
class OnionShareGui(QtGui.QWidget):
|
2014-08-27 20:24:44 -04:00
|
|
|
def __init__(self, app):
|
2014-08-14 10:37:33 -04:00
|
|
|
super(OnionShareGui, self).__init__()
|
2014-08-26 22:04:39 -04:00
|
|
|
self.app = app
|
2014-08-27 17:21:08 -04:00
|
|
|
|
|
|
|
self.setWindowTitle('OnionShare')
|
|
|
|
self.setWindowIcon(window_icon)
|
|
|
|
|
2014-08-27 20:52:45 -04:00
|
|
|
def send_files(self, filenames=None):
|
2014-08-27 17:21:08 -04:00
|
|
|
# file selection
|
|
|
|
file_selection = FileSelection()
|
2014-08-27 20:24:44 -04:00
|
|
|
if filenames:
|
|
|
|
for filename in filenames:
|
2014-08-27 17:21:08 -04:00
|
|
|
file_selection.file_list.add_file(filename)
|
|
|
|
|
2014-08-27 19:11:43 -04:00
|
|
|
# server status
|
2014-08-27 20:52:45 -04:00
|
|
|
self.server_status = ServerStatus(file_selection)
|
|
|
|
self.server_status.server_started.connect(file_selection.server_started)
|
|
|
|
self.server_status.server_started.connect(self.start_server)
|
|
|
|
self.server_status.server_stopped.connect(file_selection.server_stopped)
|
|
|
|
self.server_status.server_stopped.connect(self.stop_server)
|
|
|
|
file_selection.file_list.files_updated.connect(self.server_status.update)
|
2014-08-27 19:11:43 -04:00
|
|
|
|
2014-08-27 19:43:18 -04:00
|
|
|
# downloads
|
|
|
|
downloads = Downloads()
|
|
|
|
|
2014-08-27 19:46:19 -04:00
|
|
|
# options
|
2014-08-27 20:27:54 -04:00
|
|
|
options = Options(web.stay_open)
|
2014-08-27 19:46:19 -04:00
|
|
|
|
2014-08-27 17:21:08 -04:00
|
|
|
# main layout
|
|
|
|
self.layout = QtGui.QVBoxLayout()
|
|
|
|
self.layout.addLayout(file_selection)
|
2014-08-27 20:52:45 -04:00
|
|
|
self.layout.addLayout(self.server_status)
|
2014-08-27 19:43:18 -04:00
|
|
|
self.layout.addLayout(downloads)
|
2014-08-27 19:46:19 -04:00
|
|
|
self.layout.addLayout(options)
|
2014-08-27 17:21:08 -04:00
|
|
|
self.setLayout(self.layout)
|
|
|
|
self.show()
|
2014-08-26 22:04:39 -04:00
|
|
|
|
2014-08-27 20:52:45 -04:00
|
|
|
def start_server(self):
|
|
|
|
# start the hidden service
|
|
|
|
try:
|
|
|
|
self.app.start_hidden_service(gui=True)
|
|
|
|
except onionshare.NoTor as e:
|
|
|
|
alert(e.args[0], QtGui.QMessageBox.Warning)
|
|
|
|
self.server_status.stop_server()
|
|
|
|
return
|
|
|
|
except onionshare.TailsError as e:
|
|
|
|
alert(e.args[0], QtGui.QMessageBox.Warning)
|
|
|
|
self.server_status.stop_server()
|
|
|
|
return
|
2014-08-14 10:37:33 -04:00
|
|
|
|
|
|
|
# start onionshare service in new thread
|
2014-08-26 22:04:39 -04:00
|
|
|
t = threading.Thread(target=web.start, args=(self.app.port, self.app.stay_open))
|
2014-08-14 10:37:33 -04:00
|
|
|
t.daemon = True
|
|
|
|
t.start()
|
|
|
|
|
2014-08-27 20:52:45 -04:00
|
|
|
def stop_server(self):
|
|
|
|
# to stop flask, load http://127.0.0.1:<port>/<shutdown_slug>/shutdown
|
|
|
|
urllib2.urlopen('http://127.0.0.1:{0}/{1}/shutdown'.format(self.app.port, web.shutdown_slug)).read()
|
2014-08-14 10:37:33 -04:00
|
|
|
|
|
|
|
def alert(msg, icon=QtGui.QMessageBox.NoIcon):
|
|
|
|
dialog = QtGui.QMessageBox()
|
2014-06-19 20:28:55 -04:00
|
|
|
dialog.setWindowTitle("OnionShare")
|
2014-06-20 21:15:46 -04:00
|
|
|
dialog.setWindowIcon(window_icon)
|
2014-06-19 16:51:40 -04:00
|
|
|
dialog.setText(msg)
|
|
|
|
dialog.setIcon(icon)
|
|
|
|
dialog.exec_()
|
2014-05-30 20:46:24 -04:00
|
|
|
|
2014-05-29 21:05:30 -04:00
|
|
|
def main():
|
2014-08-26 22:04:39 -04:00
|
|
|
strings.load_strings()
|
2014-05-30 20:46:24 -04:00
|
|
|
|
2014-06-20 00:13:55 -04:00
|
|
|
# start the Qt app
|
2014-08-26 22:04:39 -04:00
|
|
|
global qtapp
|
|
|
|
qtapp = Application()
|
2014-06-20 00:13:55 -04:00
|
|
|
|
2014-06-26 14:22:32 -04:00
|
|
|
# parse arguments
|
|
|
|
parser = argparse.ArgumentParser()
|
2014-08-26 22:04:39 -04: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"))
|
|
|
|
parser.add_argument('--debug', action='store_true', dest='debug', help=strings._("help_debug"))
|
2014-08-27 17:21:08 -04:00
|
|
|
parser.add_argument('--filenames', metavar='filenames', nargs='+', help=strings._('help_filename'))
|
2014-06-26 14:22:32 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2014-08-27 17:21:08 -04:00
|
|
|
filenames = args.filenames
|
|
|
|
if filenames:
|
|
|
|
for i in range(len(filenames)):
|
|
|
|
filenames[i] = os.path.abspath(filenames[i])
|
|
|
|
|
2014-07-07 18:53:32 -04:00
|
|
|
local_only = bool(args.local_only)
|
2014-06-26 14:45:18 -04:00
|
|
|
stay_open = bool(args.stay_open)
|
2014-06-26 19:02:59 -04:00
|
|
|
debug = bool(args.debug)
|
2014-06-26 14:22:32 -04:00
|
|
|
|
2014-08-27 17:21:08 -04:00
|
|
|
# validation
|
|
|
|
if filenames:
|
|
|
|
valid = True
|
|
|
|
for filename in filenames:
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
alert(strings._("not_a_file").format(filename))
|
|
|
|
valid = False
|
|
|
|
if not valid:
|
|
|
|
sys.exit()
|
2014-08-20 17:30:28 -04:00
|
|
|
|
2014-06-20 21:15:46 -04:00
|
|
|
# create the onionshare icon
|
2014-08-26 22:04:39 -04:00
|
|
|
global window_icon
|
2014-08-27 17:21:08 -04:00
|
|
|
window_icon = QtGui.QIcon("{0}/static/logo.png".format(common.onionshare_gui_dir))
|
2014-08-26 22:04:39 -04:00
|
|
|
|
|
|
|
# start the onionshare app
|
2014-08-27 17:21:08 -04:00
|
|
|
web.set_stay_open(stay_open)
|
|
|
|
app = onionshare.OnionShare(debug, local_only, stay_open)
|
|
|
|
|
2014-06-20 00:13:55 -04:00
|
|
|
# clean up when app quits
|
|
|
|
def shutdown():
|
2014-08-26 22:04:39 -04:00
|
|
|
app.cleanup()
|
|
|
|
qtapp.connect(qtapp, QtCore.SIGNAL("aboutToQuit()"), shutdown)
|
2014-06-20 00:13:55 -04:00
|
|
|
|
2014-08-14 10:37:33 -04:00
|
|
|
# launch the gui
|
2014-08-27 20:24:44 -04:00
|
|
|
gui = OnionShareGui(app)
|
2014-08-27 20:52:45 -04:00
|
|
|
gui.send_files(filenames)
|
2014-06-19 21:46:22 -04:00
|
|
|
|
|
|
|
# all done
|
2014-08-26 22:04:39 -04:00
|
|
|
sys.exit(qtapp.exec_())
|
2014-05-29 21:05:30 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|