mac.py 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # ============================================================================
  2. # This file is part of Pwman3.
  3. #
  4. # Pwman3 is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License, version 2
  6. # as published by the Free Software Foundation;
  7. #
  8. # Pwman3 is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with Pwman3; if not, write to the Free Software
  15. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  16. # ============================================================================
  17. # Copyright (C) 2012 Oz Nahum <nahumoz@gmail.com>
  18. # ============================================================================
  19. # Copyright (C) 2006 Ivan Kelly <ivan@ivankelly.net>
  20. # ============================================================================
  21. # pylint: disable=I0011
  22. from __future__ import print_function
  23. import time
  24. # all mac os related classes
  25. from pwman.ui.cli import PwmanCli
  26. from pwman.ui import tools
  27. from pwman.util.crypto_engine import CryptoEngine
  28. # pylint: disable=R0904
  29. class PwmanCliMac(PwmanCli):
  30. """
  31. inherit from PwmanCli, override the right functions...
  32. """
  33. def do_copy(self, args):
  34. ids = self._get_ids(args)
  35. if len(ids) > 1:
  36. print("Can only 1 password at a time...")
  37. return None
  38. nodes = self._db.getnodes(ids)
  39. ce = CryptoEngine.get()
  40. for node in nodes:
  41. password = ce.decrypt(node[2])
  42. tools.text_to_clipboards(password)
  43. print("erasing in 10 sec...")
  44. time.sleep(10) # TODO: this should be configurable!
  45. tools.text_to_clipboards("")
  46. def do_cp(self, args):
  47. self.do_copy(args)
  48. def do_open(self, args):
  49. ids = self._get_ids(args)
  50. if not args:
  51. self.help_open()
  52. return
  53. if len(ids) > 1:
  54. print("Can open only 1 link at a time ...")
  55. return None
  56. ce = CryptoEngine.get()
  57. nodes = self._db.getnodes(ids)
  58. for node in nodes:
  59. url = ce.decrypt(node[3])
  60. if not url.startswith(("http://", "https://")):
  61. url = "https://" + url
  62. tools.open_url(url, macosx=True)
  63. def do_o(self, args):
  64. self.do_open(args)
  65. ##
  66. # Help functions
  67. ##
  68. def help_open(self):
  69. self.usage("open <ID>")
  70. print("Launch default browser with 'open url',\n"
  71. "the url must contain http:// or https://.")
  72. def help_o(self):
  73. self.help_open()
  74. def help_copy(self):
  75. self.usage("copy <ID>")
  76. print("Copy password to Cocoa clipboard using pbcopy")
  77. def help_cp(self):
  78. self.help_copy()