-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuser.py
59 lines (46 loc) · 1.48 KB
/
user.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
59
import os
import sys
import json
class User:
def __init__(self):
"""
Looks in the default location for user info and stores it in a dictionary
"""
self.json_path = './config/hosts.json'
self.user = self.check_json_exist()
def is_json(self, myjson):
"""
checks if file is of json type
"""
try:
json_object = json.loads(myjson)
except ValueError as e:
return False
return True
def check_json_exist(self):
"""
opens json file reads the content of json into dict, returns dict.
if bad read, empty dict is returned
"""
try:
f = open(self.json_path, "r")
data = f.read()
if self.is_json(data):
return json.loads(data)
else:
raise IOError
except IOError:
print("Error Collecting or reading data. Check Json contents")
return {}
def get_user(self):
return self.user
def get_user_name(self):
return str(self.user['Test Host 1']['user_name'])
def get_server_ip(self):
return str(self.user['Test Host 1']['server_ip'])
def get_local_remote_mount(self):
return str(self.user['Test Host 1']['local_remote_mount'])
def get_remote_path(self):
return str(self.user['Test Host 1']['remote_path'])
def get_ssh_path(self):
return str(self.user['Test Host 1']['ssh_path'])