/settings.py

https://github.com/mpessas/pimme · Python · 90 lines · 69 code · 14 blank · 7 comment · 9 complexity · 996380b2e8ae199849df7411a871903a MD5 · raw file

  1. # -*- coding: utf-8 -*-
  2. """
  3. Settings module.
  4. """
  5. import sys
  6. import os.path
  7. import ConfigParser
  8. from Crypto.Cipher import Blowfish, AES
  9. import secret_key
  10. from pim_errors import InvalidOptionValueError
  11. config_file = os.path.expanduser('~/.pimme.conf')
  12. test = False
  13. value = None
  14. debug = False
  15. data_file = None
  16. get_key = None
  17. CipherAlgorithm = None
  18. IV = None
  19. dbus_support = True
  20. def create_default_options():
  21. """Return a dict with default options set."""
  22. default = {}
  23. default['keyring'] = 'user'
  24. default['algorithm'] = 'Blowfish'
  25. return default
  26. def read_settings(filename):
  27. """Read the configuration from config_file."""
  28. global data_file
  29. global get_key
  30. global CipherAlgorithm
  31. global IV
  32. if filename is None:
  33. filename = config_file
  34. default_options = create_default_options()
  35. config = ConfigParser.RawConfigParser(default_options)
  36. config.read(config_file)
  37. data_filename = config.get('General', 'data_filename')
  38. data_file = os.path.expanduser(data_filename)
  39. keyring = config.get('Cryptography', 'keyring')
  40. if keyring == 'user':
  41. get_key = secret_key.get_key_from_user
  42. elif keyring == 'keyring':
  43. get_key = secret_key.get_key_from_keyring
  44. else:
  45. raise InvalidOptionValueError(u'Invalid value for "keyring"')
  46. alg = config.get('Cryptography', 'algorithm')
  47. if alg == 'Blowfish':
  48. CipherAlgorithm = Blowfish
  49. IV = 'init_val'
  50. elif alg == 'AES':
  51. CipherAlgorithm = AES
  52. IV = 'initial valueAES'
  53. else:
  54. raise InvalidOptionValueError(u'Invalid value for "algorithm".')
  55. def write_default_settings(filename):
  56. """Write default settigns to filename."""
  57. if filename is None:
  58. filename = config_file
  59. settings = """# Settings for pimme.
  60. [Cryptography]
  61. # Where to get the encryption key from.
  62. # Possible values: keyring (keyring service), user (ask user)
  63. keyring = keyring
  64. # Encryption algorithm to use.
  65. # Possible values: Blowfish, AES
  66. algorithm = Blowfish
  67. [General]
  68. # Where to store data.
  69. # Give an absolute path to file.
  70. data_filename = ~/.pimme
  71. """
  72. with open(os.path.expanduser(filename), 'w') as f:
  73. f.write(settings)