-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode_contacts.py
136 lines (110 loc) · 4.17 KB
/
node_contacts.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python3
import json
import argparse
import re
import requests
import arrow
from datetime import datetime
from email_validator import validate_email, EmailNotValidError, EmailSyntaxError
def main(params):
nodes_fn = requests.get(params['url'], verify=False)
nodedb = nodes_fn.json()
now = datetime.utcnow().replace(microsecond=0)
nodes_sum = 0
nodes_with_contact = 0
nodes_with_email = 0
nodes_with_twitter = 0
nodes_without_contact = 0
email_regex = r'[\w\.-]+@[\w\.-]+'
twitter_regex = r'(?<=^|(?<=[^a-zA-Z0-9-_\.]))@([A-Za-z]+[A-Za-z0-9]+)'
contactlist = list()
contactdict = {
"contacts": dict(),
"nodes_total": "0",
"nodes_with_contact": "0",
"nodes_with_email": "0",
"nodes_with_twitter": "0",
"nodes_without_contact": "0",
"updated_at": now.isoformat()
}
def check_email(mail):
try:
email = validate_email(mail, check_deliverability=False)
return email['email']
except ValueError:
return None
def get_owner(nodeinfo):
try:
if 'owner' in nodeinfo:
contactstring = nodeinfo['owner']['contact'].lower()
maybe_email = re.search(email_regex, contactstring)
maybe_twitter = re.search(twitter_regex, contactstring)
if maybe_email:
mail = check_email(maybe_email.group(0))
else:
mail = None
if maybe_twitter:
twitter = maybe_twitter.group(0)
else:
twitter = None
if mail and twitter:
return ({ "email": mail, "twitter": twitter }, contactstring)
elif mail:
return ({ "email": mail }, contactstring)
elif twitter:
return ({ "twitter": twitter }, contactstring)
else:
return ({}, contactstring)
else:
return None
except (KeyError, EmailSyntaxError):
return None
def get_offline_days(timestamp):
datetime_now = arrow.get(now.isoformat())
node_lastseen = arrow.get(timestamp)
daydiff = datetime_now - node_lastseen
return daydiff.days
for node in nodedb['nodes']:
contact = ''
node_out = dict()
nodes_sum += 1
hostname = node['nodeinfo']['hostname']
node_out[hostname] = dict()
if not node['flags']['online']:
offline_days = get_offline_days(node['lastseen'])
node_out[hostname]['status'] = "offline"
node_out[hostname]['days_offline'] = offline_days
else:
node_out[hostname]['status'] = "online"
contact = get_owner(node['nodeinfo'])
if contact:
owner = contact[0]
rawcontact = contact[1]
nodes_with_contact += 1
if rawcontact in contactlist:
contactdict['contacts'][rawcontact]['nodes'].update(node_out)
else:
contactlist.append(rawcontact)
contactdict['contacts'][rawcontact] = dict()
contactdict['contacts'][rawcontact].update(owner)
contactdict['contacts'][rawcontact]['nodes'] = dict()
contactdict['contacts'][rawcontact]['nodes'].update(node_out)
if 'email' in owner:
nodes_with_email += 1
if 'twitter' in owner:
nodes_with_twitter += 1
else:
nodes_without_contact += 1
contactdict['nodes_total'] = nodes_sum
contactdict['nodes_with_contact'] = nodes_with_contact
contactdict['nodes_with_email'] = nodes_with_email
contactdict['nodes_with_twitter'] = nodes_with_twitter
contactdict['nodes_without_contact'] = nodes_without_contact
print(json.dumps(contactdict, sort_keys=True, indent=4))
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-u', '--url', action='store',
help='URL to nodes.json',required=True)
args = parser.parse_args()
options = vars(args)
main(options)