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 22:07:15 -04:00
|
|
|
def __init__(self, qtapp, app):
|
2014-08-14 10:37:33 -04:00
|
|
|
super(OnionShareGui, self).__init__()
|
2014-08-27 22:07:15 -04:00
|
|
|
self.qtapp = qtapp
|
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
|
2014-08-27 22:07:15 -04:00
|
|
|
self.file_selection = FileSelection()
|
2014-08-27 20:24:44 -04:00
|
|
|
if filenames:
|
|
|
|
for filename in filenames:
|
2014-08-27 22:07:15 -04:00
|
|
|
self.file_selection.file_list.add_file(filename)
|
2014-08-27 17:21:08 -04:00
|
|
|
|
2014-08-27 19:11:43 -04:00
|
|
|
# server status
|
2014-08-27 22:07:15 -04:00
|
|
|
self.server_status = ServerStatus(self.qtapp, self.app, web, self.file_selection)
|
|
|
|
self.server_status.server_started.connect(self.file_selection.server_started)
|
2014-08-27 20:52:45 -04:00
|
|
|
self.server_status.server_started.connect(self.start_server)
|
2014-08-27 22:07:15 -04:00
|
|
|
self.server_status.server_stopped.connect(self.file_selection.server_stopped)
|
2014-08-27 20:52:45 -04:00
|
|
|
self.server_status.server_stopped.connect(self.stop_server)
|
2014-08-27 22:07:15 -04:00
|
|
|
self.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
|
2014-08-28 02:52:56 -04:00
|
|
|
self.downloads = Downloads()
|
2014-08-27 19:43:18 -04:00
|
|
|
|
2014-08-27 19:46:19 -04:00
|
|
|
# options
|
2014-08-28 02:52:56 -04:00
|
|
|
self.options = Options(web)
|
2014-08-27 19:46:19 -04:00
|
|
|
|
2014-08-27 17:21:08 -04:00
|
|
|
# main layout
|
|
|
|
self.layout = QtGui.QVBoxLayout()
|
2014-08-27 22:07:15 -04:00
|
|
|
self.layout.addLayout(self.file_selection)
|
2014-08-27 20:52:45 -04:00
|
|
|
self.layout.addLayout(self.server_status)
|
2014-08-28 02:52:56 -04:00
|
|
|
self.layout.addLayout(self.downloads)
|
|
|
|
self.layout.addLayout(self.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-28 02:52:56 -04:00
|
|
|
# check for requests frequently
|
|
|
|
self.timer = QtCore.QTimer()
|
|
|
|
QtCore.QObject.connect(self.timer, QtCore.SIGNAL("timeout()"), self.check_for_requests)
|
|
|
|
self.timer.start(500)
|
|
|
|
|
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-28 02:52:56 -04:00
|
|
|
t = threading.Thread(target=web.start, args=(self.app.port, self.app.stay_open, True))
|
2014-08-14 10:37:33 -04:00
|
|
|
t.daemon = True
|
|
|
|
t.start()
|
|
|
|
|
2014-08-27 22:07:15 -04:00
|
|
|
# prepare the files for sending
|
|
|
|
web.set_file_info(self.file_selection.file_list.filenames)
|
|
|
|
self.app.cleanup_filenames.append(web.zip_filename)
|
|
|
|
|
|
|
|
self.server_status.start_server_finished()
|
|
|
|
|
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
|
2014-08-28 03:01:55 -04:00
|
|
|
try:
|
|
|
|
urllib2.urlopen('http://127.0.0.1:{0}/{1}/shutdown'.format(self.app.port, web.shutdown_slug)).read()
|
|
|
|
except:
|
|
|
|
pass
|
2014-08-27 22:07:15 -04:00
|
|
|
self.app.cleanup()
|
|
|
|
|
|
|
|
self.server_status.stop_server_finished()
|
2014-08-14 10:37:33 -04:00
|
|
|
|
2014-08-28 02:52:56 -04:00
|
|
|
def check_for_requests(self):
|
|
|
|
self.update()
|
|
|
|
# only check for requests if the server is running
|
|
|
|
if self.server_status.status != self.server_status.STATUS_STARTED:
|
|
|
|
return
|
|
|
|
|
|
|
|
events = []
|
|
|
|
|
|
|
|
done = False
|
|
|
|
while not done:
|
|
|
|
try:
|
|
|
|
r = web.q.get(False)
|
|
|
|
events.append(r)
|
|
|
|
except web.Queue.Empty:
|
|
|
|
done = True
|
|
|
|
|
|
|
|
for event in events:
|
|
|
|
#if event["path"] != '/favicon.ico':
|
|
|
|
# pass
|
|
|
|
#if event["type"] == web.REQUEST_LOAD:
|
|
|
|
# pass
|
|
|
|
|
|
|
|
if event["type"] == web.REQUEST_DOWNLOAD:
|
|
|
|
self.downloads.add_download(event["data"]["id"], web.zip_filesize)
|
|
|
|
|
|
|
|
elif event["type"] == web.REQUEST_PROGRESS:
|
|
|
|
self.downloads.update_download(event["data"]["id"], web.zip_filesize, event["data"]["bytes"])
|
|
|
|
|
|
|
|
# is the download complete?
|
|
|
|
if event["data"]["bytes"] == web.zip_filesize:
|
|
|
|
# close on finish?
|
|
|
|
if not web.get_stay_open():
|
|
|
|
self.server_status.stop_server()
|
|
|
|
|
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 22:07:15 -04:00
|
|
|
gui = OnionShareGui(qtapp, 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()
|