AIL-framework/bin/CreditCard.py

71 lines
2.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python2
# -*-coding:UTF-8 -*
2014-08-14 17:55:18 +02:00
import pprint
import time
from packages import Paste
from packages import lib_refine
from pubsublogger import publisher
from Helper import Process
2014-08-20 15:14:57 +02:00
if __name__ == "__main__":
publisher.port = 6380
2014-08-20 15:14:57 +02:00
publisher.channel = "Script"
config_section = 'CreditCards'
2014-08-14 17:55:18 +02:00
p = Process(config_section)
# FUNCTIONS #
publisher.info("Creditcard script subscribed to channel creditcard_categ")
message = p.get_from_set()
prec_filename = None
creditcard_regex = "4[0-9]{12}(?:[0-9]{3})?"
# FIXME For retro compatibility
channel = 'creditcard_categ'
2014-08-14 17:55:18 +02:00
# mastercard_regex = "5[1-5]\d{2}([\ \-]?)\d{4}\1\d{4}\1\d{4}"
# visa_regex = "4\d{3}([\ \-]?)\d{4}\1\d{4}\1\d{4}"
2014-08-20 15:14:57 +02:00
# discover_regex = "6(?:011\d\d|5\d{4}|4[4-9]\d{3}|22(?:1(?:2[6-9]|
# [3-9]\d)|[2-8]\d\d|9(?:[01]\d|2[0-5])))\d{10}"
2014-08-14 17:55:18 +02:00
# jcb_regex = "35(?:2[89]|[3-8]\d)([\ \-]?)\d{4}\1\d{4}\1\d{4}"
# amex_regex = "3[47]\d\d([\ \-]?)\d{6}\1\d{5}"
# chinaUP_regex = "62[0-5]\d{13,16}"
# maestro_regex = "(?:5[0678]\d\d|6304|6390|67\d\d)\d{8,15}"
while True:
2014-08-14 17:55:18 +02:00
if message is not None:
filename, word, score = message.split()
2014-08-14 17:55:18 +02:00
if prec_filename is None or filename != prec_filename:
creditcard_set = set([])
PST = Paste.Paste(filename)
for x in PST.get_regex(creditcard_regex):
if lib_refine.is_luhn_valid(x):
2014-08-14 17:55:18 +02:00
creditcard_set.add(x)
2014-08-14 17:55:18 +02:00
PST.__setattr__(channel, creditcard_set)
2014-08-21 12:22:07 +02:00
PST.save_attribute_redis(channel, creditcard_set)
2014-08-14 17:55:18 +02:00
pprint.pprint(creditcard_set)
2014-08-20 15:14:57 +02:00
to_print = 'CreditCard;{};{};{};'.format(
PST.p_source, PST.p_date, PST.p_name)
2014-08-14 17:55:18 +02:00
if (len(creditcard_set) > 0):
2014-08-20 15:14:57 +02:00
publisher.critical('{}Checked {} valid number(s)'.format(
to_print, len(creditcard_set)))
else:
2014-08-14 17:55:18 +02:00
publisher.info('{}CreditCard related'.format(to_print))
prec_filename = filename
else:
publisher.debug("Script creditcard is idling 1m")
print 'Sleeping'
time.sleep(60)
message = p.get_from_set()