Implement deduplicating channels

This commit is contained in:
2022-08-16 22:01:35 +01:00
parent 07f1fff125
commit 49b0b9db46
4 changed files with 120 additions and 3 deletions

24
commands/dedup.py Normal file
View File

@@ -0,0 +1,24 @@
import main
from modules import chankeep
from modules import helpers
from json import dumps
class DedupCommand:
def __init__(self, *args):
self.dedup(*args)
def dedup(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
if authed:
if length == 1:
dupes = chankeep.getDuplicateChannels()
chankeep.partChannels(dupes)
info(dumps(dupes))
return
elif length == 2:
if spl[1] not in main.network.keys():
failure("No such network: %s" % spl[1])
return
dupes = chankeep.getDuplicateChannels(spl[1])
chankeep.partChannels(dupes)
info(dumps(dupes))
return