summaryrefslogtreecommitdiffstats
path: root/cli/objects/poweroff.py
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2022-05-20 10:22:42 +0200
committerJose M. Guisado <jguisado@soleta.eu>2022-05-20 10:22:42 +0200
commitd90ab82cec328004e743b2bfbb7c25b32eb299ea (patch)
treefcfbfd01f3517631119b7f41ae8363e1259177bd /cli/objects/poweroff.py
parentf88bcf78ac9ffefcedfb4e108b703dac40ca5839 (diff)
format: use autopep8
Use autopep8 for coding format, and only for whitespace changes. This change drops use of tabs in favor of spaces. Doesn't use autopep8 --aggresive option. Format command: $ autopep8 --inline --recursive . When using git-blame, use --ignore-rev in order to ignore this reformatting commit.
Diffstat (limited to 'cli/objects/poweroff.py')
-rw-r--r--cli/objects/poweroff.py86
1 files changed, 44 insertions, 42 deletions
diff --git a/cli/objects/poweroff.py b/cli/objects/poweroff.py
index f5eb1dd..da3666c 100644
--- a/cli/objects/poweroff.py
+++ b/cli/objects/poweroff.py
@@ -9,47 +9,49 @@ from cli.utils import *
import argparse
+
class OgPoweroff():
- @staticmethod
- def send_poweroff(rest, args):
- parser = argparse.ArgumentParser()
- group = parser.add_argument_group('clients', 'Client selection options')
- group.add_argument('--center-id',
- type=int,
- action='append',
- default=[],
- required=False,
- help='Clients from given center id')
- group.add_argument('--room-id',
- type=int,
- action='append',
- default=[],
- required=False,
- help='Clients from given room id')
- group.add_argument('--client-ip',
- action='append',
- default=[],
- required=False,
- help='Specific client IP')
- parsed_args = parser.parse_args(args)
-
- r = rest.get('/scopes')
- scopes = r.json()
- ips = set()
-
- for center in parsed_args.center_id:
- center_scope = scope_lookup(center, 'center', scopes)
- ips.update(ips_in_scope(center_scope))
- for room in parsed_args.room_id:
- room_scope = scope_lookup(room, 'room', scopes)
- ips.update(ips_in_scope(room_scope))
- for l in parsed_args.client_ip:
- ips.add(l)
-
- if not ips:
- print("No clients found")
- return None
-
- payload = {'clients': list(ips)}
- r = rest.post('/poweroff', payload=payload)
+ @staticmethod
+ def send_poweroff(rest, args):
+ parser = argparse.ArgumentParser()
+ group = parser.add_argument_group(
+ 'clients', 'Client selection options')
+ group.add_argument('--center-id',
+ type=int,
+ action='append',
+ default=[],
+ required=False,
+ help='Clients from given center id')
+ group.add_argument('--room-id',
+ type=int,
+ action='append',
+ default=[],
+ required=False,
+ help='Clients from given room id')
+ group.add_argument('--client-ip',
+ action='append',
+ default=[],
+ required=False,
+ help='Specific client IP')
+ parsed_args = parser.parse_args(args)
+
+ r = rest.get('/scopes')
+ scopes = r.json()
+ ips = set()
+
+ for center in parsed_args.center_id:
+ center_scope = scope_lookup(center, 'center', scopes)
+ ips.update(ips_in_scope(center_scope))
+ for room in parsed_args.room_id:
+ room_scope = scope_lookup(room, 'room', scopes)
+ ips.update(ips_in_scope(room_scope))
+ for l in parsed_args.client_ip:
+ ips.add(l)
+
+ if not ips:
+ print("No clients found")
+ return None
+
+ payload = {'clients': list(ips)}
+ r = rest.post('/poweroff', payload=payload)