Просмотр файла app/Http/Controllers/Load/DownController.php

Размер файла: 18.44Kb
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Http\Controllers\Load;
  6.  
  7. use App\Http\Controllers\Controller;
  8. use App\Models\File;
  9. use App\Models\Load;
  10. use App\Models\User;
  11. use Exception;
  12. use App\Classes\Validator;
  13. use App\Models\Comment;
  14. use App\Models\Down;
  15. use App\Models\Flood;
  16. use App\Models\Reader;
  17. use Illuminate\Database\Query\JoinClause;
  18. use Illuminate\Http\RedirectResponse;
  19. use Illuminate\Http\Request;
  20. use Illuminate\View\View;
  21. use PhpZip\ZipFile;
  22. use Symfony\Component\HttpFoundation\Response;
  23.  
  24. class DownController extends Controller
  25. {
  26. /**
  27. * Просмотр загрузки
  28. *
  29. * @param int $id
  30. *
  31. * @return View
  32. */
  33. public function index(int $id): View
  34. {
  35. $down = Down::query()
  36. ->select('downs.*', 'pollings.vote')
  37. ->where('downs.id', $id)
  38. ->leftJoin('pollings', static function (JoinClause $join) {
  39. $join->on('downs.id', 'pollings.relate_id')
  40. ->where('pollings.relate_type', Down::$morphName)
  41. ->where('pollings.user_id', getUser('id'));
  42. })
  43. ->with('category.parent')
  44. ->first();
  45.  
  46. if (! $down) {
  47. abort(404, __('loads.down_not_exist'));
  48. }
  49.  
  50. if (! isAdmin(User::ADMIN) && (! $down->active && getUser() && getUser('id') !== $down->user_id)) {
  51. abort(200, __('loads.down_not_verified'));
  52. }
  53.  
  54. $allowDownload = getUser() || setting('down_guest_download');
  55.  
  56. return view('loads/down', compact('down', 'allowDownload'));
  57. }
  58.  
  59. /**
  60. * Редактирование загрузки
  61. *
  62. * @param int $id
  63. * @param Request $request
  64. * @param Validator $validator
  65. *
  66. * @return View|RedirectResponse
  67. */
  68. public function edit(int $id, Request $request, Validator $validator)
  69. {
  70. /** @var Down $down */
  71. $down = Down::query()->where('user_id', getUser('id'))->find($id);
  72.  
  73. if (! $down) {
  74. abort(404, __('loads.down_not_exist'));
  75. }
  76.  
  77. if ($down->active) {
  78. abort(200, __('loads.down_verified'));
  79. }
  80.  
  81. if ($request->isMethod('post')) {
  82. $title = $request->input('title');
  83. $text = $request->input('text');
  84. $files = (array) $request->file('files');
  85.  
  86. $validator->equal($request->input('_token'), csrf_token(), __('validator.token'))
  87. ->length($title, 3, 50, ['title' => __('validator.text')])
  88. ->length($text, 50, 5000, ['text' => __('validator.text')]);
  89.  
  90. $duplicate = Down::query()->where('title', $title)->where('id', '<>', $down->id)->count();
  91. $validator->empty($duplicate, ['title' => __('loads.down_name_exists')]);
  92.  
  93. $existFiles = $down->files ? $down->files->count() : 0;
  94. $validator->notEmpty(count($files) + $existFiles, ['files' => __('validator.file_upload_one')]);
  95. $validator->lte(count($files) + $existFiles, setting('maxfiles'), ['files' => __('validator.files_max', ['max' => setting('maxfiles')])]);
  96.  
  97. if ($validator->isValid()) {
  98. $rules = [
  99. 'maxsize' => setting('fileupload'),
  100. 'extensions' => explode(',', setting('allowextload')),
  101. 'minweight' => 100,
  102. ];
  103.  
  104. foreach ($files as $file) {
  105. $validator->file($file, $rules, ['files' => __('validator.file_upload_failed')]);
  106. }
  107. }
  108.  
  109. if ($validator->isValid()) {
  110. $down->update([
  111. 'title' => $title,
  112. 'text' => $text,
  113. ]);
  114.  
  115. foreach ($files as $file) {
  116. $down->uploadAndConvertFile($file);
  117. }
  118.  
  119. clearCache(['statLoads', 'recentDowns']);
  120. setFlash('success', __('loads.down_edited_success'));
  121.  
  122. return redirect('downs/' . $down->id);
  123. }
  124.  
  125. setInput($request->all());
  126. setFlash('danger', $validator->getErrors());
  127. }
  128.  
  129. return view('loads/edit', compact('down'));
  130. }
  131.  
  132. /**
  133. * Удаление файла
  134. *
  135. * @param int $id
  136. * @param int $fid
  137. *
  138. * @return RedirectResponse
  139. * @throws Exception
  140. */
  141. public function deleteFile(int $id, int $fid): RedirectResponse
  142. {
  143. /** @var Down $down */
  144. $down = Down::query()->where('user_id', getUser('id'))->find($id);
  145.  
  146. if (! $down) {
  147. abort(404, __('loads.down_not_exist'));
  148. }
  149.  
  150. /** @var File $file */
  151. $file = $down->files()->find($fid);
  152.  
  153. if (! $file) {
  154. abort(404, __('loads.down_not_exist'));
  155. }
  156.  
  157. deleteFile(public_path($file->hash));
  158.  
  159. setFlash('success', __('loads.file_deleted_success'));
  160. $file->delete();
  161.  
  162. return redirect('downs/edit/' . $down->id);
  163. }
  164.  
  165. /**
  166. * Создание загрузки
  167. *
  168. * @param Request $request
  169. * @param Validator $validator
  170. * @param Flood $flood
  171. *
  172. * @return View|RedirectResponse
  173. */
  174. public function create(Request $request, Validator $validator, Flood $flood)
  175. {
  176. $cid = int($request->input('cid'));
  177.  
  178. if (! isAdmin() && ! setting('downupload')) {
  179. abort(200, __('loads.down_closed'));
  180. }
  181.  
  182. if (! $user = getUser()) {
  183. abort(403, __('main.not_authorized'));
  184. }
  185.  
  186. $loads = Load::query()
  187. ->where('parent_id', 0)
  188. ->with('children')
  189. ->orderBy('sort')
  190. ->get();
  191.  
  192. if ($loads->isEmpty()) {
  193. abort(200, __('loads.empty_loads'));
  194. }
  195.  
  196. if ($request->isMethod('post')) {
  197. $title = $request->input('title');
  198. $text = $request->input('text');
  199. $files = (array) $request->file('files');
  200.  
  201. /** @var Load $category */
  202. $category = Load::query()->find($cid);
  203.  
  204. $validator
  205. ->equal($request->input('_token'), csrf_token(), __('validator.token'))
  206. ->length($title, 3, 50, ['title' => __('validator.text')])
  207. ->length($text, 50, 5000, ['text' => __('validator.text')])
  208. ->false($flood->isFlood(), ['msg' => __('validator.flood', ['sec' => $flood->getPeriod()])])
  209. ->notEmpty($category, ['category' => __('loads.load_not_exist')]);
  210.  
  211. if ($category) {
  212. $validator->empty($category->closed, ['category' => __('loads.load_closed')]);
  213.  
  214. $duplicate = Down::query()->where('title', $title)->count();
  215. $validator->empty($duplicate, ['title' => __('loads.down_name_exists')]);
  216. }
  217.  
  218. $validator->notEmpty($files, ['files' => __('validator.file_upload_one')]);
  219. $validator->lte(count($files), setting('maxfiles'), ['files' => __('validator.files_max', ['max' => setting('maxfiles')])]);
  220.  
  221. if ($validator->isValid()) {
  222. $rules = [
  223. 'maxsize' => setting('fileupload'),
  224. 'extensions' => explode(',', setting('allowextload')),
  225. 'minweight' => 100,
  226. ];
  227.  
  228. foreach ($files as $file) {
  229. $validator->file($file, $rules, ['files' => __('validator.file_upload_failed')]);
  230. }
  231. }
  232.  
  233. if ($validator->isValid()) {
  234. /** @var Down $down */
  235. $down = Down::query()->create([
  236. 'category_id' => $category->id,
  237. 'title' => $title,
  238. 'text' => $text,
  239. 'user_id' => $user->id,
  240. 'created_at' => SITETIME,
  241. 'active' => isAdmin(User::ADMIN),
  242. ]);
  243.  
  244. foreach ($files as $file) {
  245. $down->uploadAndConvertFile($file);
  246. }
  247.  
  248. if (isAdmin(User::ADMIN)) {
  249. $down->category->increment('count_downs');
  250. clearCache(['statLoads', 'recentDowns']);
  251. } else {
  252. $admins = User::query()->whereIn('level', [User::BOSS, User::ADMIN])->get();
  253.  
  254. if ($admins->isNotEmpty()) {
  255. $text = textNotice('down_upload', ['url' => '/admin/downs/edit/' . $down->id, 'title' => $down->title]);
  256.  
  257. /** @var User $admin */
  258. foreach ($admins as $admin) {
  259. $admin->sendMessage($user, $text, false);
  260. }
  261. }
  262. }
  263.  
  264. $flood->saveState();
  265.  
  266. setFlash('success', __('loads.file_uploaded_success'));
  267.  
  268. return redirect('downs/' . $down->id);
  269. }
  270.  
  271. setInput($request->all());
  272. setFlash('danger', $validator->getErrors());
  273. }
  274.  
  275. return view('loads/create', compact('loads', 'cid'));
  276. }
  277.  
  278. /**
  279. * Скачивание файла
  280. *
  281. * @param int $id
  282. * @param Validator $validator
  283. *
  284. * @return Response
  285. */
  286. public function download(int $id, Validator $validator): Response
  287. {
  288. /** @var File $file */
  289. $file = File::query()->where('relate_type', Down::$morphName)->find($id);
  290.  
  291. if (! $file || ! $file->relate) {
  292. abort(404, __('loads.down_not_exist'));
  293. }
  294.  
  295. if (! (getUser() || setting('down_guest_download'))) {
  296. abort(403, __('loads.download_authorized'));
  297. }
  298.  
  299. if (! $file->relate->active && ! isAdmin(User::ADMIN)) {
  300. abort(200, __('loads.down_not_verified'));
  301. }
  302.  
  303. $validator->true(file_exists(public_path($file->hash)), __('loads.down_not_exist'));
  304.  
  305. if ($validator->isValid()) {
  306. Reader::countingStat($file->relate);
  307.  
  308. return response()->download(public_path($file->hash), $file->name);
  309. }
  310.  
  311. setFlash('danger', $validator->getErrors());
  312.  
  313. return redirect('downs/' . $file->relate->id);
  314. }
  315.  
  316. /**
  317. * Комментарии
  318. *
  319. * @param int $id
  320. * @param Request $request
  321. * @param Validator $validator
  322. * @param Flood $flood
  323. *
  324. * @return View|RedirectResponse
  325. */
  326. public function comments(int $id, Request $request, Validator $validator, Flood $flood)
  327. {
  328. /** @var Down $down */
  329. $down = Down::query()->find($id);
  330.  
  331. if (! $down) {
  332. abort(404, __('loads.down_not_exist'));
  333. }
  334.  
  335. if (! $down->active) {
  336. abort(200, __('loads.down_not_verified'));
  337. }
  338.  
  339. if ($request->isMethod('post')) {
  340. $msg = $request->input('msg');
  341.  
  342. $validator
  343. ->true(getUser(), __('main.not_authorized'))
  344. ->equal($request->input('_token'), csrf_token(), __('validator.token'))
  345. ->length($msg, 5, setting('comment_length'), ['msg' => __('validator.text')])
  346. ->false($flood->isFlood(), ['msg' => __('validator.flood', ['sec' => $flood->getPeriod()])]);
  347.  
  348. if ($validator->isValid()) {
  349. /** @var Comment $comment */
  350. $comment = $down->comments()->create([
  351. 'text' => antimat($msg),
  352. 'user_id' => getUser('id'),
  353. 'created_at' => SITETIME,
  354. 'ip' => getIp(),
  355. 'brow' => getBrowser(),
  356. ]);
  357.  
  358. $user = getUser();
  359. $user->increment('allcomments');
  360. $user->increment('point');
  361. $user->increment('money', 5);
  362.  
  363. $down->increment('count_comments');
  364.  
  365. $flood->saveState();
  366. sendNotify($msg, '/downs/comment/' . $down->id . '/' . $comment->id, $down->title);
  367.  
  368. setFlash('success', __('main.comment_added_success'));
  369.  
  370. return redirect('downs/end/' . $down->id);
  371. }
  372.  
  373. setInput($request->all());
  374. setFlash('danger', $validator->getErrors());
  375. }
  376.  
  377. $comments = $down->comments()
  378. ->orderBy('created_at')
  379. ->with('user')
  380. ->paginate(setting('comments_per_page'));
  381.  
  382. return view('loads/comments', compact('down', 'comments'));
  383. }
  384.  
  385. /**
  386. * Подготовка к редактированию комментария
  387. *
  388. * @param int $id
  389. * @param int $cid
  390. * @param Request $request
  391. * @param Validator $validator
  392. *
  393. * @return View|RedirectResponse
  394. */
  395. public function editComment(int $id, int $cid, Request $request, Validator $validator)
  396. {
  397. $down = Down::query()->find($id);
  398.  
  399. if (! $down) {
  400. abort(404, __('loads.down_not_exist'));
  401. }
  402.  
  403. $page = int($request->input('page', 1));
  404.  
  405. if (! getUser()) {
  406. abort(403, __('main.not_authorized'));
  407. }
  408.  
  409. $comment = $down->comments()
  410. ->where('id', $cid)
  411. ->where('user_id', getUser('id'))
  412. ->first();
  413.  
  414. if (! $comment) {
  415. abort(200, __('main.comment_deleted'));
  416. }
  417.  
  418. if ($comment->created_at + 600 < SITETIME) {
  419. abort(200, __('main.editing_impossible'));
  420. }
  421.  
  422. if ($request->isMethod('post')) {
  423. $msg = $request->input('msg');
  424. $page = int($request->input('page', 1));
  425.  
  426. $validator
  427. ->equal($request->input('_token'), csrf_token(), __('validator.token'))
  428. ->length($msg, 5, setting('comment_length'), ['msg' => __('validator.text')]);
  429.  
  430. if ($validator->isValid()) {
  431. $msg = antimat($msg);
  432.  
  433. $comment->update([
  434. 'text' => $msg,
  435. ]);
  436.  
  437. setFlash('success', __('main.comment_edited_success'));
  438.  
  439. return redirect('downs/comments/' . $id . '?page=' . $page);
  440. }
  441.  
  442. setInput($request->all());
  443. setFlash('danger', $validator->getErrors());
  444. }
  445.  
  446. return view('loads/editcomment', compact('down', 'comment', 'page'));
  447. }
  448.  
  449. /**
  450. * Переадресация на последнюю страницу
  451. *
  452. * @param int $id
  453. *
  454. * @return RedirectResponse
  455. */
  456. public function end(int $id): RedirectResponse
  457. {
  458. /** @var Down $down */
  459. $down = Down::query()->find($id);
  460.  
  461. if (! $down) {
  462. abort(404, __('loads.down_not_exist'));
  463. }
  464.  
  465. $total = $down->comments()->count();
  466.  
  467. $end = ceil($total / setting('comments_per_page'));
  468.  
  469. return redirect('downs/comments/' . $down->id . '?page=' . $end);
  470. }
  471.  
  472. /**
  473. * Просмотр zip архива
  474. *
  475. * @param int $id
  476. *
  477. * @return View
  478. */
  479. public function zip(int $id): View
  480. {
  481. /** @var File $file */
  482. $file = File::query()->where('relate_type', Down::$morphName)->find($id);
  483.  
  484. if (! $file || ! $file->relate) {
  485. abort(404, __('loads.down_not_exist'));
  486. }
  487.  
  488. if (! $file->relate->active && ! isAdmin(User::ADMIN)) {
  489. abort(200, __('loads.down_not_verified'));
  490. }
  491.  
  492. if ($file->extension !== 'zip') {
  493. abort(200, __('loads.archive_only_zip'));
  494. }
  495.  
  496. try {
  497. $archive = new ZipFile();
  498. $archive->openFile(public_path($file->hash));
  499.  
  500. $down = $file->relate;
  501. $getDocuments = array_values($archive->getAllInfo());
  502. $viewExt = Down::getViewExt();
  503.  
  504. $documents = paginate($getDocuments, setting('ziplist'));
  505. } catch (Exception $e) {
  506. abort(200, __('loads.archive_not_open'));
  507. }
  508.  
  509. return view('loads/zip', compact('down', 'file', 'documents', 'viewExt'));
  510. }
  511.  
  512. /**
  513. * Просмотр файла в zip архиве
  514. *
  515. * @param int $id
  516. * @param int $fid
  517. *
  518. * @return View
  519. */
  520. public function zipView(int $id, int $fid): View
  521. {
  522. /** @var File $file */
  523. $file = File::query()->where('relate_type', Down::$morphName)->find($id);
  524.  
  525. if (! $file || ! $file->relate) {
  526. abort(404, __('loads.down_not_exist'));
  527. }
  528.  
  529. if (! $file->relate->active && ! isAdmin(User::ADMIN)) {
  530. abort(200, __('loads.down_not_verified'));
  531. }
  532.  
  533. if ($file->extension !== 'zip') {
  534. abort(200, __('loads.archive_only_zip'));
  535. }
  536.  
  537. try {
  538. $archive = new ZipFile();
  539. $archive->openFile(public_path($file->hash));
  540. $getDocuments = array_values($archive->getAllInfo());
  541. $document = $getDocuments[$fid] ?? null;
  542.  
  543. $content = $archive[$document->getName()];
  544.  
  545. if ($document->getSize() > 0 && preg_match("/\.(gif|png|bmp|jpg|jpeg)$/", $document->getName())) {
  546. $ext = getExtension($document->getName());
  547.  
  548. header('Content-type: image/' . $ext);
  549. header('Content-Length: ' . strlen($content));
  550. header('Content-Disposition: inline; filename="' . $document->getName() . '";');
  551. exit($content);
  552. }
  553.  
  554. if (! isUtf($content)) {
  555. $content = winToUtf($content);
  556. }
  557.  
  558. $down = $file->relate;
  559. } catch (Exception $e) {
  560. abort(200, __('loads.file_not_read'));
  561. }
  562.  
  563. return view('loads/zip_view', compact('down', 'file', 'document', 'content'));
  564. }
  565.  
  566. /**
  567. * RSS комментариев
  568. *
  569. * @param int $id
  570. *
  571. * @return View
  572. */
  573. public function rss(int $id): View
  574. {
  575. $down = Down::query()->where('id', $id)->with('lastComments')->first();
  576.  
  577. if (! $down) {
  578. abort(404, __('loads.down_not_exist'));
  579. }
  580.  
  581. return view('loads/rss_comments', compact('down'));
  582. }
  583.  
  584. /**
  585. * Переход к сообщению
  586. *
  587. * @param int $id
  588. * @param int $cid
  589. *
  590. * @return RedirectResponse
  591. */
  592. public function viewComment(int $id, int $cid): RedirectResponse
  593. {
  594. /** @var Down $down */
  595. $down = Down::query()->find($id);
  596.  
  597. if (! $down) {
  598. abort(404, __('loads.down_not_exist'));
  599. }
  600.  
  601. $total = $down->comments()
  602. ->where('id', '<=', $cid)
  603. ->orderBy('created_at')
  604. ->count();
  605.  
  606. $end = ceil($total / setting('comments_per_page'));
  607.  
  608. return redirect('downs/comments/' . $down->id . '?page=' . $end . '#comment_' . $cid);
  609. }
  610. }