fix: [domain history] fix domain status

This commit is contained in:
Terrtia 2019-06-18 11:19:56 +02:00
parent fbeac2340d
commit 42d32ef310
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -128,11 +128,15 @@ class HiddenServices(object):
def extract_epoch_from_history(self, crawled_history): def extract_epoch_from_history(self, crawled_history):
epoch_list = [] epoch_list = []
for res, epoch_val in crawled_history: for res, epoch_val in crawled_history:
# domain down epoch_val = int(epoch_val) # force int
if res == epoch_val: try:
status = False # domain down
# domain up if int(res) == epoch_val:
else: status = False
# domain up
else:
status = True
except ValueError:
status = True status = True
epoch_val = int(epoch_val) # force int epoch_val = int(epoch_val) # force int
epoch_list.append((epoch_val, time.strftime('%Y/%m/%d - %H:%M.%S', time.gmtime(epoch_val)), status)) epoch_list.append((epoch_val, time.strftime('%Y/%m/%d - %H:%M.%S', time.gmtime(epoch_val)), status))