1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-10 22:48:21 +01:00
MadelineProto/src/EventHandler/Media.php

206 lines
7.2 KiB
PHP

<?php declare(strict_types=1);
/**
* This file is part of MadelineProto.
* MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU General Public License along with MadelineProto.
* If not, see <http://www.gnu.org/licenses/>.
*
* @author Daniil Gentili <daniil@daniil.it>
* @copyright 2016-2023 Daniil Gentili <daniil@daniil.it>
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
* @link https://docs.madelineproto.xyz MadelineProto documentation
*/
namespace danog\MadelineProto\EventHandler;
use Amp\ByteStream\ReadableStream;
use Amp\Cancellation;
use danog\MadelineProto\Ipc\IpcCapable;
use danog\MadelineProto\MTProto;
use danog\MadelineProto\TL\Types\Bytes;
use JsonSerializable;
/**
* Represents a generic media.
*/
abstract class Media extends IpcCapable implements JsonSerializable
{
/** Media filesize */
public readonly int $size;
/** Media file name */
public readonly string $fileName;
/** Media file extension */
public readonly string $fileExt;
/** Media creation date */
public readonly int $creationDate;
/** Media MIME type */
public readonly string $mimeType;
/** Time-to-live of media */
public readonly ?int $ttl;
/** @var list<array> Thumbnails */
public readonly array $thumbs;
/** @var list<array> Video thumbnails */
public readonly array $videoThumbs;
/** Whether the media should be hidden behind a spoiler */
public readonly bool $spoiler;
/** File ID in bot API format (always present even for users) */
public readonly string $botApiFileId;
/** Unique file ID in bot API format (always present even for users) */
public readonly string $botApiFileUniqueId;
/** @internal Media location */
public readonly array $location;
/** @internal Encryption key for secret chat files */
public readonly ?string $key;
/** @internal Encryption IV for secret chat files */
public readonly ?string $iv;
/** @internal Encryption key fingerprint for secret chat files */
protected readonly ?int $keyFingerprint;
/** Whether this media originates from a secret chat. */
public readonly bool $encrypted;
/** Content of thumbnail file (JPEGfile, quality 55, set in a square 90x90) only for secret chats. */
public readonly ?Bytes $thumb;
/** Thumbnail height only for secret chats. */
public readonly ?int $thumbHeight;
/** Thumbnail width only for secret chats. */
public readonly ?int $thumbWidth;
/** @internal */
public function __construct(
MTProto $API,
array $rawMedia,
/** Whether this media is protected */
public readonly bool $protected
) {
parent::__construct($API);
if ($rawMedia['secret'] ?? false) {
$rawMedia = $rawMedia['document'];
}
[
'name' => $name,
'ext' => $this->fileExt,
'mime' => $this->mimeType,
'size' => $this->size,
'InputFileLocation' => $this->location
] = $API->getDownloadInfo($rawMedia);
$this->fileName = $name.$this->fileExt;
[
'file_id' => $this->botApiFileId,
'file_unique_id' => $this->botApiFileUniqueId
] = $API->extractBotAPIFile($API->MTProtoToBotAPI($rawMedia));
$this->creationDate = ($rawMedia['document'] ?? $rawMedia['photo'] ?? $rawMedia)['date'];
$this->ttl = $rawMedia['ttl_seconds'] ?? null;
$this->spoiler = $rawMedia['spoiler'] ?? false;
$this->keyFingerprint = $rawMedia['file']['key_fingerprint'] ?? null;
$this->key = isset($rawMedia['key']) ? (string) $rawMedia['key'] : null;
$this->iv = isset($rawMedia['iv']) ? (string) $rawMedia['iv'] : null;
if ($this->encrypted = isset($rawMedia['iv'])) {
$thumb = $rawMedia['thumb'] ?? null;
$this->thumb = \is_string($thumb) ? new Bytes($thumb) : $thumb;
$this->thumbHeight = $rawMedia['thumb_h'] ?? null;
$this->thumbWidth = $rawMedia['thumb_w'] ?? null;
} else {
$this->thumb = null;
$this->thumbHeight = null;
$this->thumbWidth = null;
}
}
/**
* Gets a download link for any file up to 4GB.
*
* @param string|null $scriptUrl Optional path to custom download script (not needed when running via web)
*/
public function getDownloadLink(?string $scriptUrl = null): string
{
return $this->getClient()->getDownloadLink($this, $scriptUrl);
}
/**
* Get a readable amp stream with the file contents.
*
* @param (callable(float, float, float): void)|null $cb Progress callback
*/
public function getStream(?callable $cb = null, int $offset = 0, int $end = -1, ?Cancellation $cancellation = null): ReadableStream
{
return $this->getClient()->downloadToReturnedStream($this, $cb, $offset, $end, $cancellation);
}
/**
* Download the media to working directory or passed path.
*
* @param string $dir Directory where to download the file
* @param (callable(float, float, float): void)|null $cb Progress callback
*/
public function downloadToDir(?string $dir = null, ?callable $cb = null, ?Cancellation $cancellation = null): string
{
$dir ??= getcwd();
return $this->getClient()->downloadToDir($this, $dir, $cb, $cancellation);
}
/**
* Download the media to file.
*
* @param string $file Downloaded file path
* @param (callable(float, float, float): void)|null $cb Progress callback
*/
public function downloadToFile(string $file, ?callable $cb = null, ?Cancellation $cancellation = null): string
{
return $this->getClient()->downloadToFile($this, $file, $cb, $cancellation);
}
/**
* @return array{
* ext: string,
* name: string,
* mime: string,
* size: int,
* InputFileLocation: array,
* key_fingerprint?: string,
* key?: string,
* iv?: string,
* }
*/
public function getDownloadInfo(): array
{
$result = [
'name' => basename($this->fileName, $this->fileExt),
'ext' => $this->fileExt,
'mime' => $this->mimeType,
'size' => $this->size,
'InputFileLocation' => $this->location,
];
if ($this->key !== null) {
$result['key_fingerprint'] = $this->keyFingerprint;
$result['key'] = $this->key;
$result['iv'] = $this->iv;
}
return $result;
}
/** @internal */
public function jsonSerialize(): mixed
{
$v = get_object_vars($this);
unset($v['API'], $v['session'], $v['location'], $v['key'], $v['iv'], $v['keyFingerprint']);
return $v;
}
}