]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/EmailSummary/useremailsummaryhandler.php
More info for a proper, fancy-url lighttpd setup
[quix0rs-gnu-social.git] / plugins / EmailSummary / useremailsummaryhandler.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  *
5  * Handler for queue items of type 'usersum', sends an email summaries
6  * to a particular user.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Affero General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Affero General Public License for more details.
17  *
18  * You should have received a copy of the GNU Affero General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  *
21  * @category  Sample
22  * @package   StatusNet
23  * @author    Evan Prodromou <evan@status.net>
24  * @copyright 2010 StatusNet, Inc.
25  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
26  * @link      http://status.net/
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 /**
34  * Handler for queue items of type 'usersum', sends an email summaries
35  * to a particular user.
36  *
37  * @category  Email
38  * @package   StatusNet
39  * @author    Evan Prodromou <evan@status.net>
40  * @copyright 2010 StatusNet, Inc.
41  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
42  * @link      http://status.net/
43  */
44 class UserEmailSummaryHandler extends QueueHandler
45 {
46     // Maximum number of notices to include by default. This is probably too much.
47     const MAX_NOTICES = 200;
48
49     /**
50      * Return transport keyword which identifies items this queue handler
51      * services; must be defined for all subclasses.
52      *
53      * Must be 8 characters or less to fit in the queue_item database.
54      * ex "email", "jabber", "sms", "irc", ...
55      *
56      * @return string
57      */
58     function transport()
59     {
60         return 'usersum';
61     }
62
63     /**
64      * Send a summary email to the user
65      *
66      * @param mixed $object
67      * @return boolean true on success, false on failure
68      */
69     function handle($user_id)
70     {
71         // Skip if they've asked not to get summaries
72
73         $ess = Email_summary_status::getKV('user_id', $user_id);
74
75         if (!empty($ess) && !$ess->send_summary) {
76             common_log(LOG_INFO, sprintf('Not sending email summary for user %s by request.', $user_id));
77             return true;
78         }
79
80         $since_id = null;
81
82         if (!empty($ess)) {
83             $since_id = $ess->last_summary_id;
84         }
85
86         $user = User::getKV('id', $user_id);
87
88         if (empty($user)) {
89             common_log(LOG_INFO, sprintf('Not sending email summary for user %s; no such user.', $user_id));
90             return true;
91         }
92
93         if (empty($user->email)) {
94             common_log(LOG_INFO, sprintf('Not sending email summary for user %s; no email address.', $user_id));
95             return true;
96         }
97
98         $profile = $user->getProfile();
99
100         if (empty($profile)) {
101             common_log(LOG_WARNING, sprintf('Not sending email summary for user %s; no profile.', $user_id));
102             return true;
103         }
104
105         $stream = new InboxNoticeStream($user, $user->getProfile());
106
107         $notice = $stream->getNotices(0, self::MAX_NOTICES, $since_id);
108
109         if (empty($notice) || $notice->N == 0) {
110             common_log(LOG_WARNING, sprintf('Not sending email summary for user %s; no notices.', $user_id));
111             return true;
112         }
113
114         // XXX: This is risky fingerpoken in der objektvars, but I didn't feel like
115         // figuring out a better way. -ESP
116
117         $new_top = null;
118
119         if ($notice instanceof ArrayWrapper) {
120             $new_top = $notice->_items[0]->id;
121         }
122
123         // TRANS: Subject for e-mail.
124         $subject = sprintf(_m('Your latest updates from %s'), common_config('site', 'name'));
125
126         $out = new XMLStringer(true);
127
128         $out->elementStart('html');
129         $out->elementStart('head');
130         $out->element('title', null, $subject);
131         $out->elementEnd('head');
132         $out->elementStart('body');
133         $out->elementStart('div', array('width' => '100%',
134                                         'style' => 'background-color: #ffffff; border: 4px solid #4c609a; padding: 10px;'));
135
136         $out->elementStart('div', array('style' => 'color: #ffffff; background-color: #4c609a; font-weight: bold; margin-bottom: 10px; padding: 4px;'));
137         // TRANS: Text in e-mail summary.
138         // TRANS: %1$s is the StatusNet sitename, %2$s is the recipient's profile name.
139         $out->raw(sprintf(_m('Recent updates from %1$s for %2$s:'),
140                           common_config('site', 'name'),
141                           $profile->getBestName()));
142         $out->elementEnd('div');
143
144         $out->elementStart('table', array('width' => '550px',
145                                           'style' => 'border: none; border-collapse: collapse;', 'cellpadding' => '6'));
146
147         while ($notice->fetch()) {
148             $profile = Profile::getKV('id', $notice->profile_id);
149
150             if (empty($profile)) {
151                 continue;
152             }
153
154             $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
155
156             $out->elementStart('tr');
157             $out->elementStart('td', array('width' => AVATAR_STREAM_SIZE,
158                                            'height' => AVATAR_STREAM_SIZE,
159                                            'align' => 'left',
160                                            'valign' => 'top',
161                                            'style' => 'border-bottom: 1px dotted #C5CEE3; padding: 10px 6px 10px 6px;'));
162             $out->element('img', array('src' => ($avatar) ?
163                                        $avatar->displayUrl() :
164                                        Avatar::defaultImage(AVATAR_STREAM_SIZE),
165                                        'width' => AVATAR_STREAM_SIZE,
166                                        'height' => AVATAR_STREAM_SIZE,
167                                        'alt' => $profile->getBestName()));
168             $out->elementEnd('td');
169             $out->elementStart('td', array('align' => 'left',
170                                            'valign' => 'top',
171                                            'style' => 'border-bottom: 1px dotted #C5CEE3; padding: 10px 6px 10px 6px;'));
172             $out->element('a', array('href' => $profile->profileurl),
173                           $profile->nickname);
174             $out->text(' ');
175             $out->raw($notice->rendered);
176             $out->elementStart('div', array('style' => 'font-size: 0.8em; padding-top: 4px;'));
177             $noticeurl = $notice->bestUrl();
178             // above should always return an URL
179             assert(!empty($noticeurl));
180             $out->elementStart('a', array('rel' => 'bookmark',
181                                           'href' => $noticeurl));
182             $dt = common_date_iso8601($notice->created);
183             $out->element('abbr', array('style' => 'border-bottom: none;',
184                                         'title' => $dt),
185                           common_date_string($notice->created));
186             $out->elementEnd('a');
187             if ($notice->hasConversation()) {
188                 $conv = Conversation::getKV('id', $notice->conversation);
189                 $convurl = $conv->uri;
190                 if (!empty($convurl)) {
191                     $out->text(' ');
192                     $out->element('a',
193                                   array('href' => $convurl.'#notice-'.$notice->id),
194                                   // TRANS: Link text for link to conversation view.
195                                   _m('in context'));
196                 }
197             }
198             $out->elementEnd('div');
199             $out->elementEnd('td');
200             $out->elementEnd('tr');
201         }
202
203         $out->elementEnd('table');
204
205         // TRANS: Link text for link to e-mail settings.
206         // TRANS: %1$s is a link to the e-mail settings, %2$s is the StatusNet sitename.
207         $out->raw("<p>" . sprintf(_m('<a href="%1$s">change your email settings for %2$s</a>'),
208                           common_local_url('emailsettings'),
209                           common_config('site', 'name'))."</p>");
210
211         $out->elementEnd('div');
212         $out->elementEnd('body');
213         $out->elementEnd('html');
214
215         $body = $out->getString();
216
217         // FIXME: do something for people who don't like HTML email
218
219         mail_to_user($user,
220                      $subject,
221                      $body,
222                      array('Content-Type' => 'text/html; charset=utf-8',
223                            'Mime-Version' => '1.0'));
224
225         if (empty($ess)) {
226             $ess = new Email_summary_status();
227
228             $ess->user_id         = $user_id;
229             $ess->created         = common_sql_now();
230             $ess->last_summary_id = $new_top;
231             $ess->modified        = common_sql_now();
232
233             $ess->insert();
234         } else {
235             $orig = clone($ess);
236
237             $ess->last_summary_id = $new_top;
238             $ess->modified        = common_sql_now();
239
240             $ess->update($orig);
241         }
242
243         return true;
244     }
245 }