Use only attachPic for grabbing pic attachments

TODO throw flashFail on bruh moment with pic attachments
This commit is contained in:
celestora 2022-12-11 18:21:01 +02:00
parent b2534c459c
commit 83714213f2

View file

@ -257,18 +257,17 @@ final class WallPresenter extends OpenVKPresenter
$photo = Photo::fastMake($this->user->id, $this->postParam("text"), $_FILES["_pic_attachment"], $album, $anon); $photo = Photo::fastMake($this->user->id, $this->postParam("text"), $_FILES["_pic_attachment"], $album, $anon);
} */ } */
foreach($_FILES as $file) { $album = NULL;
bdump($file); if(!$anon && $wall > 0 && $wall === $this->user->id)
if($file["error"] === UPLOAD_ERR_OK && preg_match('/^image\//', $file['type'])) { $album = (new Albums)->getUserWallAlbum($wallOwner);
$album = NULL;
if(!$anon && $wall > 0 && $wall === $this->user->id)
$album = (new Albums)->getUserWallAlbum($wallOwner);
$photos[] = Photo::fastMake($this->user->id, $this->postParam("text"), $file, $album, $anon); foreach($_FILES as $fileId => $file) {
} bdump([$fileId, $file, $file["error"] !== UPLOAD_ERR_OK, strncmp($fileId, "attachPic", 9) !== 0]);
if($file["error"] !== UPLOAD_ERR_OK || strncmp($fileId, "attachPic", 9) !== 0)
continue;
$photos[] = Photo::fastMake($this->user->id, $this->postParam("text"), $file, $album, $anon);
} }
bdump($photos);
if($_FILES["_vid_attachment"]["error"] === UPLOAD_ERR_OK) if($_FILES["_vid_attachment"]["error"] === UPLOAD_ERR_OK)
$video = Video::fastMake($this->user->id, $this->postParam("text"), $_FILES["_vid_attachment"], $anon); $video = Video::fastMake($this->user->id, $this->postParam("text"), $_FILES["_vid_attachment"], $anon);