/sylva/engines/models.py

https://github.com/escalant3/Sylva · Python · 136 lines · 121 code · 14 blank · 1 comment · 19 complexity · c692c2320b9857c4f5edba7cbcc12144 MD5 · raw file

  1. # -*- coding: utf-8 -*-
  2. import binascii
  3. from Crypto.Cipher import Blowfish
  4. from django.conf import settings
  5. from django.contrib.auth.models import User
  6. from django.utils.importlib import import_module
  7. from django.utils.translation import gettext as _
  8. from django.db import models
  9. default_engine = settings.GRAPHDATABASES["default"]["ENGINE"]
  10. def get_upload_to(instance, filename):
  11. return u"private/%s/%s" % (instance.owner.username, filename)
  12. class Instance(models.Model):
  13. name = models.CharField(_("name"), max_length=100)
  14. engine = models.CharField(_("engine"), max_length=50,
  15. default=default_engine)
  16. SCHEME_TYPES = (
  17. ("http", _("Hypertext Transfer Protocol (http)")),
  18. ("file", _("File URI scheme (file)")),
  19. ("https", _("Hypertext Transfer Protocol Secure (https)")),
  20. )
  21. scheme = models.CharField(_("scheme"), max_length=8, default="http",
  22. choices=SCHEME_TYPES)
  23. host = models.CharField(_("host"), max_length=250, default="localhost",
  24. null=True, blank=True,
  25. help_text=_("Host name or unit label"))
  26. port = models.PositiveIntegerField(_("port"), max_length=10,
  27. default="7474", null=True, blank=True)
  28. path = models.CharField(_("path"), max_length=250, default="db/data",
  29. help_text=_("URL or absolute file system path"))
  30. username = models.CharField(_("username"), max_length=250,
  31. null=True, blank=True)
  32. encrypted_password = models.CharField(_("encrypted password"),
  33. max_length=32,
  34. null=True, blank=True,
  35. help_text=_("Agregated field"))
  36. plain_password = models.CharField(_("password"),
  37. max_length=50,
  38. null=True, blank=True,
  39. help_text=_("Type again to change"))
  40. query = models.TextField(_("query"), null=True, blank=True)
  41. fragment = models.TextField(_("fragment"), null=True, blank=True)
  42. key_file = models.FileField(_("Key file"), upload_to=get_upload_to,
  43. null=True, blank=True,)
  44. cert_file = models.FileField(_("Cert file"), upload_to=get_upload_to,
  45. null=True, blank=True,)
  46. owner = models.ForeignKey(User, verbose_name=_('owner'),
  47. related_name="instances")
  48. def __unicode__(self):
  49. return u"%s ~ %s" % (self.name, self._get_connection_string())
  50. def save(self, *args, **kwargs):
  51. if self.plain_password:
  52. self._set_password(self.plain_password)
  53. self.plain_password = ""
  54. super(Instance, self).save(*args, **kwargs)
  55. @models.permalink
  56. def get_absolute_url(self):
  57. return ('engines.views.edit', [str(self.id)])
  58. def _get_connection_string(self):
  59. if self.scheme == u"file":
  60. if self.host:
  61. connection_string = "%s://%s/%s" % (self.scheme, self.host,
  62. self.path)
  63. else:
  64. connection_string = "%s://%s" % (self.scheme, self.path)
  65. else:
  66. if self.username and self.password and self.port:
  67. connection_string = "%s://%s:%s@%s:%s/%s/" % (self.scheme,
  68. self.username,
  69. self.password,
  70. self.host,
  71. self.port,
  72. self.path)
  73. elif self.username and self.port:
  74. connection_string = "%s://%s@%s:%s/%s/" % (self.scheme,
  75. self.username,
  76. self.host,
  77. self.port,
  78. self.path)
  79. elif self.port:
  80. connection_string = "%s://%s:%s/%s/" % (self.scheme, self.host,
  81. self.port, self.path)
  82. else:
  83. connection_string = "%s://%s/%s/" % (self.scheme, self.host,
  84. self.path)
  85. if self.query:
  86. connection_string = "%?%s" % (connection_string, self.query)
  87. if self.fragment:
  88. connection_string = "%#%s" % (connection_string, self.fragment)
  89. return connection_string
  90. def get_gdb(self, graph=None):
  91. connection_dict = {
  92. "name": self.name,
  93. "scheme": self.scheme,
  94. "host": self.host,
  95. "port": self.port,
  96. "path": self.path,
  97. "username": self.username,
  98. "password": self.password,
  99. "query": self.query,
  100. "fragment": self.fragment,
  101. "key_file": self.key_cert and self.key_cert.file,
  102. "cert_file": self.cert_file and self.cert_file.file,
  103. }
  104. connection_string = self._get_connection_string()
  105. module = import_module(self.engine)
  106. gdb = module.GraphDatabase(connection_string, connection_dict, graph)
  107. return gdb
  108. def _get_password(self):
  109. if not self.encrypted_password:
  110. return u""
  111. enc_obj = Blowfish.new(settings.SECRET_KEY)
  112. hex_password = binascii.a2b_hex(self.encrypted_password)
  113. return u"%s" % enc_obj.decrypt(hex_password).rstrip()
  114. def _set_password(self, value):
  115. if not value:
  116. self.encrypted_password = u""
  117. else:
  118. enc_obj = Blowfish.new(settings.SECRET_KEY)
  119. repeat = 8 - (len(value) % 8)
  120. value = value + " " * repeat
  121. self.encrypted_password = binascii.b2a_hex(enc_obj.encrypt(value))
  122. password = property(_get_password, _set_password)