2022-07-21 12:40:09 +00:00
|
|
|
from subprocess import PIPE, run
|
|
|
|
|
2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class DistCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.dist(*args)
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-09-05 06:20:30 +00:00
|
|
|
def dist(
|
|
|
|
self, addr, authed, data, obj, spl, success, failure, info, incUsage, length
|
|
|
|
):
|
2018-02-23 22:05:40 +00:00
|
|
|
if authed:
|
2018-03-14 20:13:40 +00:00
|
|
|
if main.config["Dist"]["Enabled"]:
|
|
|
|
rtrn = run([main.config["Dist"]["File"]], shell=True, stdout=PIPE)
|
|
|
|
if main.config["Dist"]["SendOutput"]:
|
2018-02-23 22:05:40 +00:00
|
|
|
info("Exit code: %s -- Stdout: %s" % (rtrn.returncode, rtrn.stdout))
|
|
|
|
else:
|
|
|
|
info("Exit code: %s" % rtrn.returncode)
|
|
|
|
else:
|
|
|
|
failure("The dist command is not enabled")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|