-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.php
431 lines (348 loc) · 11.3 KB
/
model.php
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<?php
namespace HitchinHackspace\SlackViewer;
use ZipArchive;
use Exception;
// Represents a single slack export (currently represented by one zip file)
class SlackArchive {
use HasCache;
// A ZipArchive instance containing the export.
private $archive;
// Slack user cache.
private $users = null;
// The transient cache
private $cache;
// Construct an archive, given an ID of an item in the media library.
function __construct($archive_id) {
$this->cache = new TransientCache("slackcache-$archive_id");
$this->archive = new ZipArchive();
if ($this->archive->open(get_attached_file($archive_id)) !== true)
throw new Exception('There was a problem opening the Slack archive file.');
}
function getCache() {
return $this->cache;
}
// Get a list of the files contained within this archive.
function getFileList() {
return $this->cached('file-list', function () {
$files = [];
for ($i = 0; $i < count($this->archive); ++$i)
$files[] = $this->archive->getNameIndex($i);
return $files;
});
}
// Get the contents of a member of the archive, decoded as JSON.
function getJSON($path) {
$content = $this->archive->getFromName($path);
if ($content === false)
throw new Exception("The Slack archive does not contain the requested file: $path");
return json_decode($content, true, 128, JSON_THROW_ON_ERROR);
}
// Get the list of channels contained within this archive.
function getChannelList() {
$channels = $this->getJSON('channels.json');
foreach ($channels as $channelObject)
yield new SlackChannel($this, $channelObject);
}
// Get the set of 'archived' channels.
function getArchivedChannels() {
foreach ($this->getChannelList() as $channel)
if ($channel->isArchived())
yield $channel;
}
// Get the set of (non-archived) 'general' channels.
function getGeneralChannels() {
foreach ($this->getChannelList() as $channel)
if (!$channel->isArchived() && $channel->isGeneral())
yield $channel;
}
// Get the set of non-archived, non-general channels.
function getStandardChannels() {
foreach ($this->getChannelList() as $channel)
if (!$channel->isArchived() && !$channel->isGeneral())
yield $channel;
}
// Get the specific channel named, or 'null' if it's not present.
function getChannelByName($name) {
$channels = $this->getChannelList();
foreach ($channels as $channel)
if ($channel->getName() == $name)
return $channel;
return null;
}
function getChannelByID($id) {
$channels = $this->getChannelList();
foreach ($channels as $channel)
if ($channel->getID() == $id)
return $channel;
return null;
}
// Get all users in this archive.
function getUsers() {
if (!$this->users) {
$users = $this->getJSON('users.json');
$extract = function ($users) {
foreach ($users as $user) {
$user = new SlackUser($this, $user);
yield $user->getID() => $user;
}
};
$this->users = iterator_to_array($extract($users));
}
return $this->users;
}
// Get a user by their ID.
function getUser($id) {
return $this->getUsers()[$id] ?? null;
}
}
// Represents a Slack user.
class SlackUser {
// A reference to the containing SlackArchive.
public $archive;
// The backing JSON object.
public $obj;
// Avatar image URLs
private $avatarURLs = null;
function __construct($archive, $obj) {
$this->archive = $archive;
$this->obj = $obj;
}
private static function getValueInner($obj, $key) {
if (!$obj)
return null;
if (is_array($key))
return array_map(function ($key) use ($obj) {
return self::getValueInner($obj, $key);
}, $key);
return $obj[$key] ?? null;
}
private function getValue($key) {
return self::getValueInner($this->obj, $key);
}
function getID() {
return $this->getValue('id');
}
function getName() {
return self::getValue('name');
}
function getProfile($key = null) {
$profile = $this->getValue('profile');
return self::getValueInner($profile, $key);
}
function getDisplayName() {
return $this->getProfile('display_name');
}
private static function getAvatarKeys() {
return [
'1024' => 'image_1024',
'512' => 'image_512',
'192' => 'image_192',
'72' => 'image_72',
'48' => 'image_48',
'32' => 'image_32',
'24' => 'image_24'
];
}
function getAvatarURLs() {
if ($this->avatarURLs === null) {
$fn = function () {
foreach (self::getAvatarKeys() as $size => $key) {
$value = $this->getProfile($key);
if (!$value)
continue;
yield $size => $value;
}
};
$this->avatarURLs = iterator_to_array($fn());
}
return $this->avatarURLs;
}
function getAvatarURL($atleast = null) {
return getBestImageURL($this->getAvatarURLs(), $atleast);
}
}
interface MessageSequence {
/**
* Get the archive that's the source of messages within this collection.
*
* @return SlackArchive
*/
function getArchive();
/**
* Get the number of messages in this collection.
*
* return int
*/
public function getCount();
/**
* Get a subset of messages, based on a first message index and count.
* @param int $offset
* @param int|null $limit
* @return Collection<SlackMessage>
*/
function getContent($offset = 0, $limit = null);
/**
* Guess at a rough date of a message, without doing too much processing.
*
* @param int $offset
* @return float
*/
function getApproximateTimestamp($offset);
}
// Represents a single Slack channel.
class SlackChannel implements MessageSequence {
use HasCache;
// A reference to the containing SlackArchive.
public $archive;
// The backing JSON object.
public $obj;
// The set of files containing content
private $files = null;
function __construct($archive, $obj) {
$this->archive = $archive;
$this->obj = $obj;
}
private function getArchiveChannelCache() {
return $this->archive->getSubCache('channels');
}
public function getCache() {
return new SubCache($this->getArchiveChannelCache(), $this->getID());
}
function getID() { return $this->obj['id']; }
function getName() { return $this->obj['name']; }
function getPath() { return $this->getName(); }
function getTitle() { return '#' . $this->getName(); }
function getTopic() { return $this->obj['topic']['value']; }
function getPurpose() { return $this->obj['purpose']['value']; }
function isArchived() { return $this->obj['is_archived']; }
function isGeneral() { return $this->obj['is_general']; }
function getArchive() { return $this->archive; }
function getFilesInner() {
$prefix = "{$this->getName()}/";
$files = [];
foreach ($this->archive->getFileList() as $file) {
if (!starts_with($file, $prefix))
continue;
$file = SlackChannelFile::create($this, $file);
if ($file)
$files[] = $file;
}
usort($files, function ($a, $b) {
return $a->getFirstMessageTimestamp() <=> $b->getFirstMessageTimestamp();
});
return $files;
}
// Get a list of all the files in the archive relating to the message content of this channel.
function getFiles() {
if ($this->files === null)
$this->files = $this->getFilesInner();
return $this->files;
}
// Get the total number of messages in this channel.
function getMessageCount() {
$count = 0;
foreach ($this->getFiles() as $file)
$count += $file->getMessageCount();
return $count;
}
function getCount() { return $this->getMessageCount(); }
// Guess at a rough date of a message, without parsing the full message file.
function getApproximateTimestamp($offset) {
foreach ($this->getFiles() as $file) {
// Does this file contain messages within the range?
$count = $file->getMessageCount();
if ($count > $offset)
return $file->getFirstMessageTimestamp();
// No. Skip it.
$offset -= $count;
}
return time();
}
// Get a subset of messages from this channel, based on a first message index and count.
function getContent($offset = 0, $limit = null) {
$index = 0;
foreach ($this->getFiles() as $file) {
// Are we waiting to start the range?
if ($index < $offset) {
// Does this file contain messages within the range?
$count = $file->getMessageCount();
if (($index + $count) <= $offset) {
// No. Skip it.
$index += $count;
continue;
}
}
foreach ($file->getMessages() as $message) {
// Are we still skipping some messages within this file?
if ($index < $offset) {
$index += 1;
continue;
}
yield $index => $message;
$index += 1;
// Are we limiting how much to return?
if ($limit !== null)
if (--$limit == 0)
return; // We're done.
}
}
}
}
// Represents a file containing (a subset of) messages from a Slack channel.
class SlackChannelFile {
use HasCache;
// A reference to the containing SlackChannel.
private $channel;
// The file name within the archive.
private $filename;
function __construct($channel, $filename) {
$this->channel = $channel;
$this->filename = $filename;
}
private function getChannelFileCache() {
return $this->channel->getSubCache('files');
}
private function getCache() {
return new SubCache($this->getChannelFileCache(), $this->filename);
}
static function create($channel, $filename) {
// Is it a JSON file?
if (!ends_with($filename, '.json'))
return null;
// Does it look like it contains messages?
$basename = basename($filename, '.json');
if (date_create_from_format('Y-m-d', $basename) === false)
return null;
return new SlackChannelFile($channel, $filename);
}
function getMessageCount() {
return $this->cached('message-count', function () {
return iterator_count($this->getMessages());
});
}
function getMessages() {
foreach ($this->channel->archive->getJSON($this->filename) as $message)
yield new SlackMessage($message);
}
function getFirstMessageTimestamp() {
return $this->cached('first-message-timestamp', function () {
return $this->getMessages()->current()->getTimestamp();
});
}
}
class SlackMessage {
// The backing JSON object.
private $obj;
function __construct($obj) {
$this->obj = $obj;
}
function getData() {
return $this->obj;
}
function getTimestamp() {
return $this->getData()['ts'];
}
function matches($term) {
return stripos($this->getData()['text'] ?? '', $term) !== false;
}
}