Просмотр файла lib/includes/articles/download.php

Размер файла: 7.93Kb
  1. <?php
  2.  
  3. if ($id)
  4. {
  5. $check = $sql->query("SELECT COUNT(*) FROM `mod_lib` WHERE `id` = '" . $id . "' AND `type` = 'arc' AND `mod` = '0'")->result();
  6. if ($check)
  7. {
  8. if (isset($_POST['arc_type']))
  9. {
  10. $type = $_POST['arc_type'] == '0' ? 'txt' : 'html';
  11. $arc = $sql->query(
  12. "SELECT `name`, `text`, `edit_time`, `down_time`" .
  13. " FROM `mod_lib` WHERE `id` = '" . $id . "' AND `type` = 'arc' AND `mod` = '0'"
  14. )->fetch();
  15. $filename = FILESDIR . 'download' . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $id . '.zip';
  16.  
  17. if (((($arc['edit_time'] < $arc['down_time']) && $arc['down_time'] !== 0) || $arc['edit_time'] == 0) && file_exists($filename))
  18. {
  19. header('Location: /lib/files/download/' . $type . '/' . $id . '.zip');
  20. }
  21. else
  22. {
  23.  
  24. switch($type)
  25. {
  26.  
  27. case 'txt':
  28. $text = $arc['name'] . PHP_EOL . preg_replace('#\[img]([\da-z_\-.]+)\[/img]#is', '', $arc['text']);
  29. break;
  30. case 'html':
  31. $text = htmlspecialchars($arc['text']);
  32. $text = preg_replace_callback('#\[img]([\da-z_\-.]+)\[/img]#is', 'replaceImage', $text);
  33. $text = "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>" .
  34. "<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'><html><head>" .
  35. '<style>body{max-width: 720px; margin: auto; background: #E1E1E1}' .
  36. 'a:link{color:blue; text-decoration:none}' .
  37. 'a:visited{color:#000f5f; text-decoration:none; font-weight:bold}' .
  38. 'a:hover, a:active{color:blue; text-decoration:underline}' .
  39. '.content{padding: 4px 0px 4px 0px; margin: 5px 0px 5px 0px; border: 1px solid #AAA; background:#F8F8F8;}' .
  40. '.title{text-align: center; font-size: 22pt; font-weight:bold; padding: 0px; margin:0px; border-bottom:1px solid #CCC;}' .
  41. '.text{padding: 5px; margin:0px 2px 0px 2px;}' .
  42. '.foot{text-align: center;padding: 0px; margin:0px; border-top:1px solid #CCC; }' .
  43. '.phpcode {background-color: #E0E6E9; border: 1px dotted #9FAEBB;margin-top: 4px;padding: 0 2px 0 2px;}' .
  44. '.quote {border-left: 4px solid #c0c0c0;color: #878787;font-size: x-small;margin-left: 2px;padding: 2px 0 2px 4px;}' .
  45. '.bblist {color: #4A5663;padding: 0px 0px 0px 10px;}</style>' .
  46. '<title>' . htmlspecialchars($arc['name']) . '</title></head><body><div class="content">' .
  47. '<div class="title">' . htmlentities($arc['name'], ENT_QUOTES, 'UTF-8') . '</div><div class="text">' .
  48. $text . '</div><div class="foot">Статья скачана с сайта ' . $_SERVER['SERVER_NAME'] .
  49. '</div></div></body></html>';
  50. break;
  51. default:
  52. break;
  53.  
  54. }
  55.  
  56. if (file_exists(FILESDIR . 'download' . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $id . '.zip'))
  57. {
  58.  
  59. unlink(FILESDIR . 'download' . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $id . '.zip');
  60.  
  61. }
  62.  
  63. $filename = FILESDIR . 'download' . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $id . '.' . $type;
  64.  
  65. /* Создаем файл с текстом статьи */
  66. if (file_exists($filename))
  67. {
  68.  
  69. unlink($filename);
  70.  
  71. }
  72.  
  73. $file = fopen($filename, 'w');
  74.  
  75. if (flock($file, LOCK_EX) === FALSE)
  76. {
  77.  
  78. $error = 'При создании файла произошла ошибка. Попробуйте еще раз.';
  79.  
  80. }
  81. else
  82. {
  83.  
  84. if (fwrite($file, $text) === FALSE)
  85. {
  86.  
  87. $error = 'При создании файла произошла ошибка. Попробуйте еще раз.';
  88.  
  89. }
  90.  
  91. flock($file, LOCK_UN);
  92. fclose($file);
  93.  
  94. }
  95.  
  96. if (empty($error))
  97. {
  98.  
  99. /* Создаем архив */
  100. require_once H . 'engine/classes' . DIRECTORY_SEPARATOR . 'zip.php';
  101. $archive = new PclZip(FILESDIR . 'download' . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $id . '.zip');
  102. $archive->add($filename, PCLZIP_OPT_REMOVE_ALL_PATH);
  103.  
  104. unlink($filename);
  105. $files = $sql->query("SELECT `name` FROM `mod_lib_files` WHERE `aid` = '" . $id . "'");
  106. $add = array();
  107. $attach = FILESDIR . 'attach' . DIRECTORY_SEPARATOR;
  108. while ($file = $sql->fetch())
  109. {
  110.  
  111. if (file_exists($attach . $file['name']))
  112. {
  113.  
  114.  
  115. $add[] = $attach . $file['name'];
  116.  
  117. }
  118.  
  119. $preview = explode('.', $file['name']);
  120. if (isImage($preview[1]))
  121. {
  122.  
  123. if (file_exists($attach . $preview[0] . '_preview.png'))
  124. {
  125.  
  126. $add[] = $attach . $preview[0] . '_preview.png';
  127.  
  128. }
  129.  
  130. }
  131.  
  132.  
  133. }
  134. $archive->add(
  135. $add,
  136. PCLZIP_OPT_REMOVE_PATH, $attach,
  137. PCLZIP_OPT_ADD_PATH, 'files'
  138. );
  139.  
  140.  
  141. if (!file_exists(FILESDIR . 'download' . DIRECTORY_SEPARATOR . $type . DIRECTORY_SEPARATOR . $id . '.zip'))
  142. {
  143.  
  144. $error = 'При создании файла произошла ошибка. Попробуйте еще раз.';
  145.  
  146. }
  147. else
  148. {
  149.  
  150. $sql->query("UPDATE `mod_lib` SET `down_time` = '" . time() . "' WHERE `id` = '" . $id . "'");
  151. echo '<div class="fmenu">' . 'Библиотека' . ' | ' . $set['title'] . '</div>' .
  152. '<div class="msg"><a href="/lib/files/download/' . $type . '/' . $id . '.zip">Скачать</a></div>' .
  153. '<div class="post"><a href="?act=articles&amp;mod=view&amp;id=' . $id . '">Назад</a></div>';
  154.  
  155. }
  156.  
  157. }
  158.  
  159. }
  160.  
  161. }
  162. else
  163. {
  164.  
  165. echo '<div class="fmenu">' . 'Библиотека' . ' | ' . $set['title'] . '</div>' .
  166. '<div class="menu"><form action="?act=articles&amp;mod=download&amp;id=' . $id . '" method="post">
  167. Выберите тип файла:<br />' .
  168. '<input type="radio" name="arc_type" value="0" checked="checked" /> TXT<br />' .
  169. '<input type="radio" name="arc_type" value="1" /> HTML<br />' .
  170. '<input type="submit" name="submit" value="Скачать" /></form></div>' .
  171. '<div class="fmenu"><a href="?act=articles&amp;mod=view&amp;id=' . $id . '">Назад</a></div>';
  172.  
  173. }
  174.  
  175. }
  176. else
  177. {
  178.  
  179. $error = 'Статья не найдена';
  180.  
  181. }
  182.  
  183. }
  184. else
  185. {
  186.  
  187.  
  188. $error = 'Ошибка принятых данных';
  189.  
  190. }
  191.  
  192. if (!empty($error))
  193. {
  194.  
  195. $error .= '<br /><a href="?act=articles&amp;mod=download&amp;id=' . $id . '">Продолжить</a>';
  196.  
  197. }