Просмотр файла admin/modules/upload.php

Размер файла: 4.17Kb
  1. <?php
  2. include '../../engine/includes/start.php';
  3.  
  4. if (!$creator)
  5. Core::stop();
  6.  
  7. $set_mod =parse_ini_file(H . 'engine/files/data/modules.ini');
  8. $set['title'] = 'Загрузка модулей';
  9. include incDir.'head.php';
  10.  
  11. if (!empty($_FILES['file']['name']))
  12. {
  13. $pathinfo = pathinfo($_FILES['file']['name']);
  14. if ($pathinfo['extension'] != 'zip')
  15. $error = 'Только zip архивы';
  16. elseif (file_exists(H . 'engine/files/modules/archives/'.$_FILES['file']['name']))
  17. $error = 'Такой архив уже есть';
  18. else
  19. {
  20. Core::get('zip');
  21.  
  22. function get_ini($event, &$file)
  23. {
  24. Global $pathinfo;
  25. Return Rename($file['filename'], H.'engine/files/modules/configs/'.$pathinfo['filename'].'.app');
  26. }
  27.  
  28. function get_icon($event, &$file)
  29. {
  30. Global $pathinfo;
  31. Rename($file['filename'], H.'style/icons/modules/'.$pathinfo['filename'].'.png');
  32. Return 1;
  33. }
  34.  
  35. $zip = new Pclzip($_FILES['file']['tmp_name']);
  36. $contents = $zip->listContent();
  37. if ($contents == 0)
  38. $error = 'Архив поврежден или пуст';
  39. {
  40. $config = $zip->extract(PCLZIP_OPT_BY_NAME, 'module.ini', PCLZIP_CB_POST_EXTRACT, 'get_ini');
  41. if (empty($config))
  42. $error = 'module.ini не найден';
  43. {
  44. $icon = $zip->extract(PCLZIP_OPT_BY_NAME, 'icon.png', PCLZIP_CB_POST_EXTRACT, 'get_icon');
  45. $config = parse_ini_file(H.'engine/files/modules/configs/'.$pathinfo['filename'].'.app');
  46. $dir_install = empty($config['dir_install']) || strtolower($config['dir_install']) == 'корень' ? null : $config['dir_install'] . '/';
  47.  
  48. if (empty($icon))
  49. Core::msg_show('Не найдена иконка модуля');
  50.  
  51. if (empty($config['module_name']) || empty($config['author_name']))
  52. {
  53. $error = 'Название модуля или имя автора не указана. Загрузка модуля невозможна';
  54. }
  55. elseif ($set_mod['req_un_file'] && (empty($config['file_uninstaller']) || (!array_key_exists(str_replace($dir_install, '', strtok($config['file_uninstaller'], '?')), $contents) && !array_key_exists(strtok($config['file_uninstaller'], '?'), $contents))))
  56. {
  57. $error = 'Файл удаления не найден';
  58. }
  59.  
  60. if (!empty($config['secwind_version']) && version_compare($config['secwind_version'], Core::Secwind('version'), '>')) // если версия SecWind не соответстует требованиям модуля
  61. {
  62. $error = 'Модуль подходит для версии SecWind с '.$config['secwind_version'] .', ваша версия - '. Core::Secwind('version');
  63. }
  64. }
  65. }
  66.  
  67. if (isset($error))
  68. {
  69. if (file_exists(H.'engine/files/modules/configs/'.$pathinfo['filename'].'.app'))
  70. unlink(H.'engine/files/modules/configs/'.$pathinfo['filename'].'.app');
  71. if (file_exists(H.'style/icons/modules/'.$pathinfo['filename'].'.png'))
  72. unlink(H.'style/icons/modules/'.$pathinfo['filename'].'.png');
  73. }
  74. else
  75. {
  76. $zip->delete(PCLZIP_OPT_BY_NAME, 'module.ini');
  77. $zip->delete(PCLZIP_OPT_BY_NAME, 'icon.png');
  78. Move_uploaded_file($_FILES['file']['tmp_name'], H.'engine/files/modules/archives/'.$_FILES['file']['name']);
  79. Core::msg_show('Модуль "'.$_FILES['file']['name'].'" успешно загружен, теперь нужно его <a href="install.php?select='.strtok($_FILES['file']['name'], '.').'">установить</a>', 'menu_razd');
  80. }
  81. unset($zip, $config);
  82. }
  83.  
  84. if (isset($error))
  85. Core::msg_show($error);
  86. }
  87.  
  88.  
  89. ?>
  90. <form method="post" enctype="multipart/form-data">
  91. <div class="post">Выберите модуль. Расширение файла должен быть "<b>zip</b>" и присутстовать файл "<b>module.ini</b>"</div>
  92. <input type="file" name="file"/><br />
  93. <input value = "Загрузить" name="save" type="submit" />
  94. </form>
  95. <a href='/admin/?act=modules'><div class="menu_razd">Модули</div></a>
  96. <a href='/admin/'><div class="menu_razd">Админка</div></a>
  97. <?php
  98. include incDir.'foot.php';