123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- """
- This library implements all of the black listing features needed for gettor.
- """
- import hashlib
- import os
- stateDir = "/tmp/gettor/"
- blStateDir = stateDir + "bl/"
- def blackList(address, createEntry=False):
- """
- Check to see if an address is on our blacklist. If it is - we'll return true.
- If requested, we'll attempt to create a blacklist entry and return true if
- everything works out.
- """
-
-
- privateAddress = makeAddressPrivate(address)
- blackListed = lookupBlackListEntry(privateAddress)
- if blackListed:
- return True
- elif createEntry:
- return createBlackListEntry(privateAddress)
- return False
- def lookupBlackListEntry(privateAddress, stateDir="/tmp/gettor/bl/"):
- """ Check to see if we have a blacklist entry for the given address. """
- entry = stateDir + str(privateAddress)
- try:
- entry = os.stat(entry)
- except OSError:
- return False
- return True
- def createBlackListEntry(privateAddress, stateDir="/tmp/gettor/bl/"):
- """ Create a zero byte file that represents the address in our blacklist. """
- entry = stateDir + str(privateAddress)
- stat = None
- try:
- stat = os.stat(entry)
- except OSError:
- try:
- fd = open(entry, 'w')
- fd.close()
- return True
- except:
- print "Entry not found. We were unable to create an entry."
- return False
- print "It appears that we already had an entry."
- return False
- def removeBlackListEntry(privateAddress, stateDir="/tmp/gettor/bl/"):
- """ Remove the zero byte file that represents an entry in our blacklist."""
- entry = stateDir + str(privateAddress)
- stat = None
- try:
- entry = os.unlink(entry)
- except OSError:
- return False
- return True
- def makeAddressPrivate(address):
- """ Creates a unique identifier for the user. """
- hash = hashlib.sha1(address)
- privateAddress = hash.hexdigest()
- return privateAddress
- def prepBLStateDir(stateDir = "/tmp/gettor/bl/"):
- print "Preparing the state directory for gettor."
- stat = None
- try:
- stat = os.stat(stateDir)
- print "We found a state directory"
- return True
- except OSError:
- try:
- os.mkdir(stateDir)
- print "No state directory was found, we created one"
- return True
- except:
- print "Unable to make a state directory"
- return False
- def blackListtests(address):
- """ This is a basic evaluation of our blacklist functionality """
- prepBLStateDir()
- privateAddress = makeAddressPrivate(address)
- print "We have a private address of: " + privateAddress
- print "Testing creation of blacklist entry: "
- blackListEntry = createBlackListEntry(privateAddress)
- print blackListEntry
- print "We're testing a lookup of a known positive blacklist entry: "
- blackListEntry = lookupBlackListEntry(privateAddress)
- print blackListEntry
- print "We're testing removal of a known blacklist entry: "
- blackListEntry = removeBlackListEntry(privateAddress)
- print blackListEntry
- print "We're testing a lookup of a known false blacklist entry: "
- blackListEntry = lookupBlackListEntry(privateAddress)
- print blackListEntry
- print "Now we'll test the higher level blacklist functionality..."
- print "This should not find an entry in the blacklist: "
- print blackList(address)
- print "This should add an entry to the blacklist: "
- print blackList(address, True)
- print "This should find the previous addition to the blacklist: "
- print blackList(address)
- print "Please ensure the tests match what you would expect for your environment."
- if __name__ == "__main__" :
- blackListtests("requestingUser@example.com")
|