Make channel deletion endpoint accept JSON
This commit is contained in:
parent
a42c6be1b7
commit
a204be25c5
12
api/views.py
12
api/views.py
|
@ -435,11 +435,19 @@ class API(object):
|
|||
|
||||
return dumps({"channels": channels})
|
||||
|
||||
@app.route("/irc/network/<net>/channel/<channel>/", methods=["DELETE"])
|
||||
@app.route("/irc/network/<net>/channel/", methods=["DELETE"])
|
||||
@login_required
|
||||
def irc_network_channel_part(self, request, net, channel):
|
||||
def irc_network_channel_part(self, request, net):
|
||||
try:
|
||||
data = loads(request.content.read())
|
||||
except JSONDecodeError:
|
||||
return "Invalid JSON"
|
||||
if "channel" not in data:
|
||||
return dumps({"success": False, "reason": "no channel specified."})
|
||||
channel = data["channel"]
|
||||
if net not in main.network.keys():
|
||||
return dumps({"success": False, "reason": "no such net."})
|
||||
print("ABOUT TO PART", channel)
|
||||
parted = chankeep.partSingle(net, channel)
|
||||
if not parted:
|
||||
dumps({"success": False, "reason": "no channels matched."})
|
||||
|
|
Loading…
Reference in New Issue