1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright (C) 2020-2024 Soleta Networks <opengnsys@soleta.eu>
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the
# Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
import argparse
class OgCenter():
@staticmethod
def add_center(rest, args):
parser = argparse.ArgumentParser(prog='ogcli add center')
parser.add_argument('--name',
nargs='?',
required=True,
help='Name of the center')
parser.add_argument('--desc',
nargs='?',
required=False,
help='(Optional) Provide a more detailed description of the center')
parsed_args = parser.parse_args(args)
payload = {'name': parsed_args.name}
if parsed_args.desc:
payload['comment'] = parsed_args.desc
res = rest.post('/center/add', payload=payload)
if not res:
return 1
return 0
@staticmethod
def update_center(rest, args):
parser = argparse.ArgumentParser(prog='ogcli update center')
parser.add_argument('--id',
type=int,
nargs='?',
required=True,
help='center id in database')
parser.add_argument('--name',
nargs='?',
required=True,
help='the new name for the center')
parser.add_argument('--comment',
nargs='?',
required=False,
help='the new comment for the center')
parsed_args = parser.parse_args(args)
payload = {
'id': parsed_args.id,
'name': parsed_args.name,
}
if parsed_args.comment:
payload['comment'] = parsed_args.comment
res = rest.post('/center/update', payload=payload)
if not res:
return 1
return 0
@staticmethod
def delete_center(rest, args):
parser = argparse.ArgumentParser(prog='ogcli delete center')
parser.add_argument('--id',
type=int,
nargs='?',
required=True,
help='center id in database')
parsed_args = parser.parse_args(args)
payload = {'id': parsed_args.id}
res = rest.post('/center/delete', payload=payload)
if not res:
return 1
return 0
|