/satchmo/branches/releases/0.5/satchmo/payment/models.py

https://bitbucket.org/hynekcer/satchmo-prehistory · Python · 81 lines · 55 code · 10 blank · 16 comment · 1 complexity · f2d2ce741673e5769cffb1335d9d00d0 MD5 · raw file

  1. """
  2. Stores details about the available payment options.
  3. Also stores credit card info in an encrypted format.
  4. """
  5. import base64
  6. from Crypto.Cipher import Blowfish
  7. from django.db import models
  8. from django.conf import settings
  9. from django.utils.translation import ugettext_lazy as _
  10. from satchmo.payment.paymentsettings import PaymentSettings
  11. from satchmo.contact.models import Order
  12. CREDITCHOICES = PaymentSettings().all('CREDITCHOICES')
  13. PAYMENTCHOICES = PaymentSettings().as_selectpairs()
  14. class PaymentOption(models.Model):
  15. """
  16. If there are multiple options - CC, Cash, COD, etc this class allows
  17. configuration.
  18. """
  19. description = models.CharField(_("Description"), max_length=20)
  20. active = models.BooleanField(_("Active"),
  21. help_text=_("Should this be displayed as an option for the user?"))
  22. optionName = models.CharField(_("Option Name"), max_length=20,
  23. choices = PAYMENTCHOICES, unique=True,
  24. help_text=_("The class name as defined in payment.py"))
  25. sortOrder = models.IntegerField(_("Sort Order"))
  26. class Admin:
  27. list_display = ['optionName','description','active']
  28. ordering = ['sortOrder']
  29. class Meta:
  30. verbose_name = "Payment Option"
  31. verbose_name_plural = "Payment Options"
  32. class CreditCardDetail(models.Model):
  33. """
  34. Stores an encrypted CC number, its information, and its
  35. displayable number.
  36. """
  37. order = models.ForeignKey(Order, unique=True, edit_inline=True,
  38. num_in_admin=1, max_num_in_admin=1)
  39. creditType = models.CharField(_("Credit Card Type"), max_length=16,
  40. choices=CREDITCHOICES)
  41. displayCC = models.CharField(_("CC Number (Last 4 digits)"),
  42. max_length=4, core=True)
  43. encryptedCC = models.CharField(_("Encrypted Credit Card"),
  44. max_length=40, blank=True, null=True, editable=False)
  45. expireMonth = models.IntegerField(_("Expiration Month"))
  46. expireYear = models.IntegerField(_("Expiration Year"))
  47. ccv = models.IntegerField(_("CCV"), blank=True, null=True)
  48. def storeCC(self, ccnum):
  49. # Take as input a valid cc, encrypt it and store the last 4 digits in a visible form
  50. # Must remember to save it after calling!
  51. secret_key = settings.SECRET_KEY
  52. encryption_object = Blowfish.new(secret_key)
  53. # block cipher length must be a multiple of 8
  54. padding = ''
  55. if (len(ccnum) % 8) <> 0:
  56. padding = 'X' * (8 - (len(ccnum) % 8))
  57. self.encryptedCC = base64.b64encode(encryption_object.encrypt(ccnum + padding))
  58. self.displayCC = ccnum[-4:]
  59. def _decryptCC(self):
  60. secret_key = settings.SECRET_KEY
  61. encryption_object = Blowfish.new(secret_key)
  62. # strip padding from decrypted credit card number
  63. ccnum = encryption_object.decrypt(base64.b64decode(self.encryptedCC)).rstrip('X')
  64. return (ccnum)
  65. decryptedCC = property(_decryptCC)
  66. def _expireDate(self):
  67. return(str(self.expireMonth) + "/" + str(self.expireYear))
  68. expirationDate = property(_expireDate)
  69. class Meta:
  70. verbose_name = _("Credit Card")
  71. verbose_name_plural = _("Credit Cards")