-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathUniqueFileId.php
More file actions
243 lines (231 loc) · 7.53 KB
/
UniqueFileId.php
File metadata and controls
243 lines (231 loc) · 7.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php declare(strict_types=1);
/**
* Decoded UniqueFileId class.
*
* This file is part of tg-file-decoder.
* tg-file-decoder 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.
* tg-file-decoder 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 tg-file-decoder.
* If not, see <http://www.gnu.org/licenses/>.
*
* @author Daniil Gentili <daniil@daniil.it>
* @copyright 2016-2019 Daniil Gentili <daniil@daniil.it>
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
*
* @link https://github.com/tg-file-decoder Documentation
*/
namespace danog\Decoder;
use danog\Decoder\PhotoSizeSource\PhotoSizeSourceDialogPhoto;
use danog\Decoder\PhotoSizeSource\PhotoSizeSourceStickersetThumbnailVersion;
use danog\Decoder\PhotoSizeSource\PhotoSizeSourceThumbnail;
/**
* Represents decoded unique bot API file ID.
*
* @api
*/
final class UniqueFileId
{
/**
* Basic constructor function.
*/
public function __construct(
/**
* File type.
*
*/
public UniqueFileIdType $type,
/**
* File ID.
*
*/
public ?int $id = null,
/**
* Photo subtype.
*
*/
public ?int $subType = null,
/**
* Photo volume ID.
*
*/
public ?int $volumeId = null,
/**
* Photo local ID.
*
*/
public ?int $localId = null,
/**
* Sticker set ID.
*
*/
public ?int $stickerSetId = null,
/**
* Sticker set version.
*
*/
public ?int $stickerSetVersion = null,
/**
* Weblocation URL.
*
*/
public ?string $url= null,
) {
}
/**
* Get unique bot API file ID.
*
*/
public function __toString(): string
{
return $this->getUniqueBotAPI();
}
/**
* Get unique bot API file ID.
*
*/
public function getUniqueBotAPI(): string
{
$fileId = \pack('V', $this->type->value);
if ($this->url !== null) {
$fileId .= Tools::packTLString($this->url);
} elseif ($this->type === UniqueFileIdType::PHOTO) {
if ($this->volumeId !== null) {
$fileId .= Tools::packLong($this->volumeId);
$fileId .= \pack('l', $this->localId);
} elseif ($this->stickerSetId !== null) {
\assert($this->subType !== null);
$fileId .= \chr($this->subType);
$fileId .= Tools::packLong($this->stickerSetId);
$fileId .= \pack('l', $this->stickerSetVersion);
} else {
\assert($this->subType !== null && $this->id !== null);
$fileId .= Tools::packLong($this->id);
$fileId .= \chr($this->subType);
}
} elseif ($this->id !== null) {
$fileId .= Tools::packLong($this->id);
}
return Tools::base64urlEncode(Tools::rleEncode($fileId));
}
/**
* Decode unique bot API file ID.
*
* @param string $fileId Bot API file ID
*
*/
public static function fromUniqueBotAPI(string $fileId): self
{
$orig = $fileId;
$fileId = Tools::rleDecode(Tools::base64urlDecode($fileId));
/** @var int */
$typeId = \unpack('V', $fileId)[1];
$type = UniqueFileIdType::from($typeId);
$url = null;
$subType = null;
$id = null;
$fileId = \substr($fileId, 4);
$volume_id = null;
$local_id = null;
$sticker_set_id = null;
$sticker_set_version = null;
if ($type === UniqueFileIdType::WEB) {
$res = \fopen('php://memory', 'rw+b');
\assert($res !== false);
\fwrite($res, $fileId);
\fseek($res, 0);
$fileId = $res;
$url = Tools::readTLString($fileId);
$l = \fstat($fileId)['size'] - \ftell($fileId);
\trigger_error("Unique file ID $orig has $l bytes of leftover data");
} elseif (\strlen($fileId) === 12) {
// Legacy photos
$volume_id = Tools::unpackLong(\substr($fileId, 0, 8));
$local_id = Tools::unpackInt(\substr($fileId, 8));
} elseif (\strlen($fileId) === 9) {
// Dialog photos/thumbnails
$id = Tools::unpackLong($fileId);
$subType = \ord($fileId[8]);
} elseif (\strlen($fileId) === 13) {
// Stickerset ID/version
$subType = \ord($fileId[0]);
$sticker_set_id = Tools::unpackLong(\substr($fileId, 1, 8));
$sticker_set_version = Tools::unpackInt(\substr($fileId, 9));
} elseif (\strlen($fileId) === 8) {
// Any other document
$id = Tools::unpackLong($fileId);
} else {
$l = \strlen($fileId);
\trigger_error("Unique file ID $orig has $l bytes of leftover data");
}
return new self(
type: $type,
id: $id,
subType: $subType,
volumeId: $volume_id,
localId: $local_id,
stickerSetId: $sticker_set_id,
stickerSetVersion: $sticker_set_version,
url: $url
);
}
/**
* Convert full bot API file ID to unique file ID.
*
* @param string $fileId Full bot API file ID
*
*/
public static function fromBotAPI(string $fileId): self
{
return FileId::fromBotAPI($fileId)->getUnique();
}
/**
* Turn full file ID into unique file ID.
*
* @param FileId $fileId Full file ID
*
*/
public static function fromFileId(FileId $fileId): self
{
if ($fileId->url !== null) {
return new self(
UniqueFileIdType::WEB,
url: $fileId->url
);
}
$type = $fileId->type->toUnique();
if ($type === UniqueFileIdType::PHOTO) {
$photoSize = $fileId->photoSizeSource;
$subType = null;
if ($photoSize instanceof PhotoSizeSourceThumbnail) {
$subType = \ord($photoSize->thumbType);
if ($subType === 97) {
$subType = 0;
} elseif ($subType === 99) {
$subType = 1;
} else {
$subType = $subType+5;
}
$subType = $subType;
} elseif ($photoSize instanceof PhotoSizeSourceDialogPhoto) {
$subType = $photoSize->isSmallDialogPhoto() ? 0 : 1;
} elseif ($photoSize instanceof PhotoSizeSourceStickersetThumbnailVersion) {
return new self(
$type,
$fileId->id,
2,
stickerSetId: $photoSize->stickerSetId,
stickerSetVersion: $photoSize->stickerSetVersion,
);
}
return new self(
$type,
$fileId->id,
$subType,
$fileId->volumeId,
$fileId->localId,
);
}
return new self($type, $fileId->id);
}
}