Raise exception if lbry_file can't be found

This commit is contained in:
Job Evers 2017-01-02 19:46:40 -06:00
parent 5233dc303e
commit 6faee910de

View file

@ -1565,6 +1565,7 @@ class Daemon(AuthJSONRPCServer):
defer.returnValue(response) defer.returnValue(response)
@AuthJSONRPCServer.auth_required @AuthJSONRPCServer.auth_required
@defer.inlineCallbacks
def jsonrpc_stop_lbry_file(self, p): def jsonrpc_stop_lbry_file(self, p):
""" """
Stop lbry file Stop lbry file
@ -1576,25 +1577,16 @@ class Daemon(AuthJSONRPCServer):
Returns: Returns:
confirmation message confirmation message
""" """
searchtype, value = get_lbry_file_search_value(p)
def _stop_file(f): lbry_file = yield self._get_lbry_file(searchtype, value, return_json=False)
if f.stopped: if not lbry_file:
return "LBRY file wasn't running" raise Exception('Unable to find a file for {}:{}'.format(searchtype, value))
else: if lbry_file.stopped:
d = self.lbry_file_manager.toggle_lbry_file_running(f) msg = "LBRY file wasn't running"
d.addCallback(lambda _: "Stopped LBRY file")
return d
try:
searchtype, value = get_lbry_file_search_value(p)
except NoValidSearch:
d = defer.fail()
else: else:
d = self._get_lbry_file(searchtype, value, return_json=False) yield self.lbry_file_manager.toggle_lbry_file_running(lbry_file)
d.addCallback(_stop_file) msg = "Stopped LBRY file"
defer.returnValue(self._render_response(msg, OK_CODE))
d.addCallback(lambda r: self._render_response(r, OK_CODE))
return d
@AuthJSONRPCServer.auth_required @AuthJSONRPCServer.auth_required
def jsonrpc_start_lbry_file(self, p): def jsonrpc_start_lbry_file(self, p):