summaryrefslogtreecommitdiff
path: root/lib/Feed/HelperRole/Mail.pm
blob: ac431fdd12f21132363d2c0b9c0f5ab406096228 (plain)
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
package Feed::HelperRole::Mail; 
use Moose::Role;
use 5.012;
use namespace::autoclean;
use Encode;
use Encode::MIME::Header;
use MIME::Lite;
use DateTime::Format::Mail;
use Digest::SHA1 qw/ sha1_hex /;
use Template;
use Template::Provider::Encoding;
use Template::Stash::ForceUTF8;
use Moose::Util::TypeConstraints;
use Try::Tiny;
 
use List::MoreUtils qw(uniq);
use Text::CleanFragment;
use URI;
 
subtype 'ArrayOfStr'as 'ArrayRef[Str]';
coerce 'ArrayOfStr', from 'Str', via { [ $_ ] };
 
has _mail_folders => (
    is => 'ro',
    isa => 'ArrayOfStr',
    coerce => 1,
    default => sub { [] },
    traits => [ 'Array' ],
    init_arg => 'mail_folders',
    handles => {
        mail_folders => 'elements',
    }
);
 
has tt => (
    is => 'ro',
    isa => 'Template',
    lazy_build => 1,
);
 
has template => (
    is => 'ro',
    isa => 'Str',
    lazy_build => 1,
);
 
has date_formatter => (
    is => 'ro',
    lazy_build => 1,
);
 
has inline_images => (
    is => 'ro',
    isa => 'Bool',
);
 
sub _build_tt {
    my ($self) = @_;
 
    return Template->new(
        LOAD_TEMPLATES => [ Template::Provider::Encoding->new ],
        STASH => Template::Stash::ForceUTF8->new,
    );
}
 
sub _build_template {
    my ($self) = @_;
 
    my $curpos = tell(DATA);
    binmode(DATA);
    my $template = do {local $/;<DATA>};
    seek(DATA,$curpos,0);
 
    return $template;
}
 
sub _build_date_formatter {
    return DateTime::Format::Mail->new();
}
 
sub entry_to_mime {
    my ($self,$entry) = @_;
 
    my $from = 'feeder@localhost';
    my $date = $entry->unified_date
        // DateTime->now(time_zone=>'UTC');
    my $from_name = $entry->author // $self->title;
    try { $from_name = decode('utf-8',$from_name) };
    $from_name =~ tr/,//d;
    my $subject = $entry->title//'(no title)';
    try { $subject = decode('utf-8',$subject) };
    my $id   = sha1_hex(encode('utf-8',$entry->unified_id));
 
    my $body = $self->prepare_body($entry);
 
    my $msg = MIME::Lite->new(
        Date => $self->date_formatter->format_datetime($date),
        From => encode('MIME-Header',qq{"$from_name" <$from>}),
        To => $from,
        Subject => encode('MIME-Header',$subject),
        Type => 'multipart/related',
    );
 
    my @images;
    if$self->inline_images ) {
        # We expect fairly clean HTML here... 
        my $base$entry->link;
        my @links= uniq $body=~ m/<img\s[^>]*\bsrc="([^"]+)".*?>/ig;
 
        # Fetch all images, append them 
        my $ua$self->user_agent;
        for my $image ( @links ) {
            my $url= URI->new_abs( $image$base );
            $self->log->trace( "Retrieving '$url' for inlining" );
            my $res$ua->get( $urlReferer => $base );
            if( not $res->is_success ) {
                $self->log->error("Error retrieving linked image URL '$url': " . $res->status_line );
                next
            };
 
            my $name= clean_fragment( $image );
            my $idsprintf "cid:$name";
 
            $body=~ s!src\s*=\s*"\Q$image\E"!src="$id"!g;
            push @images, {
                Type => $res->content_type,
                Id   => $name,
                Data => $res->content,
                Filename => $name,
            };
        };
    };
 
    $msg->attach(
        Type => 'text/html; charset=utf-8',
        Data => encode('utf-8',$body),
        Encoding => 'quoted-printable',
    );
 
    for my $image (@images) {
        # rewrite the HTML to reference the images 
        $self->log->trace( "Attaching " . $image->{Type} );
        $msg->attach(%$image);
    };
 
    $msg->add('Message-Id'"<$id.feeder\@localhost>");
    my @tags = $entry->tags;
    try { @tags = map { decode('utf-8',$_) } @tags };
    $msg->add('X-Tags', encode('MIME-Header'join(' '@tags )));
 
    return $msg;
}
 
sub prepare_body {
    my ($self,$entry) = @_;
 
    my $template=$self->template;
    my $out;
    $self->tt->process(
        \$template,
        {
            feeder => $self,
            feed => $self->feed,
            entry => $entry,
            content => $entry->unified_content,
        },
        \$out,
    )
        or die $self->tt->error;
    return $out;
}
 
1;
 
__DATA__
[% USE encoding 'utf-8' -%]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  <style TYPE=text/css>
   body { padding:0; margin:20px }
   strong { font-weight:bold; font-size:1.2em }
   div#msgheader { background:#65869E; color:#F5F5F5; padding:10px; margin:-20px -20px 0 -20px } 
   div#msgbody { margin: 1em } 
   div#msgfooter { text-align:right; font-size:0.8em } 
   #msgheader a:link { color:#F5F5F5 } 
   #msgheader a { font-size: 90% } 
   #msgbody a:link { color:#000000 } 
   #msgbody img { border:1px solid; background:#F5F5F5 } 
   #msgbody hr { border:1px solid } 
   #msgbody pre { font-size: 90% } 
  </style>
 </head>
 <body>
  <div id="msgheader">
   [% SET link = entry.link || entry.id -%]
   <a href="[% link | html %]"><strong>[% entry.title %]</strong></a><br />
   [% feed.title %]<br />
   [% IF entry.author %]
    by [% entry.author | html %]
   [% END %]
   [% IF entry.tags.size %]
    on [% entry.tags.join(',') %]
   [% END %]
  </div>
  <div id="msgbody">
   [% IF content.body -%]
    [% IF content.body.match('(?i)^<p[ >]') %]
     [% content.body %]
    [% ELSE %]
     <div id="msgbody">[% content.body %]</div>
    [% END %]
   [% ELSE %]
    <br />
   [% END %]
  </div>
  <div id="msgfooter">
   [% IF entry.issued %]
    Posted on [% feeder.date_formatter.format_datetime(entry.issued) %]
   [% END %]
   [% IF entry.modified %]
    Modified on [% feeder.date_formatter.format_datetime(entry.modified) %]
   [% END %]
    |
   <a href="[% entry.link | html %]">permalink</a>
    |
   <a href="[% feed.link | html %]">[% feed.title | html %]</a>
   <br clear="all" />
  </div>
 </body>
</html>