2016-03-14 17:30:22 +01:00
|
|
|
import argparse
|
|
|
|
import logging
|
2016-04-07 09:12:09 +02:00
|
|
|
import logging.handlers
|
2016-04-02 04:06:06 +02:00
|
|
|
import subprocess
|
2016-03-22 15:37:13 +01:00
|
|
|
import os
|
|
|
|
import shutil
|
2016-04-02 04:06:06 +02:00
|
|
|
import webbrowser
|
|
|
|
import sys
|
2016-04-14 06:29:40 +02:00
|
|
|
import socket
|
|
|
|
|
2016-03-22 15:37:13 +01:00
|
|
|
from StringIO import StringIO
|
|
|
|
from zipfile import ZipFile
|
|
|
|
from urllib import urlopen
|
2016-04-02 04:06:06 +02:00
|
|
|
from datetime import datetime
|
|
|
|
from appdirs import user_data_dir
|
2016-03-22 05:03:17 +01:00
|
|
|
from twisted.web import server, static
|
2016-03-14 17:30:22 +01:00
|
|
|
from twisted.internet import reactor, defer
|
|
|
|
from jsonrpc.proxy import JSONRPCProxy
|
|
|
|
|
2016-04-20 20:44:26 +02:00
|
|
|
from lbrynet.lbrynet_daemon.LBRYDaemon import LBRYDaemon, LBRYindex, LBRYFileRender, LBRYBugReport
|
2016-04-02 04:06:06 +02:00
|
|
|
from lbrynet.conf import API_CONNECTION_STRING, API_INTERFACE, API_ADDRESS, API_PORT, DEFAULT_WALLET, UI_ADDRESS
|
2016-03-14 17:30:22 +01:00
|
|
|
|
2016-04-07 09:12:09 +02:00
|
|
|
if sys.platform != "darwin":
|
|
|
|
log_dir = os.path.join(os.path.expanduser("~"), ".lbrynet")
|
|
|
|
else:
|
|
|
|
log_dir = user_data_dir("LBRY")
|
|
|
|
|
2016-04-09 21:43:10 +02:00
|
|
|
if not os.path.isdir(log_dir):
|
|
|
|
os.mkdir(log_dir)
|
|
|
|
|
2016-04-07 09:12:09 +02:00
|
|
|
LOG_FILENAME = os.path.join(log_dir, 'lbrynet-daemon.log')
|
2016-03-14 17:30:22 +01:00
|
|
|
log = logging.getLogger(__name__)
|
2016-04-20 08:56:29 +02:00
|
|
|
handler = logging.handlers.RotatingFileHandler(LOG_FILENAME, maxBytes=2097152, backupCount=5)
|
2016-04-09 21:43:10 +02:00
|
|
|
log.addHandler(handler)
|
2016-04-16 01:37:27 +02:00
|
|
|
log.setLevel(logging.INFO)
|
2016-03-14 17:30:22 +01:00
|
|
|
|
2016-04-14 06:29:40 +02:00
|
|
|
REMOTE_SERVER = "www.google.com"
|
|
|
|
|
2016-04-16 01:37:27 +02:00
|
|
|
|
2016-04-14 06:29:40 +02:00
|
|
|
def test_internet_connection():
|
|
|
|
try:
|
|
|
|
host = socket.gethostbyname(REMOTE_SERVER)
|
|
|
|
s = socket.create_connection((host, 80), 2)
|
|
|
|
return True
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
|
2016-03-14 17:30:22 +01:00
|
|
|
|
|
|
|
def stop():
|
|
|
|
def _disp_shutdown():
|
|
|
|
log.info("Shutting down lbrynet-daemon from command line")
|
|
|
|
|
|
|
|
def _disp_not_running():
|
|
|
|
log.info("Attempt to shut down lbrynet-daemon from command line when daemon isn't running")
|
|
|
|
|
|
|
|
d = defer.Deferred(None)
|
|
|
|
d.addCallback(lambda _: JSONRPCProxy.from_url(API_CONNECTION_STRING).stop())
|
|
|
|
d.addCallbacks(lambda _: _disp_shutdown(), lambda _: _disp_not_running())
|
|
|
|
d.callback(None)
|
|
|
|
|
|
|
|
|
|
|
|
def start():
|
|
|
|
parser = argparse.ArgumentParser(description="Launch lbrynet-daemon")
|
|
|
|
parser.add_argument("--wallet",
|
|
|
|
help="lbrycrd or lbryum, default lbryum",
|
|
|
|
type=str,
|
|
|
|
default=DEFAULT_WALLET)
|
2016-03-26 02:03:58 +01:00
|
|
|
parser.add_argument("--ui",
|
2016-04-02 04:06:06 +02:00
|
|
|
help="path to custom UI folder",
|
|
|
|
default="")
|
2016-04-11 22:15:12 +02:00
|
|
|
parser.add_argument("--branch",
|
|
|
|
help="Branch of lbry-web-ui repo to use, defaults on HEAD",
|
|
|
|
default="HEAD")
|
2016-04-16 01:37:27 +02:00
|
|
|
parser.add_argument('--no-launch', dest='launchui', action="store_false")
|
2016-04-18 05:23:20 +02:00
|
|
|
parser.add_argument('--log-to-console', dest='logtoconsole', action="store_true")
|
|
|
|
parser.add_argument('--quiet', dest='quiet', action="store_true")
|
|
|
|
parser.set_defaults(launchui=True, logtoconsole=False, quiet=False)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if args.logtoconsole:
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
2016-03-14 17:30:22 +01:00
|
|
|
|
2016-04-18 02:16:35 +02:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2016-03-29 22:42:47 +02:00
|
|
|
try:
|
|
|
|
JSONRPCProxy.from_url(API_CONNECTION_STRING).is_running()
|
|
|
|
log.info("lbrynet-daemon is already running")
|
2016-04-18 02:16:35 +02:00
|
|
|
if args.launchui:
|
|
|
|
webbrowser.open(UI_ADDRESS)
|
2016-03-29 22:42:47 +02:00
|
|
|
return
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2016-03-14 17:30:22 +01:00
|
|
|
log.info("Starting lbrynet-daemon from command line")
|
|
|
|
|
2016-04-18 05:23:20 +02:00
|
|
|
if not args.logtoconsole and not args.quiet:
|
|
|
|
print "Starting lbrynet-daemon from command line"
|
|
|
|
print "To view activity, view the log file here: " + LOG_FILENAME
|
|
|
|
print "Web UI is available at http://%s:%i" %(API_INTERFACE, API_PORT)
|
|
|
|
print "JSONRPC API is available at " + API_CONNECTION_STRING
|
|
|
|
print "To quit press ctrl-c or call 'stop' via the API"
|
2016-04-02 04:06:06 +02:00
|
|
|
|
2016-04-11 22:15:12 +02:00
|
|
|
if args.branch == "HEAD":
|
|
|
|
GIT_CMD_STRING = "git ls-remote https://github.com/lbryio/lbry-web-ui.git | grep %s | cut -f 1" % args.branch
|
2016-04-13 08:52:41 +02:00
|
|
|
DIST_URL = "https://raw.githubusercontent.com/lbryio/lbry-web-ui/master/dist.zip"
|
2016-04-11 22:15:12 +02:00
|
|
|
else:
|
|
|
|
log.info("Using UI branch: " + args.branch)
|
|
|
|
GIT_CMD_STRING = "git ls-remote https://github.com/lbryio/lbry-web-ui.git | grep refs/heads/%s | cut -f 1" % args.branch
|
2016-04-13 08:52:41 +02:00
|
|
|
DIST_URL = "https://raw.githubusercontent.com/lbryio/lbry-web-ui/%s/dist.zip" % args.branch
|
2016-04-11 22:15:12 +02:00
|
|
|
|
2016-04-02 04:06:06 +02:00
|
|
|
def getui(ui_dir=None):
|
|
|
|
if ui_dir:
|
|
|
|
if os.path.isdir(ui_dir):
|
|
|
|
log.info("Using user specified UI directory: " + str(ui_dir))
|
2016-04-12 04:28:46 +02:00
|
|
|
ui_version_info = "user-specified"
|
|
|
|
return defer.succeed([ui_dir, ui_version_info])
|
2016-04-02 04:06:06 +02:00
|
|
|
else:
|
|
|
|
log.info("User specified UI directory doesn't exist: " + str(ui_dir))
|
|
|
|
|
2016-04-12 04:28:46 +02:00
|
|
|
def download_ui(dest_dir, ui_version):
|
2016-04-11 22:15:12 +02:00
|
|
|
url = urlopen(DIST_URL)
|
2016-04-02 04:06:06 +02:00
|
|
|
z = ZipFile(StringIO(url.read()))
|
2016-04-11 22:15:12 +02:00
|
|
|
names = [i for i in z.namelist() if '.DS_Store' not in i and '__MACOSX' not in i]
|
|
|
|
z.extractall(dest_dir, members=names)
|
2016-04-12 04:28:46 +02:00
|
|
|
return defer.succeed([dest_dir, ui_version])
|
2016-04-02 04:06:06 +02:00
|
|
|
|
|
|
|
data_dir = user_data_dir("LBRY")
|
|
|
|
version_dir = os.path.join(data_dir, "ui_version_history")
|
|
|
|
|
2016-04-11 22:15:12 +02:00
|
|
|
git_version = subprocess.check_output(GIT_CMD_STRING, shell=True)
|
2016-04-14 06:29:40 +02:00
|
|
|
if not git_version:
|
|
|
|
log.info("You should have been notified to install xcode command line tools, once it's installed you can start LBRY")
|
2016-04-16 01:37:27 +02:00
|
|
|
print "You should have been notified to install xcode command line tools, once it's installed you can start LBRY"
|
2016-04-14 06:29:40 +02:00
|
|
|
sys.exit(0)
|
|
|
|
|
2016-04-12 04:28:46 +02:00
|
|
|
ui_version_info = git_version
|
2016-04-02 04:06:06 +02:00
|
|
|
|
|
|
|
if not os.path.isdir(data_dir):
|
|
|
|
os.mkdir(data_dir)
|
|
|
|
|
|
|
|
if not os.path.isdir(os.path.join(data_dir, "ui_version_history")):
|
|
|
|
os.mkdir(version_dir)
|
|
|
|
|
|
|
|
if not os.path.isfile(os.path.join(version_dir, git_version)):
|
2016-04-14 06:29:40 +02:00
|
|
|
f = open(os.path.join(version_dir, git_version), "w")
|
|
|
|
version_message = "[" + str(datetime.now()) + "] Updating UI --> " + git_version
|
|
|
|
f.write(version_message)
|
|
|
|
f.close()
|
|
|
|
log.info(version_message)
|
2016-04-02 04:06:06 +02:00
|
|
|
|
|
|
|
if os.path.isdir(os.path.join(data_dir, "lbry-web-ui")):
|
|
|
|
shutil.rmtree(os.path.join(data_dir, "lbry-web-ui"))
|
|
|
|
else:
|
|
|
|
version_message = "[" + str(datetime.now()) + "] UI version " + git_version + " up to date"
|
|
|
|
log.info(version_message)
|
|
|
|
|
|
|
|
if os.path.isdir(os.path.join(data_dir, "lbry-web-ui")):
|
2016-04-12 04:28:46 +02:00
|
|
|
return defer.succeed([os.path.join(data_dir, "lbry-web-ui"), ui_version_info])
|
2016-04-02 04:06:06 +02:00
|
|
|
else:
|
2016-04-12 04:28:46 +02:00
|
|
|
return download_ui(os.path.join(data_dir, "lbry-web-ui"), ui_version_info)
|
2016-04-02 04:06:06 +02:00
|
|
|
|
2016-04-12 04:28:46 +02:00
|
|
|
def setupserver(ui_dir, ui_version):
|
2016-04-02 04:06:06 +02:00
|
|
|
root = LBRYindex(ui_dir)
|
|
|
|
root.putChild("css", static.File(os.path.join(ui_dir, "css")))
|
|
|
|
root.putChild("font", static.File(os.path.join(ui_dir, "font")))
|
|
|
|
root.putChild("img", static.File(os.path.join(ui_dir, "img")))
|
|
|
|
root.putChild("js", static.File(os.path.join(ui_dir, "js")))
|
|
|
|
root.putChild("view", LBRYFileRender())
|
2016-04-20 20:44:26 +02:00
|
|
|
root.putChild("report", LBRYBugReport())
|
2016-04-12 04:28:46 +02:00
|
|
|
return defer.succeed([root, ui_version])
|
2016-04-02 04:06:06 +02:00
|
|
|
|
2016-04-12 04:28:46 +02:00
|
|
|
def setupapi(root, wallet, ui_version):
|
2016-04-12 08:03:57 +02:00
|
|
|
daemon = LBRYDaemon(ui_version, wallet_type=wallet)
|
2016-04-02 04:06:06 +02:00
|
|
|
root.putChild(API_ADDRESS, daemon)
|
|
|
|
reactor.listenTCP(API_PORT, server.Site(root), interface=API_INTERFACE)
|
2016-04-12 04:28:46 +02:00
|
|
|
return daemon.setup()
|
2016-04-02 04:06:06 +02:00
|
|
|
|
2016-04-14 06:29:40 +02:00
|
|
|
if test_internet_connection():
|
|
|
|
d = getui(args.ui)
|
|
|
|
d.addCallback(lambda r: setupserver(r[0], r[1]))
|
|
|
|
d.addCallback(lambda r: setupapi(r[0], args.wallet, r[1]))
|
2016-04-16 01:37:27 +02:00
|
|
|
if args.launchui:
|
|
|
|
d.addCallback(lambda _: webbrowser.open(UI_ADDRESS))
|
2016-04-14 06:29:40 +02:00
|
|
|
reactor.run()
|
2016-04-18 05:23:20 +02:00
|
|
|
if not args.logtoconsole and not args.quiet:
|
|
|
|
print "\nClosing lbrynet-daemon"
|
2016-04-14 06:29:40 +02:00
|
|
|
else:
|
|
|
|
log.info("Not connected to internet, unable to start")
|
2016-04-16 01:37:27 +02:00
|
|
|
print "Not connected to internet, unable to start"
|
2016-04-14 06:29:40 +02:00
|
|
|
return
|