Просмотр файла download/index.php

Размер файла: 9.98Kb
  1. <?php
  2. /**
  3. *@author Flyself
  4. */
  5. include '../engine/includes/start.php';
  6. $do = isset($_GET['do'])? $_GET['do'] : false;
  7. $error = false;
  8. $dir_load = 'download';
  9. $filesroot = '../' . $dir_load;
  10. $screenroot = $filesroot . '/screen';
  11. $loadroot = $filesroot . '/files';
  12. $set_down = array('mod' => 1, 'theme_screen' => 1, 'top' => 25);
  13. $old = $time - 259200;
  14. $array = array('add_cat', 'down_file', 'view', 'open_zip', 'jad_file', 'txt_in_jar', 'txt_in_zip', 'edit_about', 'edit_screen', 'file_more', 'load_file', 'del_file', 'comms', 'new_files', 'top_files', 'comms_all', 'recount', 'edit_cat', 'del_cat', 'scan_dir', 'mod_files', 'search');
  15. Core::get(array('text.class', 'page.class', 'cache.class'), 'classes');
  16.  
  17. function format($file)
  18. {
  19. return pathinfo($file, PATHINFO_EXTENSION);
  20. }
  21. function display_error($msg)
  22. {
  23. return '<div class="err">'.$msg.'</div>';
  24. }
  25. function check($str)
  26. {
  27. return my_esc($str, true);
  28. }
  29. function show_file($res_down = array())
  30. {
  31. global $filesroot;
  32. $out = '';
  33. $f1 = strrpos($res_down['name'], ".");
  34. $f2 = substr($res_down['name'], $f1 + 1, 999);
  35. $format_file = strtolower($f2);
  36. if ($format_file == 'jpg' || $format_file == 'jpeg' || $format_file == 'gif' || $format_file == 'png') {
  37. $preview = $res_down['dir'] . '/' . $res_down['name'];
  38. }
  39. /* else
  40. if ($format_file == 'thm' || $format_file == 'nth') {
  41. if (is_file('screen/' . $res_down['id'] . '.gif')) {
  42. $preview = 'screen/' . $res_down['id'] . '.gif';
  43. }
  44. else {
  45. $preview = 'images/easy.gif';
  46. }
  47. }*/
  48. if (isset($preview)) {
  49. //$out = '<img src="preview.php?type=1&amp;img=' . urlencode($preview) . '" alt="preview" />';
  50. $out = '<img src="'.htmlspecialchars($preview) . '" width="10%" alt="preview" />';
  51. }
  52. $out .= '<img src="' . $filesroot . '/images/' . (file_exists($filesroot . '/images/' . $format_file . '.png') ? $format_file . '.png' : 'file.gif') . '" alt="file" /> ';
  53. $out .= '<a href="?act=view&amp;id=' . $res_down['id'] . '">' . text::output($res_down['rus_name']) . '</a> (' . $res_down['field'] . ')';
  54. if (is_file('about/' . $res_down['id'] . '.txt')) {
  55. $about = file_get_contents('about/' . $res_down['id'] . '.txt');
  56. if (mb_strlen($about) > 100)
  57. $about = iconv('UTF-8', 'UTF-8//IGNORE', mb_substr($about, 0, 90, 'utf-8')) . '...';
  58. $out .= '<br />'.text::output($about);
  59. }
  60. $out .= '<div class="status"><a href="index.php?act=comms&amp;id=' . $res_down['id'] . '">Комментарии</a> (' . $res_down['total'] . ')</div>';
  61. return $out;
  62. }
  63.  
  64. if (in_array($act, $array) && file_exists('include/' . $act . '.php')) {
  65. require_once (H.'download/include/' . $act . '.php');
  66. }
  67. else {
  68. $tree = array();
  69. $sql->query("SELECT * FROM `down_files` WHERE `type` = 1 AND `id` = '$id' LIMIT 1");
  70. $cat = $sql->num_rows();
  71. $res_down_cat = $sql->fetch();
  72. $way = null;
  73. $dirid = $id;
  74. while ($dirid != '0' && $dirid != "") {
  75. $res_down = $sql->query("SELECT * FROM `down_files` WHERE `type` = 1 AND `id` = '$dirid' LIMIT 1")->fetch();
  76. $tree[] = '<a href="index.php?id=' . $dirid . '">' . text::output($res_down['rus_name']) . '</a>';
  77. $dirid = $res_down['refid'];
  78. }
  79. krsort($tree);
  80. //$way = implode(',', $tree);
  81. //$set['meta_keywords'] = $res_down_cat['rus_name'];
  82. //$set['meta_description']= strip_tags($way);
  83. $set['title'] = 'Загрузки' . ($id ? ' / ' . $res_down_cat['rus_name'] : null);
  84. include H.'engine/includes/head.php';
  85. $cache = new cache(H.'engine/files/tmp/download[dir='.$id.';page='.$cur_page.'].swc');
  86. if (!$cache->life())
  87. {
  88. ob_start();
  89.  
  90. if ($id) {
  91. if ($cat == 0 || !is_dir($res_down_cat['dir'] . '/' . $res_down_cat['name'])) {
  92. // Если неправильно выбран каталог, выводим ошибку
  93. echo 'Каталог не существует<br /><a href="index.php">К категориям</a>';
  94. include H.'engine/includes/foot.php';
  95. }
  96. $title_pages = mb_substr($res_down_cat['rus_name'], 0, 30);
  97. $textl = mb_strlen($res_down_cat['rus_name']) > 30 ? $title_pages . '...' : $title_pages;
  98.  
  99. $cdir = array_pop($tree);
  100. echo '<div class="p_m"><a href="index.php?">Загрузки</a>';
  101. if ($tree)
  102. {
  103. echo ' › '.implode(' › ', $tree);
  104. }
  105. echo ' › <b>' . strip_tags($cdir) . '</b></div>';
  106. $total_new = $sql->query("SELECT COUNT(*) FROM `down_files` WHERE `type` = '2' AND `time` > $old AND `dir` LIKE '" . ($res_down_cat['dir'] . '/' . $res_down_cat['name']) . "%'")->result();
  107. if($total_new)
  108. echo '<div class="menu_razd"><a href="index.php?act=new_files&amp;id=' . $id . '">Новые файлы</a> (' . $total_new . ')</div>';
  109. }
  110. else {
  111. echo '<div class="fmenu">Загрузки</div>';
  112. $total_mod = $sql->query("SELECT COUNT(*) FROM `down_files` WHERE `type` = '3'")->result();
  113. if($total_mod)
  114. echo '<div class="err"><a href="index.php?act=mod_files">Файлы на модерации</a> (' . $total_mod . ')</div>';
  115. $total_new = $sql->query("SELECT COUNT(*) FROM `down_files` WHERE `type` = '2' AND `time` > $old")->result();
  116. if($total_new)
  117. echo '<div class="p_t"><a href="index.php?act=new_files">Новые файлы</a> (' . $total_new . ')</div>';
  118. echo '
  119. <div class="menu_razd"><a href="index.php?act=top_files&amp;id=0">Популярные</a> | ',
  120. '<a href="index.php?act=top_files&amp;id=1">Самые комментируемые</a> | ',
  121. '<a href="index.php?act=comms_all">Обзор комментариев</a></div>';
  122. }
  123. // Подсчитываем число папок и файлов
  124. $total_cat = $sql->query("SELECT COUNT(*) FROM `down_files` WHERE `refid` = '$id' AND `type` = 1")->result();
  125. $total_files = $sql->query("SELECT COUNT(*) FROM `down_files` WHERE `refid` = '$id' AND `type` = 2")->result();
  126. $sum_total = $total_files + $total_cat;
  127. $page = new page($sum_total, $set['p_str']);
  128.  
  129. if ($sum_total) {
  130. // Сортировка
  131. $_SESSION['sort_down'] = $_SESSION['sort_down2'] = 0;
  132. if (isset($_POST['sort_down']))
  133. $_SESSION['sort_down'] = $_POST['sort_down'] ? 1 : 0;
  134. if (isset($_POST['sort_down2']))
  135. $_SESSION['sort_down2'] = $_POST['sort_down2'] ? 1 : 0;
  136. $sql_sort = $_SESSION['sort_down'] ? '`name`' : '`time`';
  137. $sql_sort .= $_SESSION['sort_down2'] ? ' ASC' : ' DESC';
  138. $sql->query("SELECT * FROM `down_files` WHERE `refid` = '$id' AND `type` < 3 ORDER BY `type` ASC, $sql_sort LIMIT ".$page->limit());
  139. $i = 1;
  140. //Выводим список папок и файлов
  141. while ($res_down = $sql->fetch()) {
  142. echo $i % 2 ? '<div class="p_t">' : '<div class="p_m">';
  143. //$preview = '';
  144. if ($res_down['type'] == 1) {
  145. echo '<img src="' . $filesroot . '/images/cat.gif" alt="cat" /> <a href="index.php?id=' . $res_down['id'] . '">' . text::output($res_down['rus_name']) . '</a> (' . $res_down['total'] . ')';
  146. if ($res_down['field'])
  147. echo '<div class="status">Расширения для выгрузки: ' . $res_down['text'] . '</div>';
  148. }
  149. else
  150. echo show_file($res_down);
  151. echo '</div>';
  152. ++$i;
  153. }
  154. }
  155. //else
  156. // echo '<div class="err">В данной категории нет файлов</div>';
  157. if ($id)
  158. {
  159. echo '<div class="menu_razd">Загрузки / ';
  160. if ($total_cat > 0)
  161. echo 'Папок: ' . $total_cat;
  162. echo '&nbsp;&nbsp;';
  163. if ($total_files > 0)
  164. echo 'Файлов: ' . $total_files;
  165. echo '</div>';
  166. }
  167. // Постраничная навигация
  168. $page->display('index.php?id=' . $id . '&amp;');
  169. $cache->write();
  170. }
  171. echo $cache->read();
  172.  
  173. if ($moder) {
  174. // Выводим ссылки на модерские функции
  175. echo '<div class="menu">';
  176. echo '<a href="index.php?act=recount&amp;cat&amp;id=' . $id . '">Пересчитать файлы в папке</a><br /><a href="index.php?act=recount">Пересчитать файлы в ЗЦ</a><br /><a href="index.php?act=add_cat&amp;id=' . $id . '">Создать папку</a><br/>';
  177. if ($id) {
  178. $del_cat = $sql->query("SELECT COUNT(*) FROM `down_files` WHERE `type` = 1 AND`refid` = '$id'")->result();
  179. if (!$del_cat) {
  180. echo '<a href="index.php?act=del_cat&amp;id=' . $id . '">Удалить папку</a><br/>';
  181. }
  182. echo '<a href="index.php?act=edit_cat&amp;id=' . $id . '">Изменить папку</a><br/>';
  183. echo '<a href="index.php?act=down_file&amp;id=' . $id . '">Выгрузить файл</a><br />';
  184. //echo '<a href="index.php?act=import&amp;id=' . $id . '">Импортировать файл</a><br />';
  185. }
  186. echo '<a href="index.php?act=scan_dir&amp;id=' . $id . '">Обновить</a> ' . ($id ? '| <a href="index.php?act=scan_dir">ЗЦ</a>' : '') . ' <br/><a href="index.php?act=scan_dir&amp;do=clean&amp;id=' . $id . '">Очистка БД от мусора</a>';
  187. echo'</div>';
  188.  
  189. }
  190. else
  191. if ($id)
  192. echo '<div class="menu"><a href="index.php?act=down_file&amp;id=' . $id . '">Выгрузить файл</a></div>';
  193. echo '<div class="post"><a href="index.php?act=search">Поиск</a>';
  194. if (!empty($cat))
  195. echo '<br /><a href="index.php">В загрузки</a>';
  196. echo '</div>';
  197. }
  198.  
  199. include H.'engine/includes/foot.php';