Skip to content

Latest commit

 

History

History
executable file
·
1202 lines (1019 loc) · 38.8 KB

archive_imessage.pl

File metadata and controls

executable file
·
1202 lines (1019 loc) · 38.8 KB
 
1
2
3
4
5
#!/usr/bin/perl -w
use warnings;
use strict;
Jun 21, 2016
Jun 21, 2016
6
use File::Basename;
Jun 16, 2016
Jun 16, 2016
7
use Digest::SHA1 qw(sha1_hex);
8
9
10
11
use DBI;
use Encode qw( decode_utf8 );
use POSIX;
use File::Copy;
Jun 16, 2016
Jun 16, 2016
12
13
use MIME::Base64;
use File::Slurp;
Jun 21, 2016
Jun 21, 2016
14
use Regexp::Common qw/URI/;
15
16
17
18
19
20
my $VERSION = '0.0.1';
my $gaptime = (30 * 60);
my $timezone = strftime('%Z', localtime());
my $now = time();
Jun 21, 2016
Jun 21, 2016
21
my $homedir = $ENV{'HOME'};
Jun 21, 2016
Jun 21, 2016
22
my $program_dir = dirname($0);
Jun 22, 2016
Jun 22, 2016
23
my $thumbnail_max_width = 235;
24
25
26
27
28
# Fixes unicode dumping to stdio...hopefully you have a utf-8 terminal by now.
#binmode(STDOUT, ":utf8");
#binmode(STDERR, ":utf8");
Jun 20, 2016
Jun 20, 2016
29
30
31
32
33
sub fail {
my $err = shift;
die("$err\n");
}
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
sub signal_catcher {
my $sig = shift;
fail("Caught signal ${sig}!");
}
$SIG{INT} = \&signal_catcher;
$SIG{TERM} = \&signal_catcher;
$SIG{HUP} = \&signal_catcher;
my $debug = 0;
sub dbgprint {
print @_ if $debug;
}
my $archivedir = undef;
my $imessageuser = undef;
Jun 16, 2016
Jun 16, 2016
49
my $imessageuserhost = undef;
Jun 21, 2016
Jun 21, 2016
50
51
my $imessageuserlongname = undef;
my $imessageusershortname = undef;
52
my $maildir = undef;
Jun 17, 2016
Jun 17, 2016
53
my $allow_html = 0;
Jun 20, 2016
Jun 20, 2016
54
55
my $report_progress = 0;
my $attachment_shrink_percent = undef;
Jun 20, 2016
Jun 20, 2016
56
my $allow_video_attachments = 1;
Jun 20, 2016
Jun 20, 2016
57
58
my $allow_attachments = 1;
my $allow_thumbnails = 1;
Jun 21, 2016
Jun 21, 2016
59
my $ios_archive = 0;
Jun 17, 2016
Jun 17, 2016
60
61
sub usage {
Jun 22, 2016
Jun 22, 2016
62
print STDERR "USAGE: $0 [...options...] <messagedir> <maildir>\n";
Jun 17, 2016
Jun 17, 2016
63
print STDERR "\n";
Jun 20, 2016
Jun 20, 2016
64
65
66
67
print STDERR " --debug: Enable spammy debug logging to stdout.\n";
print STDERR " --html: Output HTML archives.\n";
print STDERR " --progress: Print progress to stdout.\n";
print STDERR " --attachments-shrink-percent=NUM: resize videos/images to NUM percent.\n";
Jun 20, 2016
Jun 20, 2016
68
print STDERR " --no-video-attachments: Don't include image/video attachments.\n";
Jun 20, 2016
Jun 20, 2016
69
70
print STDERR " --no-attachments: Don't include attachments at all.\n";
print STDERR " --no-thumbnails: Don't include thumbnails in HTML output.\n";
Jun 21, 2016
Jun 21, 2016
71
print STDERR " --gap-time=NUM: treat NUM minutes of silence as the end of a conversation.\n";
Jun 22, 2016
Jun 22, 2016
72
print STDERR " messagedir: Directory holding iPhone backup or Messages chat.db database.\n";
Jun 17, 2016
Jun 17, 2016
73
74
75
76
77
78
79
80
81
82
print STDERR " maildir: Path of Maildir where we write archives and metadata.\n";
print STDERR "\n";
exit(1);
}
foreach (@ARGV) {
$debug = 1, next if $_ eq '--debug';
$debug = 0, next if $_ eq '--no-debug';
$allow_html = 1, next if $_ eq '--html';
$allow_html = 0, next if $_ eq '--no-html';
Jun 20, 2016
Jun 20, 2016
83
84
$report_progress = 1, next if $_ eq '--progress';
$report_progress = 0, next if $_ eq '--no-progress';
Jun 20, 2016
Jun 20, 2016
85
86
$allow_video_attachments = 1, next if $_ eq '--video-attachments';
$allow_video_attachments = 0, next if $_ eq '--no-video-attachments';
Jun 20, 2016
Jun 20, 2016
87
88
89
90
91
$allow_attachments = 1, next if $_ eq '--attachments';
$allow_attachments = 0, next if $_ eq '--no-attachments';
$allow_thumbnails = 1, next if $_ eq '--thumbnails';
$allow_thumbnails = 0, next if $_ eq '--no-thumbnails';
$attachment_shrink_percent = int($1), next if /\A--attachments-shrink-percent=(\d+)\Z/;
Jun 21, 2016
Jun 21, 2016
92
$gaptime = int($1) * 60, next if /\A--gap-time=(\d+)\Z/;
Jun 17, 2016
Jun 17, 2016
93
94
95
96
97
98
99
$archivedir = $_, next if not defined $archivedir;
$maildir = $_, next if (not defined $maildir);
usage();
}
usage() if not defined $archivedir;
usage() if not defined $maildir;
Jun 20, 2016
Jun 20, 2016
100
101
102
103
if ((defined $attachment_shrink_percent) && ($attachment_shrink_percent == 100)) {
$attachment_shrink_percent = undef;
} elsif ((defined $attachment_shrink_percent) && (($attachment_shrink_percent < 1) || ($attachment_shrink_percent > 100))) {
fail("--attachments-shrink-percent must be between 1 and 100.");
Jun 16, 2016
Jun 16, 2016
106
107
108
sub archive_fname {
my $domain = shift;
my $name = shift;
Jun 21, 2016
Jun 21, 2016
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
if ($ios_archive) {
my $combined = "$domain-$name";
my $hashed = sha1_hex($combined);
dbgprint("Hashed archived filename '$combined' to '$hashed'\n");
return "$archivedir/$hashed";
}
return "$archivedir/$name";
}
fail("ERROR: Directory '$archivedir' doesn't exist.") if (not -d $archivedir);
if (-f "$archivedir/Manifest.mbdb") {
$ios_archive = 1;
} elsif (-f "$archivedir/chat.db") {
$ios_archive = 0;
} else {
fail("ERROR: '$archivedir' isn't a macOS Messages directory or an iOS backup.\n");
Jun 16, 2016
Jun 16, 2016
127
128
}
Jun 21, 2016
Jun 21, 2016
129
130
131
132
133
if ($ios_archive) {
dbgprint("Chat database is in an iOS backup.\n");
} else {
dbgprint("Chat database is in a macOS install.\n");
}
134
135
136
137
138
139
140
141
my $startid = 0;
my %startids = ();
my $lastarchivefname = undef;
my $lastarchivetmpfname = undef;
sub flush_startid {
my ($with, $msgid) = @_;
Jun 20, 2016
Jun 20, 2016
142
143
144
145
146
147
148
149
if (defined $with and defined $msgid) {
$startids{$with} = $msgid;
dbgprint("flushing startids (global: $startid, '$with': $msgid)\n");
} else {
dbgprint("flushing startids (global: $startid)\n");
}
150
151
152
153
if (not open(LASTID,'>',$lastarchivetmpfname)) {
dbgprint("Open '$lastarchivetmpfname' for write failed: $!\n");
return 0;
}
Jun 20, 2016
Jun 20, 2016
154
print LASTID "$startid\n";
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
foreach(keys %startids) {
my $key = $_;
my $val = $startids{$key};
print LASTID "$key\n$val\n";
}
close(LASTID);
if (not move($lastarchivetmpfname, $lastarchivefname)) {
unlink($lastarchivetmpfname);
dbgprint("Rename '$lastarchivetmpfname' to '$lastarchivefname' failed: $!\n");
return 0;
}
return 1;
}
Jun 17, 2016
Jun 17, 2016
170
171
172
sub slurp_archived_file {
my ($domain, $fname, $fdataref) = @_;
my $hashedfname = archive_fname($domain, $fname);
Jun 18, 2016
Jun 18, 2016
173
174
if (not -f $hashedfname) {
Jun 21, 2016
Jun 21, 2016
175
176
177
178
179
if ($ios_archive) {
print STDERR "WARNING: Missing attachment '$hashedfname' ('$domain', '$fname')\n";
} else {
print STDERR "WARNING: Missing attachment '$hashedfname'\n";
}
Jun 18, 2016
Jun 18, 2016
180
181
182
183
$$fdataref = '[MISSING]';
return 0;
}
Jun 20, 2016
Jun 20, 2016
184
if ((not defined read_file($hashedfname, buf_ref => $fdataref, binmode => ':raw', err_mode => 'carp')) or (not defined $fdataref)) {
Jun 17, 2016
Jun 17, 2016
185
186
fail("Couldn't read attachment '$hashedfname': $!");
}
Jun 18, 2016
Jun 18, 2016
187
188
return 1;
Jun 17, 2016
Jun 17, 2016
189
190
}
Jun 21, 2016
Jun 21, 2016
191
192
sub get_image_orientation {
my $fname = shift;
Jun 21, 2016
Jun 21, 2016
193
my $cmdline = "$program_dir/exiftool/exiftool -n -Orientation '$fname' 2>/dev/null";
Jun 21, 2016
Jun 21, 2016
194
195
my $orientation = `$cmdline`;
fail("exiftool failed ('$cmdline')") if ($? != 0);
Jun 21, 2016
Jun 21, 2016
196
197
198
199
200
201
202
203
204
205
206
chomp($orientation);
$orientation =~ s/\AOrientation\s*\:\s*(\d*)\s*\Z/$1/;
dbgprint("File '$fname' has an Orientation of '$orientation'.\n");
return ($orientation eq '') ? undef : int($orientation);
}
sub set_image_orientation {
my $fname = shift;
my $orientation = shift;
my $trash = shift;
if (defined $orientation) {
Jun 22, 2016
Jun 22, 2016
207
my $cmdline = "$program_dir/exiftool/exiftool -overwrite_original_in_place -q -n -Orientation=$orientation '$fname'";
Jun 21, 2016
Jun 21, 2016
208
209
210
211
212
213
214
215
dbgprint("marking image orientation: $cmdline\n");
if (system($cmdline) != 0) {
unlink($fname) if $trash;
fail("exiftool failed ('$cmdline')")
}
}
}
Jun 20, 2016
Jun 20, 2016
216
217
218
219
220
221
222
223
224
sub load_attachment {
my $origfname = shift;
my $hashedfname = shift;
my $fdataref = shift;
my $mimetype = shift;
my $is_image = $mimetype =~ /\Aimage\//;
my $is_video = $mimetype =~ /\Avideo\//;
if ((defined $attachment_shrink_percent) && ($is_image || $is_video)) {
Jun 21, 2016
Jun 21, 2016
225
226
my $is_jpeg = $mimetype eq 'image/jpeg';
my $fmt = $is_jpeg ? '-f mjpeg' : '';
Jun 21, 2016
Jun 21, 2016
227
my $orientation = get_image_orientation($hashedfname);
Jun 20, 2016
Jun 20, 2016
228
229
230
231
my $fract = $attachment_shrink_percent / 100.0;
my $basefname = $origfname;
$basefname =~ s#.*/##;
my $outfname = "$maildir/tmp/imessage-chatlog-tmp-$$-attachment-shrink-$basefname";
Jun 21, 2016
Jun 21, 2016
232
my $cmdline = "$program_dir/ffmpeg $fmt -i '$hashedfname' -vf \"scale='trunc(iw*$fract)+mod(trunc(iw*$fract),2)':'trunc(ih*$fract)+mod(trunc(ih*$fract),2)'\" '$outfname' 2>/dev/null";
Jun 21, 2016
Jun 21, 2016
233
234
dbgprint("shrinking attachment: $cmdline\n");
die("ffmpeg failed ('$cmdline')") if (system($cmdline) != 0);
Jun 21, 2016
Jun 21, 2016
235
set_image_orientation($outfname, $orientation, 1);
Jun 20, 2016
Jun 20, 2016
236
237
238
239
240
241
242
read_file($outfname, buf_ref => $fdataref, binmode => ':raw', err_mode => 'carp');
unlink($outfname);
} else {
read_file($hashedfname, buf_ref => $fdataref, binmode => ':raw', err_mode => 'carp');
}
}
Jun 17, 2016
Jun 17, 2016
243
Jun 16, 2016
Jun 16, 2016
244
245
246
my %longnames = ();
my %shortnames = ();
Jun 21, 2016
Jun 21, 2016
247
# !!! FIXME: this should probably go in a hash or something.
Jun 16, 2016
Jun 16, 2016
248
my $outperson = undef;
249
250
251
252
my $outmsgid = undef;
my $outhandle_id = undef;
my $outid = undef;
my $outtimestamp = undef;
Jun 21, 2016
Jun 21, 2016
253
254
255
256
257
my $outhasfromme = 0;
my $outhasfromthem = 0;
my $outhasfromme_a = 0;
my $outhasfromme_sms = 0;
my $outhasfromme_sms_a = 0;
Jun 21, 2016
Jun 21, 2016
258
259
my $output_text = '';
my $output_html = '';
Jun 16, 2016
Jun 16, 2016
260
261
my @output_attachments = ();
262
sub flush_conversation {
Jun 16, 2016
Jun 16, 2016
263
264
return if (not defined $outmsgid);
265
266
my $trash = shift;
Jun 16, 2016
Jun 16, 2016
267
268
269
dbgprint("Flushing conversation! trash=$trash\n");
if ($trash) {
Jun 21, 2016
Jun 21, 2016
270
271
$output_text = '';
$output_html = '';
Jun 16, 2016
Jun 16, 2016
272
273
274
275
276
277
278
279
280
281
282
283
284
@output_attachments = ();
return;
}
fail("message id went backwards?!") if ($startids{$outhandle_id} > $outmsgid);
$output_text =~ s/\A\n+//;
$output_text =~ s/\n+\Z//;
my $tmpemail = "$maildir/tmp/imessage-chatlog-tmp-$$.txt";
open(TMPEMAIL,'>',$tmpemail) or fail("Failed to open '$tmpemail': $!");
#binmode(TMPEMAIL, ":utf8");
Jun 16, 2016
Jun 16, 2016
285
286
287
my $emaildate = strftime('%a, %d %b %Y %H:%M %Z', localtime($outtimestamp));
my $localdate = strftime('%Y-%m-%d %H:%M:%S %Z', localtime($outtimestamp));
Jun 16, 2016
Jun 16, 2016
288
289
290
291
292
293
# !!! FIXME: make sure these don't collide.
my $mimesha1 = sha1_hex($output_text);
my $mimeboundarymixed = "mime_imessage_mixed_$mimesha1";
my $mimeboundaryalt = "mime_imessage_alt_$mimesha1";
my $has_attachments = scalar(@output_attachments) > 0;
Jun 16, 2016
Jun 16, 2016
294
my $is_mime = $allow_html || $has_attachments;
Jun 16, 2016
Jun 16, 2016
295
my $content_type_mixed = "multipart/mixed; boundary=\"$mimeboundarymixed\"";
Jun 16, 2016
Jun 16, 2016
296
my $content_type_alt = $allow_html ? "multipart/alternative; boundary=\"$mimeboundaryalt\"; charset=\"utf-8\"" : 'text/plain; charset="utf-8"';
Jun 16, 2016
Jun 16, 2016
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
my $initial_content_type = $has_attachments ? $content_type_mixed : $content_type_alt;
print TMPEMAIL <<EOF
Return-Path: <$imessageuser>
Delivered-To: $imessageuser
From: $imessageuserlongname <$imessageuser>
To: $imessageuserlongname <$imessageuser>
Date: $emaildate
Subject: Chat with $outperson at $localdate ...
MIME-Version: 1.0
Content-Type: $initial_content_type
Content-Transfer-Encoding: binary
X-Mailer: archive_imessage.pl $VERSION
EOF
;
Jun 16, 2016
Jun 16, 2016
314
315
316
317
318
319
if ($is_mime) {
print TMPEMAIL "This is a multipart message in MIME format.\n\n";
}
if (@output_attachments) {
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
320
321
322
323
324
325
--$mimeboundarymixed
Content-Type: $content_type_alt
Content-Transfer-Encoding: binary
EOF
;
Jun 16, 2016
Jun 16, 2016
326
}
Jun 16, 2016
Jun 16, 2016
327
Jun 16, 2016
Jun 16, 2016
328
329
330
331
if (not $allow_html) {
print TMPEMAIL "$output_text";
print TMPEMAIL "\n\n";
} else {
Jun 21, 2016
Jun 21, 2016
332
333
# This <style> section is largely based on:
# https://codepen.io/samuelkraft/pen/Farhl/
Jun 16, 2016
Jun 16, 2016
334
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
335
336
337
338
339
--$mimeboundaryalt
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: binary
$output_text
Jun 16, 2016
Jun 16, 2016
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
--$mimeboundaryalt
Content-Type: text/html; charset="utf-8"
Content-Transfer-Encoding: binary
<html><head><title>Chat with $outperson at $localdate ...</title><style>
body {
font-family: "Helvetica Neue";
font-size: 20px;
font-weight: normal;
}
section {
max-width: 450px;
margin: 50px auto;
}
section div {
max-width: 255px;
word-wrap: break-word;
margin-bottom: 10px;
line-height: 24px;
}
.clear {
clear: both;
}
Jun 21, 2016
Jun 21, 2016
364
365
EOF
;
Jun 16, 2016
Jun 16, 2016
366
Jun 21, 2016
Jun 21, 2016
367
368
369
# Don't output parts of the CSS we don't need to save a little space.
if ($outhasfromme) {
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
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
.from-me {
position: relative;
padding: 10px 20px;
color: white;
background: #0B93F6;
border-radius: 25px;
float: right;
}
.from-me:before {
content: "";
position: absolute;
z-index: -1;
bottom: -2px;
right: -7px;
height: 20px;
border-right: 20px solid #0B93F6;
border-bottom-left-radius: 16px 14px;
transform: translate(0, -2px);
}
.from-me:after {
content: "";
position: absolute;
z-index: 1;
bottom: -2px;
right: -56px;
width: 26px;
height: 20px;
background: white;
border-bottom-left-radius: 10px;
transform: translate(-30px, -2px);
}
Jun 21, 2016
Jun 21, 2016
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
EOF
;
}
if ($outhasfromme_a) {
print TMPEMAIL <<EOF
.from-me a {
color: white;
background: #0B93F6;
}
EOF
;
}
if ($outhasfromme_sms) {
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
417
418
419
420
421
422
.sms {
background: #04D74A;
}
.sms:before {
border-right: 20px solid #04D74A;
}
Jun 21, 2016
Jun 21, 2016
423
424
425
426
427
428
EOF
;
}
if ($outhasfromme_sms_a) {
print TMPEMAIL <<EOF
Jun 21, 2016
Jun 21, 2016
429
430
431
432
.sms a {
color: white;
background: #04D74A;
}
Jun 21, 2016
Jun 21, 2016
433
434
435
436
437
438
EOF
;
}
if ($outhasfromthem) {
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
.from-them {
position: relative;
padding: 10px 20px;
background: #E5E5EA;
border-radius: 25px;
color: black;
float: left;
}
.from-them:before {
content: "";
position: absolute;
z-index: 2;
bottom: -2px;
left: -7px;
height: 20px;
border-left: 20px solid #E5E5EA;
border-bottom-right-radius: 16px 14px;
transform: translate(0, -2px);
}
.from-them:after {
content: "";
position: absolute;
z-index: 3;
bottom: -2px;
left: 4px;
width: 26px;
height: 20px;
background: white;
border-bottom-right-radius: 10px;
transform: translate(-30px, -2px);
}
Jun 21, 2016
Jun 21, 2016
470
471
472
473
474
EOF
;
}
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
475
476
477
478
479
480
481
482
</style></head><body><section>
$output_html</section></body></html>
--$mimeboundaryalt--
EOF
;
Jun 16, 2016
Jun 16, 2016
483
484
}
Jun 16, 2016
Jun 16, 2016
485
486
487
488
489
if (@output_attachments) {
my %used_fnames = ();
while (@output_attachments) {
my $fname = shift @output_attachments;
my $mimetype = shift @output_attachments;
Jun 20, 2016
Jun 20, 2016
490
my $domain = 'MediaDomain';
Jun 16, 2016
Jun 16, 2016
491
Jun 21, 2016
Jun 21, 2016
492
493
494
$fname =~ s#\A\~/#$homedir/# if (not $ios_archive);
$fname =~ s#\A\~/## if ($ios_archive);
$fname =~ s#\A/var/mobile/## if ($ios_archive);
Jun 20, 2016
Jun 20, 2016
495
496
497
498
my $hashedfname = archive_fname($domain, $fname);
my $fdata = undef;
if (not -f $hashedfname) {
Jun 21, 2016
Jun 21, 2016
499
500
501
502
503
if ($ios_archive) {
print STDERR "WARNING: Missing attachment '$hashedfname' ('$domain', '$fname')\n";
} else {
print STDERR "WARNING: Missing attachment '$hashedfname'\n";
}
Jun 20, 2016
Jun 20, 2016
504
505
} else {
load_attachment($fname, $hashedfname, \$fdata, $mimetype);
Jun 21, 2016
Jun 21, 2016
506
507
508
509
510
if ($ios_archive) {
print STDERR "WARNING: Failed to load '$hashedfname' ('$domain', '$fname')\n" if (not defined $fdata);
} else {
print STDERR "WARNING: Failed to load '$hashedfname'\n" if (not defined $fdata);
}
Jun 20, 2016
Jun 20, 2016
511
}
Jun 16, 2016
Jun 16, 2016
512
513
514
515
516
517
518
519
520
521
522
$fname =~ s#\A.*/##;
my $tmpfname = $fname;
my $counter = 0;
while (defined $used_fnames{$tmpfname}) {
$counter++;
$tmpfname = "$counter-$fname";
}
$fname = $tmpfname;
$used_fnames{$fname} = 1;
Jun 20, 2016
Jun 20, 2016
523
if (not defined $fdata) {
Jun 18, 2016
Jun 18, 2016
524
525
526
527
528
529
530
531
532
533
534
535
536
print TMPEMAIL <<EOF
--$mimeboundarymixed
Content-Disposition: attachment; filename="$fname"
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: binary
This file was missing in the iPhone backup (or there was a bug) when this
archive was produced. Sorry!
EOF
;
} else {
print TMPEMAIL <<EOF
Jun 16, 2016
Jun 16, 2016
537
538
539
540
541
542
543
544
--$mimeboundarymixed
Content-Disposition: attachment; filename="$fname"
Content-Type: $mimetype
Content-Transfer-Encoding: base64
EOF
;
Jun 18, 2016
Jun 18, 2016
545
546
547
548
print TMPEMAIL encode_base64($fdata);
print TMPEMAIL "\n";
$fdata = undef;
}
Jun 16, 2016
Jun 16, 2016
550
551
552
553
554
555
print TMPEMAIL "--$mimeboundarymixed--\n\n";
}
close(TMPEMAIL);
Jun 21, 2016
Jun 21, 2016
556
557
$output_text = '';
$output_html = '';
Jun 16, 2016
Jun 16, 2016
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
@output_attachments = ();
my $size = (stat($tmpemail))[7];
my $t = $outtimestamp;
my $outfile = "$t.$outid.imessage-chatlog.$imessageuser,S=$size";
$outfile =~ s#/#_#g;
$outfile = "$maildir/new/$outfile";
if (move($tmpemail, $outfile)) {
utime $t, $t, $outfile; # force it to collection creation time.
dbgprint "archived '$outfile'\n";
system("cat $outfile") if ($debug);
} else {
unlink($outfile);
fail("Rename '$tmpemail' to '$outfile' failed: $!");
}
# !!! FIXME: this may cause duplicates if there's a power failure RIGHT HERE.
if (not flush_startid($outhandle_id, $outmsgid)) {
unlink($outfile);
fail("didn't flush startids");
578
579
580
581
582
}
}
sub split_date_time {
my $timestamp = shift;
Jun 16, 2016
Jun 16, 2016
583
584
my $date = strftime('%Y-%m-%d', localtime($timestamp));
my $time = strftime('%H:%M', localtime($timestamp));
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
dbgprint("split $timestamp => '$date', '$time'\n");
return ($date, $time);
}
# don't care if these fail.
mkdir("$maildir", 0700);
mkdir("$maildir/tmp", 0700);
mkdir("$maildir/cur", 0700);
mkdir("$maildir/new", 0700);
$lastarchivetmpfname = "$maildir/tmp_imessage_last_archive_msgids.txt";
unlink($lastarchivetmpfname);
$lastarchivefname = "$maildir/imessage_last_archive_msgids.txt";
if (open(LASTID,'<',$lastarchivefname)) {
my $globalid = <LASTID>;
chomp($globalid);
$startid = $globalid if ($globalid =~ /\A\d+\Z/);
dbgprint("startid (global) == $globalid\n");
while (not eof(LASTID)) {
my $user = <LASTID>;
chomp($user);
my $id = <LASTID>;
chomp($id);
if ($id =~ /\A\d+\Z/) {
$startids{$user} = $id;
dbgprint("startid '$user' == $id\n");
}
}
close(LASTID);
}
Jun 21, 2016
Jun 21, 2016
618
619
620
my $stmt;
my $dbname = archive_fname('HomeDomain', $ios_archive ? 'Library/SMS/sms.db' : 'chat.db');
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
dbgprint("message database is '$dbname'\n");
my $db = DBI->connect("DBI:SQLite:dbname=$dbname", '', '', { RaiseError => 0 })
or fail("Couldn't open message database at '$archivedir/$dbname': " . $DBI::errstr);
dbgprint("Sorting out real names...\n");
sub parse_addressbook_name {
my @lookuprow = @_;
my $address = shift @lookuprow;
my $nickname = shift @lookuprow;
my $firstname = $lookuprow[0];
my $proper = undef;
dbgprint("ADDRESSBOOK NICKNAME: $nickname\n") if defined $nickname;
foreach (@lookuprow) {
next if not defined $_;
dbgprint("ADDRESSBOOK ROW: $_\n");
$proper .= ' ' if defined $proper;
$proper .= $_;
}
if (defined $nickname) {
if (not defined $proper) {
$proper = $nickname;
} else {
$proper .= " (\"$nickname\")";
}
}
if (not defined $proper) {
dbgprint("WARNING: No proper name in the address book for '$address'\n");
$proper = $address;
}
my $longname = $proper;
my $shortname;
if (defined $nickname) {
$shortname = $nickname;
} elsif (defined $firstname) {
$shortname = $firstname;
} else {
$shortname = $proper;
}
return ($longname, $shortname);
}
Jun 21, 2016
Jun 21, 2016
668
669
670
671
672
673
674
675
676
677
my $addressbookdbname = undef; # only used on iOS archives right now.
my $addressbookdb = undef; # only used on iOS archives right now.
my $lookupstmt = undef; # only used on iOS archives right now.
if ($ios_archive) {
$addressbookdbname = archive_fname('HomeDomain', 'Library/AddressBook/AddressBook.sqlitedb');
dbgprint("address book database is '$addressbookdbname'\n");
$addressbookdb = DBI->connect("DBI:SQLite:dbname=$addressbookdbname", '', '', { RaiseError => 0 })
or fail("Couldn't open addressbook database at '$archivedir/$addressbookdbname': " . $DBI::errstr);
Jun 22, 2016
Jun 22, 2016
678
$lookupstmt = $addressbookdb->prepare('select c15Phone, c16Email, c11Nickname, c0First, c2Middle, c1Last from ABPersonFullTextSearch_content where ((c15Phone LIKE ?) or (c15Phone LIKE ?) or (c15Phone LIKE ?) or (c16Email LIKE ?) or (c16Email LIKE ?) or (c16Email LIKE ?)) limit 1;')
Jun 21, 2016
Jun 21, 2016
679
680
or fail("Couldn't prepare name lookup SELECT statement: " . $DBI::errstr);
}
Jun 21, 2016
Jun 21, 2016
682
683
sub lookup_ios_address {
my $address = shift;
Jun 22, 2016
Jun 22, 2016
684
685
686
my $like1 = "$address %";
my $like2 = "% $address %";
my $like3 = "% $address";
Jun 22, 2016
Jun 22, 2016
688
$lookupstmt->execute($like1, $like2, $like3, $like1, $like2, $like3) or fail("Couldn't execute name lookup SELECT statement: " . $DBI::errstr);
689
690
691
692
693
694
695
696
697
698
my @lookuprow = $lookupstmt->fetchrow_array();
if (@lookuprow) {
my $phone = shift @lookuprow;
my $email = shift @lookuprow;
dbgprint("EMAIL: $email\n") if defined $email;
dbgprint("PHONE: $phone\n") if defined $phone;
} else {
@lookuprow = (undef, undef, undef, undef);
}
Jun 21, 2016
Jun 21, 2016
699
700
return @lookuprow;
}
Jun 21, 2016
Jun 21, 2016
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
my %mac_addressbook = ();
if (not $ios_archive) {
%mac_addressbook = ();
open(HELPERIO, '-|', "./dump_mac_addressbook") or die("Can't run ./dump_mac_addressbook: $!\n");
my @lines = ();
while (<HELPERIO>) {
chomp;
dbgprint("dump_mac_addressbook line: '$_'\n");
push @lines, $_;
}
close(HELPERIO);
my @person = ();
while (@lines) {
for (my $i = 0; $i < 4; $i++ ) {
my $x = shift @lines;
last if not defined $x;
push @person, $x eq '' ? undef : $x;
}
if (scalar(@person) != 4) {
dbgprint("incomplete record from dump_mac_addressbook!\n");
last;
} elsif ($debug) {
my ($a, $b, $c, $d) = @person;
$a = '' if not defined $a;
$b = '' if not defined $b;
$c = '' if not defined $c;
$d = '' if not defined $d;
dbgprint("Person from dump_mac_addressbook: [$a] [$b] [$c] [$d]\n");
}
# Phone numbers...flatten them down.
while (@lines) {
my $x = shift @lines;
last if (not defined $x) || ($x eq '');
$x =~ s/[^0-9]//g; # flatten.
Jun 22, 2016
Jun 22, 2016
741
$x =~ s/\A1//; # take out US country code
Jun 21, 2016
Jun 21, 2016
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
$mac_addressbook{$x} = [ @person ];
dbgprint("Person phone: [$x]\n");
}
# Emails...lowercase them.
while (@lines) {
my $x = shift @lines;
last if (not defined $x) || ($x eq '');
$mac_addressbook{lc($x)} = [ @person ];
dbgprint("Person email: [$x]\n");
}
@person = ();
}
dbgprint("Done pulling in Mac address book.\n");
}
sub lookup_macos_address {
my $address = shift;
# !!! FIXME: this all sucks.
my $phone = $address;
$phone =~ s/[^0-9]//g; # flatten.
Jun 22, 2016
Jun 22, 2016
766
$phone =~ s/\A1//; # remove US country code
Jun 21, 2016
Jun 21, 2016
767
768
769
770
my $email = lc($address);
my @lookuprow = ();
foreach (keys(%mac_addressbook)) {
Jun 22, 2016
Jun 22, 2016
771
if ( ($_ eq $email) || ($_ eq $phone) ) {
Jun 21, 2016
Jun 21, 2016
772
773
774
775
776
777
778
779
780
781
782
783
784
my $person = $mac_addressbook{$_};
@lookuprow = @$person;
last;
}
}
while (scalar(@lookuprow) < 4) {
push @lookuprow, undef;
}
return @lookuprow;
}
Jun 21, 2016
Jun 21, 2016
785
786
sub lookup_address {
my ($handleid, $address) = @_;
Jun 21, 2016
Jun 21, 2016
787
788
dbgprint("looking for $address...\n");
my @lookuprow = $ios_archive ? lookup_ios_address($address) : lookup_macos_address($address);
789
790
791
792
793
($longnames{$handleid}, $shortnames{$handleid}) = parse_addressbook_name($address, @lookuprow);
dbgprint("longname for $address ($handleid) == " . $longnames{$handleid} . "\n");
dbgprint("shortname for $address ($handleid) == " . $shortnames{$handleid} . "\n");
}
Jun 21, 2016
Jun 21, 2016
794
795
796
$stmt = $db->prepare('select m.handle_id, h.id from handle as h inner join (select distinct handle_id from message) m on m.handle_id=h.ROWID;')
or fail("Couldn't prepare distinct address SELECT statement: " . $DBI::errstr);
$stmt->execute() or fail("Couldn't execute distinct address SELECT statement: " . $DBI::errstr);
Jun 21, 2016
Jun 21, 2016
798
799
while (my @row = $stmt->fetchrow_array()) {
lookup_address(@row);
Jun 21, 2016
Jun 21, 2016
802
803
804
$stmt = $db->prepare('select distinct account from message;')
or fail("Couldn't prepare distinct account SELECT statement: " . $DBI::errstr);
$stmt->execute() or fail("Couldn't execute distinct address SELECT statement: " . $DBI::errstr);
Jun 16, 2016
Jun 16, 2016
805
Jun 21, 2016
Jun 21, 2016
806
my $default_account = undef;
Jun 21, 2016
Jun 21, 2016
807
808
while (my @row = $stmt->fetchrow_array()) {
my $account = shift @row;
Jun 21, 2016
Jun 21, 2016
809
next if not defined $account;
Jun 21, 2016
Jun 21, 2016
810
811
my $address = $account;
$address =~ s/\A[ep]\://i or fail("Unexpected account format '$account'");
Jun 21, 2016
Jun 21, 2016
812
next if $address eq '';
Jun 21, 2016
Jun 21, 2016
813
814
dbgprint("distinct account: '$account' -> '$address'\n");
lookup_address($account, $address);
Jun 21, 2016
Jun 21, 2016
815
816
817
818
819
820
821
822
$default_account = $account if not defined $default_account; # oh well.
}
if (not defined $default_account) {
dbgprint("Ugh, forcing a default account.\n");
$default_account = 'e:donotreply@icloud.com'; # oh well.
$longnames{$default_account} = 'Unknown User';
$shortnames{$default_account} = 'Unknown';
Jun 21, 2016
Jun 21, 2016
823
}
Jun 21, 2016
Jun 21, 2016
825
826
%mac_addressbook = (); # dump all this, we're done with it.
827
$lookupstmt = undef;
Jun 21, 2016
Jun 21, 2016
828
$addressbookdb->disconnect() if (defined $addressbookdb);
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
$addressbookdb = undef;
dbgprint("Parsing messages...\n");
sub talk_gap {
my ($a, $b) = @_;
my $time1 = ($a < $b) ? $a : $b;
my $time2 = ($a < $b) ? $b : $a;
return (($time2 - $time1) >= $gaptime);
}
my $lastspeaker = '';
my $lastdate = 0;
my $lastday = '';
my $lasthandle_id = 0;
my $alias = undef;
Jun 21, 2016
Jun 21, 2016
846
my $thisimessageuseralias = undef;
847
848
849
my $startmsgid = undef;
my $newestmsgid = 0;
Jun 20, 2016
Jun 20, 2016
850
851
852
my $donerows = 0;
my $totalrows = undef;
my $percentdone = -1;
Jun 20, 2016
Jun 20, 2016
853
854
855
856
857
858
859
860
$stmt = $db->prepare('select ROWID from message order by ROWID desc limit 1;') or fail("Couldn't prepare row count SELECT statement: " . $DBI::errstr);
$stmt->execute() or fail("Couldn't execute row count SELECT statement: " . $DBI::errstr);
my $ending_startid = $startid;
if (my @row = $stmt->fetchrow_array()) {
$ending_startid = $row[0];
}
Jun 20, 2016
Jun 20, 2016
861
862
863
864
865
866
867
if ($report_progress) {
$stmt = $db->prepare('select count(*) from message where (ROWID > ?)') or fail("Couldn't prepare message count SELECT statement: " . $DBI::errstr);
$stmt->execute($startid) or fail("Couldn't execute message count SELECT statement: " . $DBI::errstr);
my @row = $stmt->fetchrow_array();
$totalrows = $row[0];
}
Jun 21, 2016
Jun 21, 2016
868
869
# We filter to iMessage and SMS, in case some other iChat service landed in here too.
$stmt = $db->prepare("select h.id, m.ROWID, m.text, m.service, m.account, m.handle_id, m.subject, m.date, m.is_emote, m.is_from_me, m.was_downgraded, m.is_audio_message, m.cache_has_attachments from message as m inner join handle as h on m.handle_id=h.ROWID where (m.ROWID > ?) and (m.service='iMessage' or m.service='SMS') order by m.handle_id, m.ROWID;")
870
871
872
873
874
or fail("Couldn't prepare message SELECT statement: " . $DBI::errstr);
my $attachmentstmt = $db->prepare('select filename, mime_type from attachment as a inner join (select rowid,attachment_id from message_attachment_join where message_id=?) as j where a.ROWID=j.attachment_id order by j.ROWID;')
or fail("Couldn't prepare attachment lookup SELECT statement: " . $DBI::errstr);
Jun 18, 2016
Jun 18, 2016
875
876
$stmt->execute($startid) or fail("Couldn't execute message SELECT statement: " . $DBI::errstr);
877
878
879
880
881
882
883
884
while (my @row = $stmt->fetchrow_array()) {
if ($debug) {
dbgprint("New row:\n");
foreach(@row) {
dbgprint(defined $_ ? " $_\n" : " [undef]\n");
}
}
Jun 20, 2016
Jun 20, 2016
885
886
887
888
889
890
891
892
893
if ($report_progress) {
my $newpct = int(($donerows / $totalrows) * 100.0);
if ($newpct != $percentdone) {
$percentdone = $newpct;
print("Processed $donerows messages of $totalrows ($percentdone%)\n");
}
}
$donerows++;
Jun 16, 2016
Jun 16, 2016
894
my ($idname, $msgid, $text, $service, $account, $handle_id, $subject, $date, $is_emote, $is_from_me, $was_downgraded, $is_audio_message, $cache_has_attachments) = @row;
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
next if not defined $text;
# Convert from Cocoa epoch to Unix epoch (2001 -> 1970).
$date += 978307200;
$startmsgid = $msgid if (not defined $startmsgid);
if (not defined $startids{$handle_id}) {
my $with = $longnames{$handle_id};
dbgprint("Flushing new per-user startid for $idname ('$with')\n");
if (not flush_startid($handle_id, 0)) {
fail("didn't flush new startid for $idname ('$with')");
}
}
if (($now - $date) < $gaptime) {
dbgprint("timestamp '$date' is less than $gaptime seconds old.\n");
Jun 20, 2016
Jun 20, 2016
912
913
914
if ($msgid < $ending_startid) {
$ending_startid = ($startmsgid-1);
dbgprint("forcing global startid to $ending_startid\n");
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
}
# trash this conversation, it might still be ongoing.
flush_conversation(1) if ($handle_id == $lasthandle_id);
next;
}
$newestmsgid = $msgid if ($msgid > $newestmsgid);
# this happens if we had a conversation that was still ongoing when a
# newer conversation got archived. Next run, the newer conversation
# gets pulled from the database again so we can recheck the older
# conversation.
if ($msgid <= $startids{$handle_id}) {
dbgprint("msgid $msgid is already archived.\n");
next;
}
# Try to merge collections that appear to be the same conversation...
if (($handle_id != $lasthandle_id) or (talk_gap($lastdate, $date))) {
flush_conversation(0);
Jun 21, 2016
Jun 21, 2016
936
$account = $default_account if (not defined $account); # happens on old SMS messages.
Jun 21, 2016
Jun 21, 2016
937
$account = $default_account if $account =~ /\A[ep]\:\Z/i;
Jun 21, 2016
Jun 21, 2016
938
Jun 21, 2016
Jun 21, 2016
939
940
941
942
943
944
945
946
947
948
949
950
951
952
$imessageuser = $account;
if ($imessageuser =~ s/\A([ep])\://i) {
my $type = lc($1);
if ($type eq 'p') {
$imessageuser =~ s/[^\d]//g;
$imessageuser = "phone-$imessageuser\@icloud.com";
}
} else {
fail("BUG: this shouldn't have happened."); # we checked this before.
}
$imessageuserlongname = $longnames{$account};
$imessageusershortname = $shortnames{$account};
Jun 21, 2016
Jun 21, 2016
953
954
955
$imessageuserhost = $imessageuser;
$imessageuserhost =~ s/\A.*\@//;
Jun 21, 2016
Jun 21, 2016
956
957
958
959
dbgprint("longname for imessageuser ($imessageuser) == $imessageuserlongname\n");
dbgprint("shortname for imessageuser ($imessageuser) == $imessageusershortname\n");
dbgprint("imessageuserhost == $imessageuserhost\n");
960
961
962
963
964
965
966
967
968
$outtimestamp = $date;
$outhandle_id = $handle_id;
$outid = $msgid;
$startmsgid = $msgid;
my $fullalias = $longnames{$handle_id};
my $shortalias = $shortnames{$handle_id};
Jun 21, 2016
Jun 21, 2016
969
if ($shortalias ne $imessageusershortname) {
970
$alias = $shortalias;
Jun 21, 2016
Jun 21, 2016
971
972
$thisimessageuseralias = $imessageusershortname;
} elsif ($fullalias ne $imessageuserlongname) {
973
$alias = $fullalias;
Jun 21, 2016
Jun 21, 2016
974
$thisimessageuseralias = $imessageuserlongname;
975
976
} else {
$alias = "$shortalias ($idname)";
Jun 21, 2016
Jun 21, 2016
977
$thisimessageuseralias = "$imessageusershortname ($imessageuser)";
Jun 16, 2016
Jun 16, 2016
980
981
982
$outperson = $idname;
if ($outperson ne $fullalias) {
$outperson = "$fullalias [$idname]";
983
984
985
986
987
988
}
$lasthandle_id = $handle_id;
$lastspeaker = '';
$lastdate = 0;
$lastday = '';
Jun 16, 2016
Jun 16, 2016
989
Jun 21, 2016
Jun 21, 2016
990
991
992
993
994
995
$outhasfromme = 0;
$outhasfromthem = 0;
$outhasfromme_a = 0;
$outhasfromme_sms = 0;
$outhasfromme_sms_a = 0;
Jun 16, 2016
Jun 16, 2016
996
997
998
$output_text = '';
$output_html = '';
@output_attachments = ();
Jun 20, 2016
Jun 20, 2016
999
1000
if (defined $subject) {