6 * Send by mail a digest of last articles.
8 * @param mixed $link The database connection.
9 * @param integer $limit The maximum number of articles by digest.
10 * @return boolean Return false if digests are not enabled.
12 static function send_headlines_digests($debug = false) {
14 require_once 'classes/ttrssmailer.php';
16 $user_limit = 15; // amount of users to process (e.g. emails to send out)
17 $limit = 1000; // maximum amount of headlines to include
19 if ($debug) _debug("Sending digests, batch of max $user_limit users, headline limit = $limit");
21 if (DB_TYPE == "pgsql") {
22 $interval_qpart = "last_digest_sent < NOW() - INTERVAL '1 days'";
23 } else if (DB_TYPE == "mysql") {
24 $interval_qpart = "last_digest_sent < DATE_SUB(NOW(), INTERVAL 1 DAY)";
29 $res = $pdo->query("SELECT id,email FROM ttrss_users
30 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_qpart)");
32 while ($line = $res->fetch()) {
34 if (@get_pref('DIGEST_ENABLE', $line['id'], false)) {
35 $preferred_ts = strtotime(get_pref('DIGEST_PREFERRED_TIME', $line['id'], '00:00'));
37 // try to send digests within 2 hours of preferred time
38 if ($preferred_ts && time() >= $preferred_ts &&
39 time() - $preferred_ts <= 7200
42 if ($debug) _debug("Sending digest for UID:" . $line['id'] . " - " . $line["email"]);
44 $do_catchup = get_pref('DIGEST_CATCHUP', $line['id'], false);
48 // reset tz_offset global to prevent tz cache clash between users
51 $tuple = Digest::prepare_headlines_digest($line["id"], 1, $limit);
53 $headlines_count = $tuple[1];
54 $affected_ids = $tuple[2];
55 $digest_text = $tuple[3];
57 if ($headlines_count > 0) {
59 $mail = new ttrssMailer();
61 $rc = $mail->quickMail($line["email"], $line["login"], DIGEST_SUBJECT, $digest, $digest_text);
63 if (!$rc && $debug) _debug("ERROR: " . $mail->ErrorInfo);
65 if ($debug) _debug("RC=$rc");
67 if ($rc && $do_catchup) {
68 if ($debug) _debug("Marking affected articles as read...");
69 Article::catchupArticlesById($affected_ids, 0, $line["id"]);
72 if ($debug) _debug("No headlines");
75 $sth = $pdo->prepare("UPDATE ttrss_users SET last_digest_sent = NOW()
77 $sth->execute([$line["id"]]);
83 if ($debug) _debug("All done.");
87 static function prepare_headlines_digest($user_id, $days = 1, $limit = 1000) {
89 require_once "lib/MiniTemplator.class.php";
91 $tpl = new MiniTemplator;
92 $tpl_t = new MiniTemplator;
94 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
95 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
97 $user_tz_string = get_pref('USER_TIMEZONE', $user_id);
98 $local_ts = convert_timestamp(time(), 'UTC', $user_tz_string);
100 $tpl->setVariable('CUR_DATE', date('Y/m/d', $local_ts));
101 $tpl->setVariable('CUR_TIME', date('G:i', $local_ts));
103 $tpl_t->setVariable('CUR_DATE', date('Y/m/d', $local_ts));
104 $tpl_t->setVariable('CUR_TIME', date('G:i', $local_ts));
106 $affected_ids = array();
110 if (DB_TYPE == "pgsql") {
111 $interval_qpart = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
112 } else if (DB_TYPE == "mysql") {
113 $interval_qpart = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
118 $sth = $pdo->prepare("SELECT ttrss_entries.title,
119 ttrss_feeds.title AS feed_title,
120 COALESCE(ttrss_feed_categories.title, '" . __('Uncategorized') . "') AS cat_title,
122 ttrss_user_entries.ref_id,
126 " . SUBSTRING_FOR_DATE . "(last_updated,1,19) AS last_updated
128 ttrss_user_entries,ttrss_entries,ttrss_feeds
130 ttrss_feed_categories ON (cat_id = ttrss_feed_categories.id)
132 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
133 AND include_in_digest = true
135 AND ttrss_user_entries.owner_uid = :user_id
138 ORDER BY ttrss_feed_categories.title, ttrss_feeds.title, score DESC, date_updated DESC
140 $sth->bindParam(':user_id', intval($user_id, 10), \PDO::PARAM_INT);
141 $sth->bindParam(':limit', intval($limit, 10), \PDO::PARAM_INT);
144 $headlines_count = 0;
145 $headlines = array();
147 while ($line = $sth->fetch()) {
148 array_push($headlines, $line);
152 for ($i = 0; $i < sizeof($headlines); $i++) {
154 $line = $headlines[$i];
156 array_push($affected_ids, $line["ref_id"]);
158 $updated = make_local_datetime($line['last_updated'], false,
161 if (get_pref('ENABLE_FEED_CATS', $user_id)) {
162 $line['feed_title'] = $line['cat_title'] . " / " . $line['feed_title'];
165 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
166 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
167 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
168 $tpl->setVariable('ARTICLE_UPDATED', $updated);
169 $tpl->setVariable('ARTICLE_EXCERPT',
170 truncate_string(strip_tags($line["content"]), 300));
171 // $tpl->setVariable('ARTICLE_CONTENT',
172 // strip_tags($article_content));
174 $tpl->addBlock('article');
176 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
177 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
178 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
179 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
180 // $tpl_t->setVariable('ARTICLE_EXCERPT',
181 // truncate_string(strip_tags($line["excerpt"]), 100));
183 $tpl_t->addBlock('article');
185 if ($headlines[$i]['feed_title'] != $headlines[$i + 1]['feed_title']) {
186 $tpl->addBlock('feed');
187 $tpl_t->addBlock('feed');
192 $tpl->addBlock('digest');
193 $tpl->generateOutputToString($tmp);
195 $tpl_t->addBlock('digest');
196 $tpl_t->generateOutputToString($tmp_t);
198 return array($tmp, $headlines_count, $affected_ids, $tmp_t);