56 lines
1.3 KiB
Python

import argparse
import os
import sys
import unpacker
import setup
'''
obtain new info for sites database
install core files
move wp-content to correct place
import db to website
check for any issues
package.json
function ai1wm_activate_plugins( $plugins ) {
$current = get_option( AI1WM_ACTIVE_PLUGINS, array() );
// Add plugins
foreach ( $plugins as $plugin ) {
if ( ! in_array( $plugin, $current ) && ! is_wp_error( validate_plugin( $plugin ) ) ) {
$current[] = $plugin;
}
}
return update_option( AI1WM_ACTIVE_PLUGINS, $current );
}
'''
plugin_prefix = 'SERVMASK_PREFIX_'
if __name__ == '__main__':
""" Entry of the ai1wm program. """
parser = argparse.ArgumentParser(prog='ai1wm', description='Unpack All-in-One WP Migration Packages')
parser.add_argument('source', help='source path')
parser.add_argument('target', help='target path')
args = parser.parse_args()
try:
if os.path.isfile(args.source):
unpacker.Ai1wmUnpacker().unpack(args.source, args.target)
except Exception as e:
print(e)
sys.exit(-1)
try:
if os.path.isfile(args.target):
# check for database.sql and package.json
# Setup Site files
setup.WPSetup()
except Exception as e:
print(e)
sys.exit(-1)
sys.exit(0)