Actualización
This commit is contained in:
179
plugin/vchamilo/views/import.php
Normal file
179
plugin/vchamilo/views/import.php
Normal file
@@ -0,0 +1,179 @@
|
||||
<?php
|
||||
/* For licensing terms, see /license.txt */
|
||||
|
||||
$cidReset = true;
|
||||
require_once __DIR__.'/../../../main/inc/global.inc.php';
|
||||
|
||||
$interbreadcrumb[] = ['url' => 'manage.php', 'name' => get_lang('VChamilo')];
|
||||
|
||||
// Security
|
||||
api_protect_admin_script();
|
||||
|
||||
Virtual::checkSettings();
|
||||
|
||||
$plugin = VChamiloPlugin::create();
|
||||
$form = new FormValidator('import', 'post', api_get_self());
|
||||
|
||||
// Database host.
|
||||
$form->addHeader(get_lang('From'));
|
||||
|
||||
$form->addText('root_web', [$plugin->get_lang('rootweb'), 'Example: http://www.chamilo.org/']);
|
||||
$form->addText('db_host', $plugin->get_lang('dbhost'));
|
||||
$form->applyFilter('db_host', 'trim');
|
||||
|
||||
// Database login.
|
||||
$form->addText('db_user', $plugin->get_lang('dbuser'));
|
||||
$form->applyFilter('db_user', 'trim');
|
||||
|
||||
// Database password.
|
||||
$form->addElement(
|
||||
'password',
|
||||
'db_password',
|
||||
$plugin->get_lang('dbpassword'),
|
||||
['id' => 'id_vdbpassword']
|
||||
);
|
||||
|
||||
// Database name.
|
||||
$form->addText('main_database', [$plugin->get_lang('maindatabase')]);
|
||||
|
||||
$form->addText(
|
||||
'configuration_file',
|
||||
[
|
||||
$plugin->get_lang('ConfigurationPath'),
|
||||
get_lang('Example').': /var/www/site/app/config/configuration.php',
|
||||
],
|
||||
true
|
||||
);
|
||||
|
||||
$encryptList = Virtual::getEncryptList();
|
||||
|
||||
$form->addSelect(
|
||||
'password_encryption',
|
||||
get_lang('EncryptMethodUserPass'),
|
||||
$encryptList
|
||||
);
|
||||
|
||||
$encryptList = Virtual::getEncryptList();
|
||||
|
||||
$versionList = [
|
||||
'1.11.x',
|
||||
'1.10.x',
|
||||
'1.9.x',
|
||||
];
|
||||
|
||||
$form->addSelect(
|
||||
'version',
|
||||
$plugin->get_lang('FromVersion'),
|
||||
array_combine($versionList, $versionList)
|
||||
);
|
||||
|
||||
$form->addText(
|
||||
'course_path',
|
||||
[
|
||||
$plugin->get_lang('CoursePath'),
|
||||
get_lang('Example').': /var/www/site/virtual/var/courses',
|
||||
],
|
||||
true
|
||||
);
|
||||
|
||||
$form->addText(
|
||||
'home_path',
|
||||
[
|
||||
$plugin->get_lang('HomePath'),
|
||||
get_lang('Example').': /var/www/site/virtual/var/home',
|
||||
],
|
||||
true
|
||||
);
|
||||
|
||||
$form->addText(
|
||||
'upload_path',
|
||||
[
|
||||
$plugin->get_lang('UploadPath'),
|
||||
get_lang('Example').': /var/www/site/virtual/var/upload',
|
||||
],
|
||||
true
|
||||
);
|
||||
|
||||
$form->addHeader(get_lang('To'));
|
||||
|
||||
$form->addText('to_db_host', $plugin->get_lang('dbhost'));
|
||||
$form->applyFilter('to_db_host', 'trim');
|
||||
|
||||
// Database login.
|
||||
$form->addText('to_db_user', $plugin->get_lang('dbuser'));
|
||||
$form->applyFilter('to_db_user', 'trim');
|
||||
|
||||
// Database password.
|
||||
$form->addElement(
|
||||
'password',
|
||||
'to_db_password',
|
||||
$plugin->get_lang('dbpassword'),
|
||||
['id' => 'id_vdbpassword']
|
||||
);
|
||||
|
||||
// Database name.
|
||||
$form->addText(
|
||||
'to_main_database',
|
||||
[
|
||||
$plugin->get_lang('maindatabase'),
|
||||
$plugin->get_lang('DatabaseDescription'),
|
||||
]
|
||||
);
|
||||
|
||||
$form->addButtonSave($plugin->get_lang('savechanges'), 'submitbutton');
|
||||
$content = $form->returnForm();
|
||||
|
||||
if ($form->validate()) {
|
||||
$values = $form->getSubmitValues();
|
||||
|
||||
$coursePath = $values['course_path'];
|
||||
$homePath = $values['home_path'];
|
||||
$confFile = $values['configuration_file'];
|
||||
|
||||
if (is_dir($coursePath) &&
|
||||
is_dir($homePath) &&
|
||||
file_exists($confFile) &&
|
||||
is_readable($confFile)
|
||||
) {
|
||||
$currentHost = api_get_configuration_value('db_host');
|
||||
$currentDatabase = api_get_configuration_value('main_database');
|
||||
$currentUser = api_get_configuration_value('db_user');
|
||||
$currentPassword = api_get_configuration_value('db_password');
|
||||
|
||||
if ($values['to_main_database'] !== $currentDatabase &&
|
||||
$values['to_db_user'] !== $currentUser &&
|
||||
$values['to_db_password'] !== $currentPassword
|
||||
) {
|
||||
} else {
|
||||
Display::addFlash(
|
||||
Display::return_message(
|
||||
$plugin->get_lang('DatabaseAccessShouldBeDifferentThanMasterChamilo'),
|
||||
'warning'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
$vchamilo = new stdClass();
|
||||
$vchamilo->main_database = $values['main_database'];
|
||||
$vchamilo->db_user = $values['db_user'];
|
||||
$vchamilo->db_password = $values['db_password'];
|
||||
$vchamilo->db_host = $values['db_host'];
|
||||
$vchamilo->root_web = $values['root_web'];
|
||||
$vchamilo->import_to_main_database = $values['to_main_database'];
|
||||
$vchamilo->import_to_db_user = $values['to_db_user'];
|
||||
$vchamilo->import_to_db_password = $values['to_db_password'];
|
||||
$vchamilo->import_to_db_host = $values['to_db_host'];
|
||||
$vchamilo->course_path = $values['course_path'];
|
||||
$vchamilo->home_path = $values['home_path'];
|
||||
$vchamilo->upload_path = $values['upload_path'];
|
||||
$vchamilo->password_encryption = $values['password_encryption'];
|
||||
|
||||
Virtual::importInstance($vchamilo, $values['version']);
|
||||
|
||||
Virtual::redirect(api_get_path(WEB_PLUGIN_PATH).'vchamilo/views/manage.php');
|
||||
}
|
||||
}
|
||||
|
||||
$tpl = new Template(get_lang('Import'), true, true, false, true, false);
|
||||
$tpl->assign('content', $content);
|
||||
$tpl->display_one_col_template();
|
||||
Reference in New Issue
Block a user