|
@@ -21,76 +21,24 @@
|
|
|
#============================================================================
|
|
|
from __future__ import print_function
|
|
|
import sys
|
|
|
-import shutil
|
|
|
from pwman import get_conf_options, get_db_version
|
|
|
from pwman import parser_options
|
|
|
from pwman.ui import get_ui_platform
|
|
|
from pwman.ui.tools import CLICallback
|
|
|
import pwman.util.config as config
|
|
|
import pwman.data.factory
|
|
|
-from pwman.data.convertdb import PwmanConvertDB
|
|
|
from pwman.util.crypto_engine import CryptoEngine
|
|
|
|
|
|
if sys.version_info.major > 2:
|
|
|
raw_input = input
|
|
|
|
|
|
|
|
|
-def auto_convert():
|
|
|
- try:
|
|
|
- #1) Display a message saying that the database will be converted
|
|
|
- # This step is done already in get_db_version
|
|
|
- dbconvertor = PwmanConvertDB(args, config)
|
|
|
-
|
|
|
- #2) copy the old database :
|
|
|
- # cp ~/.pwman3/pwman.db ~/.pwman3/pwman.backup-2013-11-23-23:15.db
|
|
|
- #3) Display a message about the backup file path
|
|
|
- # These steps are done by PwmanConvertDB.backup_old_db()
|
|
|
- dbconvertor.backup_old_db()
|
|
|
-
|
|
|
- #4) convert the old database to the new format in ~/.pwman3/pwman.db
|
|
|
- # This step is done by PwmanConvertDB.create_new_db()
|
|
|
- # PwmanConvertDB.convert_nodes()
|
|
|
- # PwmanConvertDB.save_new_nodes_to_db()
|
|
|
- # PwmanConvertDB.save_old_key()
|
|
|
- dbconvertor.read_old_db()
|
|
|
- dbconvertor.create_new_db()
|
|
|
- dbconvertor.convert_nodes()
|
|
|
- dbconvertor.save_new_nodes_to_db()
|
|
|
- dbconvertor.save_old_key()
|
|
|
- #5) Display a message about the result of the conversion
|
|
|
- # add message here ...
|
|
|
- #5b) close connection
|
|
|
- dbconvertor.db.close()
|
|
|
- print("Your datbase %s was successfully converted " %
|
|
|
- dbconvertor.dbname)
|
|
|
- #5c) rename the newly created db to the old name!
|
|
|
- shutil.move(dbconvertor.newdb_name, dbconvertor.dbname)
|
|
|
- #6) Start the pwman3 normally if all went ok
|
|
|
- return True
|
|
|
- except Exception as e:
|
|
|
- raise e
|
|
|
-
|
|
|
-
|
|
|
def main(args):
|
|
|
PwmanCliNew, OSX = get_ui_platform(sys.platform)
|
|
|
xselpath, dbtype = get_conf_options(args, OSX)
|
|
|
dbver = get_db_version(config, dbtype, args)
|
|
|
CryptoEngine.get(dbver)
|
|
|
|
|
|
- if args.dbconvert:
|
|
|
- dbconvertor = PwmanConvertDB(args, config)
|
|
|
- dbconvertor.run()
|
|
|
- sys.exit(0)
|
|
|
-
|
|
|
- if dbver < 0.4:
|
|
|
- ans = raw_input("Would you like to proceed with the conversion of the "
|
|
|
- "database before starting pwman3 [y/N]?")
|
|
|
- if ans.lower() != "y":
|
|
|
- sys.exit(1)
|
|
|
-
|
|
|
- auto_convert()
|
|
|
- dbver = 0.4
|
|
|
-
|
|
|
db = pwman.data.factory.create(dbtype, dbver)
|
|
|
cli = PwmanCliNew(db, xselpath, CLICallback)
|
|
|
|