44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
import argparse
|
|
import os
|
|
import sys
|
|
import unpacker
|
|
|
|
'''
|
|
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 );
|
|
}
|
|
'''
|
|
|
|
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)
|
|
|
|
sys.exit(0) |