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

Размер файла: 9.51Kb
  1. <?php
  2.  
  3. $sql->query("SELECT * FROM `down_files` WHERE `id` = '$id' AND (`type` = 2 OR `type` = 3) LIMIT 1");
  4. $res_down = $sql->fetch();
  5. if ($sql->num_rows() == 0 || !is_file($res_down['dir'] . '/' . $res_down['name'])) {
  6. $set['title'] = 'Загрузки ';
  7. include H.'engine/includes/head.php';
  8.  
  9. echo 'Файл не найден<br /><a href="index.php">К категориям</a>';
  10. include H.'engine/includes/foot.php';
  11. }
  12.  
  13. //$title_pages = output_text(mb_substr($res_down['rus_name'], 0, 30));
  14. //$textl = mb_strlen($res_down['rus_name']) > 30 ? $title_pages . '...' : $title_pages;
  15.  
  16. $tree = array();
  17. $dirid = $res_down['refid'];
  18. while ($dirid != '0' && $dirid != "") {
  19. $sql->query("SELECT `rus_name`, `refid` FROM `down_files` WHERE `type` = 1 AND `id` = '$dirid' LIMIT 1");
  20. $res = $sql->fetch();
  21. $tree[] = '<a href="index.php?id=' . $dirid . '">' . text::output($res['rus_name']) . '</a>';
  22. $dirid = $res['refid'];
  23. }
  24. krsort($tree);
  25. //$way = null;
  26. //foreach ($tree as $value) {
  27. // $way .= $value . ', ';
  28. //}
  29. //$way .= $res_down['name'];
  30.  
  31. //$set['meta_keywords']= strip_tags($way) .' Tadochi';
  32. //$set['meta_description']= htmlspecialchars(file_get_contents(H.'download/about/' . $id . '.txt'));
  33.  
  34. $set['title'] = 'Загрузки / '.$res_down['name'];
  35. include H.'engine/includes/head.php';
  36. $cache = new cache(H.'engine/files/tmp/download[file='.$id.';page='.(isset($_GET['page']) ? intval($_GET['page']) : 1).'].swc');
  37. if (!$cache->life(60))
  38. {
  39. ob_start();
  40. if ($res_down['type'] == 3) {
  41. echo '<div class="err">Файл находится на модерации</div>';
  42. if (!$admin) {
  43. include H.'engine/includes/foot.php';
  44. }
  45.  
  46. }
  47. $f1 = strrpos($res_down['name'], ".");
  48. $f2 = substr($res_down['name'], $f1 + 1, 999);
  49. $format_file = strtolower($f2);
  50.  
  51.  
  52. echo '<div class="fmenu">' . text::output($res_down['rus_name']) . '</div>';
  53. $text_info = '';
  54. $screen = array();
  55. if (is_dir($screenroot . '/' . $id)) {
  56. $screen = glob(H . '../download/screen/' . $id . '/*');
  57. }
  58. if ($format_file == 'jpg' || $format_file == 'jpeg' || $format_file == 'gif' || $format_file == 'png') {
  59. $info_file = getimagesize($res_down['dir'] . '/' . $res_down['name']);
  60. echo '<div class="post"><img src="' . htmlspecialchars($res_down['dir'] . '/' . $res_down['name']) . '" width="50%" alt="preview" /></div>';
  61. $text_info = '<b>Разрешение: </b>' . $info_file[0] . 'x' . $info_file[1] . ' px<br />';
  62. }
  63. else
  64. if (($format_file == '3gp' || $format_file == 'avi' || $format_file == 'mp4') && extension_loaded('ffmpeg') && !$screen) {
  65. //TODO: написать позже, когда скрипт будет на хосте
  66. //$info_file = new ffmpeg_movie($res_down['dir']. '/' . $res_down['name']);
  67. } elseif (($format_file == 'thm' || $format_file == 'nth') && !$screen && $set_down['theme_screen']) {
  68. /* $file_id = $id;
  69. require_once ("include/screen_theme.php");
  70. $screen = 'screen/' . $id . '.gif'; */
  71. } elseif ($format_file == 'mp3') {
  72. require_once ("include/class_mp3.php");
  73. $mp3 = new MP3_Id();
  74. $res_downult = $mp3->read($res_down['dir'] . '/' . $res_down['name']);
  75. $res_downult = $mp3->study();
  76. $text_info = '<b>Исполнитель</b>: ' . output_text($mp3->artists) . '<br /><b>Альбом</b>: ' . output_text($mp3->album) . '<br /><b>Год выхода</b>: ' . $mp3->year . '<br />
  77. <b>Композиция:</b> ' . output_text($mp3->name) . '<br/><b>Каналы:</b> ' . output_text($mp3->getTag('mode')) . '<br/><b>Битрейт:</b> ' . ($mp3->getTag('bitrate') > 0 ? $mp3->getTag('bitrate') : 'Не удалось распознать кодек') . '<br />';
  78. }
  79. if ($screen) {
  80. echo '<div class="p_m"><b>Скриншот';
  81. $total = count($screen);
  82. $page = new page($total, 1);
  83. $start=$page->start();//1*$page->page()-1;
  84. if ($total > 1) {
  85. $end = $start + 1;
  86. if ($end > $total)
  87. $end = $total;
  88. echo ' (' . $end . '/' . $total . '):</b><br />';
  89. for ($i = $start; $i < $end; $i++) {
  90. echo '<img src="' . htmlentities($screen[$i], ENT_QUOTES, 'utf-8') . '" alt="screen" />';
  91. }
  92. $page->display('index.php?act=view&amp;id=' . $id . '&amp;');
  93.  
  94. }
  95. else {
  96. echo ':</b><br /><img src="' . htmlentities($screen[0], ENT_QUOTES, 'utf-8') . '" alt="screen"/>';
  97. }
  98. echo '</div>';
  99. }
  100. $user2 = $sql->query("SELECT `nick`, `id` FROM `user` WHERE `id`='" . $res_down['user_id'] . "' LIMIT 1")->fetch();
  101. if ($user2['id'])
  102. $user_up = '<a href="/pages/user.php?id=' . $user2['id'] . '">' . $user2['nick'] . '</a>';
  103. else
  104. $user_up = '[удален]';
  105. echo '<div class="post"><b>Имя на сервере:</b> ' . $res_down['name'] . '<br /><b>Скачали:</b> ' . $res_down['field'] . ' раз(а)
  106. <br /><b>Выгрузил:</b> ' . $user_up . '<br />' . $text_info;
  107. if (is_file('about/' . $id . '.txt'))
  108. echo '<b>Описание:</b> ' . text::output(file_get_contents('about/' . $id . '.txt'));
  109. echo '<div class="sub"></div>';
  110. $file_rate = explode('|', $res_down['rate']);
  111. if ((isset($_GET['plus']) || isset($_GET['minus'])) && !isset($_SESSION['rate_file_' . $id])) {
  112. if (isset($_GET['plus']))
  113. $file_rate[0] = $file_rate[0] + 1;
  114. else
  115. $file_rate[1] = $file_rate[1] + 1;
  116. $sql->query("UPDATE `down_files` SET `rate`='" . $file_rate[0] . '|' . $file_rate[1] . "' WHERE `id`='$id'");
  117. echo '<b><span class="green">Ваш голос принят</span></b><br />';
  118. $_SESSION['rate_file_' . $id] = 1;
  119. }
  120. $sum = ($file_rate[1] + $file_rate[0]) ? round(100 / ($file_rate[1] + $file_rate[0]) * $file_rate[0]) : 50;
  121. echo '<b>Рейтинг файла</b>' . (!isset($_SESSION['rate_file_' . $id]) ? '(<a href="index.php?act=view&amp;id=' . $id . '&amp;plus">+</a>/<a href="index.php?act=view&amp;id=' . $id . '&amp;minus">-</a>)' : '(+/-)') . ': <b><span class="green">' . $file_rate[0] .
  122. '</span>/<span class="red">' . $file_rate[1] . '</span></b>
  123. <br /><img src="vote_img.php?img=' . $sum . '" alt="Рейтинг" /><br /></div><div class="p_m"><table width="100%"><tr><td width="16" valign="top"><img src="' . $filesroot . '/images/' . (file_exists($filesroot . '/images/' . $format_file .
  124. '.png') ? $format_file . '.png' : 'file.gif') . '" alt="file" /></td><td><a href="index.php?act=load_file&amp;id=' . $id . '">' . $res_down['text'] . '</a> (' . text::size_data(filesize($res_down['dir'] . '/' . $res_down['name'])) . ') <div class="sub">Добавлен: ' .
  125. Core::time($res_down['time']);
  126. if ($format_file == 'jar')
  127. echo ', <a href="index.php?act=jad_file&amp;id=' . $id . '">JAD файл</a>';
  128. elseif ($format_file == 'txt') {
  129. echo ', Скачать в <a href="index.php?act=txt_in_zip&amp;id=' . $id . '">ZIP</a> / <a href="index.php?act=txt_in_jar&amp;id=' . $id . '">JAR</a>';
  130. }
  131. else
  132. if ($format_file == 'zip')
  133. echo ', <a href="index.php?act=open_zip&amp;id=' . $id . '">Открыть архив</a>';
  134. echo '</div></td></tr></table></div>';
  135. $sql->query("SELECT * FROM `down_more` WHERE `refid` = '$id'");
  136. $k = 1;
  137. if ($sql->num_rows()) {
  138. while ($res_file_more = $sql->fetch()) {
  139. echo ($k % 2) ? '<div class="p_m">' : '<div class="p_t">';
  140. $format = explode('.', $res_file_more['name']);
  141. $format_file = strtolower($format[count($format) - 1]);
  142. echo '<table width="100%"><tr><td width="16" valign="top"><img src="' . $filesroot . '/images/' . (file_exists($filesroot . '/images/' . $format_file . '.png') ? $format_file . '.png' : 'file.gif') . '" alt="file" />
  143. </td><td><a href="index.php?act=load_file&amp;id=' . $id . '&amp;more=' . $res_file_more['id'] . '">' . $res_file_more['rus_name'] . '</a> (' . size_file($res_file_more['size']) . ')
  144. <div class="sub"> Добавлен: ' . Core::time($res_file_more['time']);
  145. if ($format_file == 'jar')
  146. echo ', <a href="index.php?act=jad_file&amp;id=' . $id . '&amp;more=' . $res_file_more['id'] . '">JAD файл</a>';
  147. elseif ($format_file == 'txt') {
  148. echo ', Скачать в <a href="index.php?act=txt_in_zip&amp;id=' . $id . '&amp;more=' . $res_file_more['id'] . '">ZIP</a> / <a href="index.php?act=txt_in_jar&amp;id=' . $id . '&amp;more=' . $res_file_more['id'] . '">JAR</a>';
  149. }
  150. else
  151. if ($format_file == 'zip')
  152. echo ', <a href="index.php?act=open_zip&amp;id=' . $id . '&amp;more=' . $res_file_more['id'] . '">Открыть архив</a>';
  153. echo '</div></td></tr></table></div>';
  154. ++$k;
  155. }
  156. }
  157. echo '<div class="menu"><a href="index.php?act=comms&amp;id=' . $res_down['id'] . '">Комментарии</a> (' . $res_down['total'] . ')</div>';
  158. $cdir = array_pop($tree);
  159. echo '<div class="p_m"><a href="index.php?">Загрузки</a> &raquo; ';
  160. foreach ($tree as $value) {
  161. echo $value . ' &raquo; ';
  162. }
  163. echo '<a href="index.php?id=' . $res_down['refid'] . '">' . strip_tags($cdir) . '</a></div>';
  164. $cache->write();
  165. }
  166. echo $cache->read();
  167. if ($admin) {
  168. echo '<div class="menu">';
  169. echo '<a href="index.php?act=edit_about&amp;id=' . $id . '">Изменить описание</a><br /><a href="index.php?act=edit_screen&amp;id=' . $id . '">Управление скриншотами</a><br />';
  170. echo '<a href="index.php?act=file_more&amp;id=' . $id . '">Дополнительные файлы</a><br /><a href="index.php?act=del_file&amp;id=' . $id . '">Удалить файл</a></div>';
  171. }