-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpush_local.py
58 lines (52 loc) · 1.83 KB
/
push_local.py
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
"""
This module controls the pushing of local file.
"""
import initialize
import os
from lib.objects.basenode import BaseNode
from processdb import process_nodes
from search import search_node
from search import node_element
from node_create import node_create
from confirm import confirm
from parse_cmd import parse_commands
from get_property import get_home_directory
def push_local(args):
argument_filename = args.filename
argument_node = args.node
commands = initialize.configuration
redirect = []
authentication = True
"""
:param argument_filename: Argument accepted as template name.
:type augument_filename: str
:param argument_node: Argument accepted as regular expression.
:type augument_node: str
:param commands: Referenced to global variable commands which keeps track of all commands per node.
:type commands: list
:param redirect: A list of which method superloop will access. This variable is sent to the multithread_engine. Each element is a redirect per node.
:type alt_key_file: list
"""
node_object = process_nodes()
match_node = search_node(argument_node,node_object)
"""
:param node_object: All node(s) in the database with all attributes.
:type node_object: list
:param match_node: Nodes that matches the arguements passed in by user.
:type match_node: list
"""
if len(match_node) == 0:
print('+ No matching node(s) found in database.')
print('')
else:
node_element(match_node,node_object)
node_create(match_node,node_object)
for index in initialize.element:
redirect.append('push_cfgs')
for index in initialize.element:
config_list = []
with open('{}/{}'.format(get_home_directory(),argument_filename), 'r') as file:
init_config = file.readlines()
parse_commands(node_object[index],init_config,set_notation=True)
confirm(redirect,commands,authentication)
return None