mirror of
https://github.com/openvk/openvk
synced 2024-12-23 00:51:03 +03:00
791c36416d
- Теперь видосы работают как аудио, пользователи могут добавлять и удалять видео из коллекции. Но, правда, после обновления пользователи потеряют все свои видео, потом подумаю как исправить - Ещё теперь видео можно загружать в группу, жесть. И на странице группы теперь показывается 2 случайных видео из группы - Возможно, исправлена загрузка видео под виндовс (а может я её сломал) - У видосов теперь сохраняется ширина и высота, а так же длина - У прикреплённого видео рядом с названием показывается его длина - Видео теперь размещаются в masonry layout. Если помимо видео у поста есть другие фотографии или другие видео, то показывается только обложка видео и кнопка проигрывания - В класс video в api добавлена поддержка просмотра видеозаписей из групп
171 lines
6.6 KiB
PHP
171 lines
6.6 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Presenters;
|
|
use openvk\Web\Models\Entities\Video;
|
|
use openvk\Web\Models\Repositories\{Users, Videos, Clubs};
|
|
use Nette\InvalidStateException as ISE;
|
|
|
|
final class VideosPresenter extends OpenVKPresenter
|
|
{
|
|
private $videos;
|
|
private $users;
|
|
protected $presenterName = "videos";
|
|
|
|
function __construct(Videos $videos, Users $users)
|
|
{
|
|
$this->videos = $videos;
|
|
$this->users = $users;
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
function renderList(int $id): void
|
|
{
|
|
if($id > 0)
|
|
$owner = $this->users->get($id);
|
|
else
|
|
$owner = (new Clubs)->get(abs($id));
|
|
|
|
if(!$owner) $this->notFound();
|
|
if($id > 0 && !$owner->getPrivacyPermission('videos.read', $this->user->identity ?? NULL))
|
|
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
|
|
|
|
$this->template->owner = $owner;
|
|
$this->template->canUpload = $id > 0 ? $id == $this->user->id : $owner->canBeModifiedBy($this->user->identity);
|
|
$this->template->videos = $id > 0 ? $this->videos->getByUser($owner, (int) ($this->queryParam("p") ?? 1)) : $this->videos->getByClub($owner, (int) ($this->queryParam("p") ?? 1));
|
|
$this->template->count = $this->videos->getVideosCountByEntityId($owner->getRealId());
|
|
$this->template->paginatorConf = (object) [
|
|
"count" => $this->template->count,
|
|
"page" => (int) ($this->queryParam("p") ?? 1),
|
|
"amount" => NULL,
|
|
"perPage" => 7,
|
|
];
|
|
}
|
|
|
|
function renderView(int $owner, int $vId): void
|
|
{
|
|
$user = $this->users->get($owner);
|
|
if(!$user) $this->notFound();
|
|
if(!$user->getPrivacyPermission('videos.read', $this->user->identity ?? NULL))
|
|
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
|
|
|
|
if($this->videos->getByOwnerAndVID($owner, $vId)->isDeleted()) $this->notFound();
|
|
|
|
$this->template->user = $user;
|
|
$this->template->video = $this->videos->getByOwnerAndVID($owner, $vId);
|
|
$this->template->cCount = $this->template->video->getCommentsCount();
|
|
$this->template->cPage = (int) ($this->queryParam("p") ?? 1);
|
|
$this->template->comments = iterator_to_array($this->template->video->getComments($this->template->cPage));
|
|
}
|
|
|
|
function renderUpload(): void
|
|
{
|
|
$this->assertUserLoggedIn();
|
|
$this->willExecuteWriteAction();
|
|
|
|
if(OPENVK_ROOT_CONF['openvk']['preferences']['videos']['disableUploading'])
|
|
$this->flashFail("err", tr("error"), tr("video_uploads_disabled"));
|
|
|
|
if($this->queryParam("gid")) {
|
|
$club = (new Clubs)->get((int)$this->queryParam("gid"));
|
|
|
|
if(!$club || !$club->canUploadVideo($this->user->identity))
|
|
$this->notFound();
|
|
}
|
|
|
|
$this->template->owner = $club ?: $this->user->identity;
|
|
if($_SERVER["REQUEST_METHOD"] === "POST") {
|
|
if(!empty($this->postParam("name"))) {
|
|
$video = new Video;
|
|
$video->setOwner($this->user->id);
|
|
$video->setName(ovk_proc_strtr($this->postParam("name"), 61));
|
|
$video->setDescription(ovk_proc_strtr($this->postParam("desc"), 300));
|
|
$video->setCreated(time());
|
|
|
|
try {
|
|
if(isset($_FILES["blob"]) && file_exists($_FILES["blob"]["tmp_name"]))
|
|
$video->setFile($_FILES["blob"]);
|
|
else if(!empty($this->postParam("link")))
|
|
$video->setLink($this->postParam("link"));
|
|
else
|
|
$this->flashFail("err", tr("no_video_error"), tr("no_video_description"));
|
|
} catch(\DomainException $ex) {
|
|
$this->flashFail("err", tr("error_video"), tr("file_corrupted"));
|
|
} catch(ISE $ex) {
|
|
$this->flashFail("err", tr("error_video"), tr("link_incorrect"));
|
|
}
|
|
|
|
$video->save();
|
|
|
|
$video->add(!isset($club) ? $this->user->identity : $club);
|
|
|
|
$this->redirect("/video" . $video->getPrettyId());
|
|
} else {
|
|
$this->flashFail("err", tr("error_video"), tr("no_name_error"));
|
|
}
|
|
}
|
|
}
|
|
|
|
function renderEdit(int $owner, int $vId): void
|
|
{
|
|
$this->assertUserLoggedIn();
|
|
$this->willExecuteWriteAction();
|
|
|
|
$video = $this->videos->getByOwnerAndVID($owner, $vId);
|
|
if(!$video)
|
|
$this->notFound();
|
|
if(is_null($this->user) || $this->user->id !== $owner)
|
|
$this->flashFail("err", tr("access_denied_error"), tr("access_denied_error_description"));
|
|
|
|
if($_SERVER["REQUEST_METHOD"] === "POST") {
|
|
$video->setName(empty($this->postParam("name")) ? NULL : $this->postParam("name"));
|
|
$video->setDescription(empty($this->postParam("desc")) ? NULL : $this->postParam("desc"));
|
|
$video->save();
|
|
|
|
$this->flash("succ", tr("changes_saved"), tr("changes_saved_video_comment"));
|
|
$this->redirect("/video" . $video->getPrettyId());
|
|
}
|
|
|
|
$this->template->video = $video;
|
|
}
|
|
|
|
function renderRemove(int $owner, int $vid): void
|
|
{
|
|
$this->assertUserLoggedIn();
|
|
$this->willExecuteWriteAction();
|
|
|
|
$video = $this->videos->getByOwnerAndVID($owner, $vid);
|
|
if(!$video)
|
|
$this->notFound();
|
|
$user = $this->user->id;
|
|
|
|
if(!is_null($user)) {
|
|
if($video->getOwnerVideo() == $user) {
|
|
$video->deleteVideo($owner, $vid);
|
|
}
|
|
} else {
|
|
$this->flashFail("err", tr("cant_delete_video"), tr("cant_delete_video_comment"));
|
|
}
|
|
|
|
$this->redirect("/videos" . $owner);
|
|
}
|
|
|
|
function renderLike(int $owner, int $video_id): void
|
|
{
|
|
$this->assertUserLoggedIn();
|
|
$this->willExecuteWriteAction();
|
|
$this->assertNoCSRF();
|
|
|
|
$video = $this->videos->getByOwnerAndVID($owner, $video_id);
|
|
if(!$video || $video->isDeleted() || $video->getOwner()->isDeleted()) $this->notFound();
|
|
|
|
if(method_exists($video, "canBeViewedBy") && !$video->canBeViewedBy($this->user->identity)) {
|
|
$this->flashFail("err", tr("error"), tr("forbidden"));
|
|
}
|
|
|
|
if(!is_null($this->user)) {
|
|
$video->toggleLike($this->user->identity);
|
|
}
|
|
|
|
$this->returnJson(["success" => true]);
|
|
}
|
|
}
|