Automatically create a new pending issue if it doesn't exist when committing an artic...
[platal.git] / include / newsletter.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
0337d704 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
84163d58
RB
22// {{{ class MailNotFound
23
24class MailNotFound extends Exception {
25}
26
27// }}}
0337d704 28
0337d704 29// {{{ class NewsLetter
30
84163d58 31class NewsLetter
0337d704 32{
84163d58
RB
33 public $id; // ID of the NL (in table newsletters)
34 public $group; // Short name of the group corresponding to the NL
35 public $group_id; // ID of that group
36 public $name; // Name of the NL (e.g "Lettre de Polytechnique.org", ...)
37 public $cats; // List of all categories for this NL
38 public $criteria; // PlFlagSet of allowed filters for recipient selection
39
40 protected $custom_css = false;
0337d704 41
84163d58
RB
42 // Base name to use instead of the group short name for NLs without a custom CSS
43 const FORMAT_DEFAULT_GROUP = 'default';
44
45 // Diminutif of X.net groups with a specific NL view
46 const GROUP_XORG = 'Polytechnique.org';
47 const GROUP_AX = 'AX';
48 const GROUP_EP = 'Ecole';
49
50 // {{{ Constructor, NewsLetter retrieval (forGroup, getAll)
51
52 public function __construct($id)
0337d704 53 {
84163d58
RB
54 // Load NL data
55 $res = XDB::query('SELECT nls.group_id, g.diminutif AS group_name,
56 nls.name AS nl_name, nls.custom_css, nls.criteria
57 FROM newsletters AS nls
58 LEFT JOIN groups AS g ON (nls.group_id = g.id)
59 WHERE nls.id = {?}',
60 $id);
61 if (!$res->numRows()) {
62 throw new MailNotFound();
63 }
64
65 $data = $res->fetchOneAssoc();
66 $this->id = $id;
67 $this->group_id = $data['group_id'];
68 $this->group = $data['group_name'];
69 $this->name = $data['nl_name'];
70 $this->custom_css = $data['custom_css'];
71 $this->criteria = new PlFlagSet($data['criteria']);
72
73 // Load the categories
74 $res = XDB::iterRow(
75 'SELECT cid, title
76 FROM newsletter_cat
77 WHERE nlid = {?}
78 ORDER BY pos', $id);
79 while (list($cid, $title) = $res->next()) {
80 $this->cats[$cid] = $title;
81 }
82 }
83
84 /** Retrieve the NL associated with a given group.
85 * @p $group Short name of the group
86 * @return A NewsLetter object, or null if the group doesn't have a NL.
87 */
88 public static function forGroup($group)
89 {
90 $res = XDB::query('SELECT nls.id
91 FROM newsletters AS nls
92 LEFT JOIN groups AS g ON (nls.group_id = g.id)
93 WHERE g.diminutif = {?}', $group);
94 if (!$res->numRows()) {
95 return null;
96 }
97 return new NewsLetter($res->fetchOneCell());
98 }
99
100 /** Retrieve all newsletters
101 * @return An array of $id => NewsLetter objects
102 */
103 public static function getAll()
104 {
105 $res = XDB::query('SELECT id
106 FROM newsletters');
107 $nls = array();
108 foreach ($res->fetchColumn() as $id) {
109 $nls[$id] = new NewsLetter($id);
110 }
111 return $nls;
112 }
113
114 // }}}
115 // {{{ Issue retrieval
116
117 /** Retrieve all issues which should be sent
118 * @return An array of NLIssue objects to send (i.e state = 'new' and send_before <= today)
119 */
120 public static function getIssuesToSend()
121 {
122 $res = XDB::query('SELECT id
123 FROM newsletter_issues
124 WHERE state = \'pending\' AND send_before <= NOW()');
125 $issues = array();
126 foreach ($res->fetchColumn() as $id) {
127 $issues[$id] = new NLIssue($id);
128 }
129 return $issues;
130 }
131
132 /** Retrieve a given issue of this NewsLetter
133 * @p $name Name or ID of the issue to retrieve.
134 * @return A NLIssue object.
135 *
136 * $name may be either a short_name, an ID or the special value 'last' which
137 * selects the latest sent NL.
138 * If $name is null, this will retrieve the current pending NL.
139 */
140 public function getIssue($name = null, $only_sent = true)
141 {
142 if ($name) {
143 if ($name == 'last') {
144 if ($only_sent) {
145 $where = 'state = \'sent\' AND ';
146 } else {
147 $where = '';
148 }
149 $res = XDB::query('SELECT MAX(id)
150 FROM newsletter_issues
151 WHERE ' . $where . ' nlid = {?}',
152 $this->id);
153 } else {
154 $res = XDB::query('SELECT id
155 FROM newsletter_issues
156 WHERE nlid = {?} AND (id = {?} OR short_name = {?})',
157 $this->id, $name, $name);
ed76a506 158 }
ed76a506 159 if (!$res->numRows()) {
84163d58
RB
160 throw new MailNotFound();
161 }
162 $id = $res->fetchOneCell();
163 } else {
164 $query = XDB::format('SELECT id
165 FROM newsletter_issues
166 WHERE nlid = {?} AND state = \'new\'
167 ORDER BY id DESC', $this->id);
168 $res = XDB::query($query);
169 if ($res->numRows()) {
170 $id = $res->fetchOneCell();
171 } else {
172 // Create a new, empty issue, and return it
173 $id = $this->createPending();
ed76a506 174 }
ad6ca77d 175 }
84163d58
RB
176
177 return new NLIssue($id, &$this);
178 }
179
180 /** Create a new, empty, pending newsletter issue
181 * @p $nlid The id of the NL for which a new pending issue should be created.
182 * @return Id of the newly created issue.
183 */
184 public function createPending()
185 {
186 XDB::execute('INSERT INTO newsletter_issues
187 SET nlid = {?}, state=\'new\', date=NOW(),
188 title=\'to be continued\',
189 mail_title=\'to be continued\'',
190 $this->id);
191 return XDB::insertId();
192 }
193
194 /** Return all sent issues of this newsletter.
195 * @return An array of (id => NLIssue)
196 */
197 public function listSentIssues($check_user = false, $user = null)
198 {
199 if ($check_user && $user == null) {
200 $user = S::user();
201 }
202
203 $res = XDB::query('SELECT id
204 FROM newsletter_issues
205 WHERE nlid = {?} AND state = \'sent\'
206 ORDER BY date DESC', $this->id);
207 $issues = array();
208 foreach ($res->fetchColumn() as $id) {
209 $issue = new NLIssue($id, $this, false);
210 if (!$check_user || $issue->checkUser($user)) {
211 $issues[$id] = $issue;
212 }
213 }
214 return $issues;
215 }
216
217 /** Return all issues of this newsletter, including invalid and sent.
218 * @return An array of (id => NLIssue)
219 */
220 public function listAllIssues()
221 {
222 $res = XDB::query('SELECT id
223 FROM newsletter_issues
224 WHERE nlid = {?}
225 ORDER BY FIELD(state, \'pending\', \'new\') DESC, date DESC', $this->id);
226 $issues = array();
227 foreach ($res->fetchColumn() as $id) {
228 $issues[$id] = new NLIssue($id, $this, false);
229 }
230 return $issues;
231 }
232
233 /** Return the latest pending issue of the newsletter.
b8bcbe02 234 * @p $create Whether to create an empty issue if no pending issue exist.
84163d58
RB
235 * @return Either null, or a NL object.
236 */
b8bcbe02 237 public function getPendingIssue($create = false)
84163d58
RB
238 {
239 $res = XDB::query('SELECT MAX(id)
240 FROM newsletter_issues
241 WHERE nlid = {?} AND state = \'new\'',
242 $this->id);
243 if ($res->numRows()) {
244 $id = $res->fetchOneCell();
245 return new NLIssue($id, $this);
b8bcbe02
RB
246 } else if ($create) {
247 $id = $this->createPending();
248 return new NLIssue($id, $this);
84163d58
RB
249 } else {
250 return null;
251 }
252 }
253
254 // }}}
255 // {{{ Subscription related function
256
257 /** Unsubscribe a user from this newsletter
258 * @p $uid UID to unsubscribe from the newsletter; if null, use current user.
259 * @p $hash True if the uid is actually a hash.
260 * @return True if the user was successfully unsubscribed.
261 */
262 public function unsubscribe($uid = null, $hash = false)
263 {
264 if (is_null($uid) && $hash) {
265 // Unable to unsubscribe from an empty hash
266 return false;
267 }
268 $user = is_null($uid) ? S::user()->id() : $uid;
269 $field = $hash ? 'hash' : 'uid';
270 $res = XDB::query('SELECT uid
271 FROM newsletter_ins
272 WHERE nlid = {?} AND ' . $field . ' = {?}',
273 $this->id, $user);
274 if (!$res->numRows()) {
275 // No subscribed user with that UID/hash
276 return false;
277 }
278 $user = $res->fetchOneCell();
279
280 XDB::execute('DELETE FROM newsletter_ins
281 WHERE nlid = {?} AND uid = {?}',
282 $this->id, $user);
283 return true;
284 }
285
286 /** Subscribe a user to a newsletter
287 * @p $user User to subscribe to the newsletter; if null, use current user.
288 */
289 public function subscribe($user = null)
290 {
291 if (is_null($user)) {
292 $user = S::user();
293 }
294 if (self::maySubscribe($user)) {
295 XDB::execute('INSERT IGNORE INTO newsletter_ins (nlid, uid, last, hash)
296 VALUES ({?}, {?}, NULL, hash)',
297 $this->id, $user->id());
298 }
299 }
300
301 /** Retrieve subscription state of a user
302 * @p $user Target user; if null, use current user.
303 * @return Boolean: true if the user has subscribed to the NL.
304 */
305 public function subscriptionState($user = null)
306 {
307 if (is_null($user)) {
308 $user = S::user();
309 }
310 $res = XDB::query('SELECT 1
311 FROM newsletter_ins
312 WHERE nlid = {?} AND uid = {?}',
313 $this->id, $user->id());
314 return ($res->numRows() == 1);
315 }
316
317 /** Get the count of subscribers to the NL.
318 * @return Number of subscribers.
319 */
320 public function subscriberCount()
321 {
322 return XDB::fetchOneCell('SELECT COUNT(uid)
323 FROM newsletter_ins
324 WHERE nlid = {?}', $this->id);
325 }
326
327 /** Get the number of subscribers to the NL whose last received mailing was $last.
328 * @p $last ID of the issue for which subscribers should be counted.
329 * @return Number of subscribers
330 */
331 public function subscriberCountForLast($last)
332 {
333 return XDB::fetchOneCell('SELECT COUNT(uid)
334 FROM newsletter_ins
335 WHERE nlid = {?} AND last = {?}', $this->id, $last);
336 }
337
338 /** Retrieve the list of newsletters a user has subscribed to
339 * @p $user User whose subscriptions should be retrieved (if null, use session user).
340 * @return Array of newsletter IDs
341 */
342 public static function getUserSubscriptions($user = null)
343 {
344 if (is_null($user)) {
345 $user = S::user();
346 }
347 $res = XDB::query('SELECT nlid
348 FROM newsletter_ins
349 WHERE uid = {?}',
350 $user->id());
351 return $res->fetchColumn();
352 }
353
354 /** Retrieve the UserFilterBuilder for subscribers to this NL.
355 * This is the place where NL-specific filters may be allowed or prevented.
356 * @p $envprefix Prefix to use for env fields (cf. UserFilterBuilder)
357 * @return A UserFilterBuilder object using the given env prefix
358 */
359 public function getSubscribersUFB($envprefix = '')
360 {
361 require_once 'ufbuilder.inc.php';
362 return new UFB_NewsLetter($this->criteria, $envprefix);
363 }
364
365 // }}}
366 // {{{ Permissions related functions
367
368 /** For later use: check whether a given user may subscribe to this newsletter.
369 * @p $user User whose access should be checked
370 * @return Boolean: whether the user may subscribe to the NL.
371 */
372 public function maySubscribe($user = null)
373 {
374 return true;
375 }
376
377 /** Whether a given user may edit this newsletter
378 * @p $uid UID of the user whose perms should be checked (if null, use current user)
379 * @return Boolean: whether the user may edit the NL
380 */
381 public function mayEdit($user = null)
382 {
383 if (is_null($user)) {
384 $user = S::user();
385 }
386 if ($user->checkPerms('admin')) {
387 return true;
388 }
389 $res = XDB::query('SELECT perms
390 FROM group_members
391 WHERE asso_id = {?} AND uid = {?}',
392 $this->group_id, $user->id());
393 return ($res->numRows() && $res->fetchOneCell() == 'admin');
394 }
395
396 /** Whether a given user may submit articles to this newsletter using X.org validation system
397 * @p $user User whose access should be checked (if null, use current user)
398 * @return Boolean: whether the user may submit articles
399 */
400 public function maySubmit($user = null)
401 {
402 // Submission of new articles is only enabled for the X.org NL (and forbidden when viewing issues on X.net)
403 return ($this->group == self::GROUP_XORG && !isset($GLOBALS['IS_XNET_SITE']));
404 }
405
406 // }}}
407 // {{{ Display-related functions: cssFile, tplFile, prefix, admin_prefix, admin_links_enabled, automatic_mailings_enabled
408
409 /** Get the name of the css file used to display this newsletter.
410 */
411 public function cssFile()
412 {
413 if ($this->custom_css) {
414 $base = $this->group;
415 } else {
416 $base = self::FORMAT_DEFAULT_GROUP;
417 }
418 return 'nl.' . $base . '.css';
419 }
420
421 /** Get the name of the template file used to display this newsletter.
422 */
423 public function tplFile()
424 {
425 if ($this->custom_css) {
426 $base = $this->group;
427 } else {
428 $base = self::FORMAT_DEFAULT_GROUP;
429 }
430 return 'newsletter/nl.' . $base . '.mail.tpl';
431 }
432
433 /** Get the prefix leading to the page for this NL
434 * Only X.org / AX / X groups may be seen on X.org.
435 */
436 public function prefix()
437 {
438 if (!empty($GLOBALS['IS_XNET_SITE'])) {
439 return $this->group . '/nl';
440 }
441 switch ($this->group) {
442 case self::GROUP_XORG:
443 return 'nl';
444 case self::GROUP_AX:
445 return 'ax';
446 case self::GROUP_EP:
447 return 'epletter';
448 default:
449 // Don't display groups NLs on X.org
450 assert(false);
451 }
452 }
453
454 /** Get the prefix to use for all 'admin' pages of this NL.
455 */
456 public function adminPrefix()
457 {
458 if (!empty($GLOBALS['IS_XNET_SITE'])) {
459 return $this->group . '/admin/nl';
460 }
461 switch ($this->group) {
462 case self::GROUP_XORG:
463 return 'admin/newsletter';
464 case self::GROUP_AX:
465 return 'ax/admin';
466 case self::GROUP_EP:
467 return 'epletter/admin';
468 default:
469 // Don't display groups NLs on X.org
470 assert(false);
471 }
472 }
473
474 /** Hack used to remove "admin" links on X.org page on X.net
475 * The 'admin' links are enabled for all pages, except for X.org when accessing NL through X.net
476 */
477 public function adminLinksEnabled()
478 {
479 return ($this->group != self::GROUP_XORG || !isset($GLOBALS['IS_XNET_SITE']));
480 }
481
482 /** Automatic mailings are disabled for X.org NL.
483 */
484 public function automaticMailingEnabled()
485 {
486 return $this->group != self::GROUP_XORG;
487 }
488
489 public function hasCustomCss()
490 {
491 return $this->custom_css;
492 }
493
494 // }}}
495}
496
497// }}}
498
499// {{{ class NLIssue
500
501// A NLIssue is an issue of a given NewsLetter
502class NLIssue
503{
504 protected $nlid; // Id of the newsletter
505
506 const STATE_NEW = 'new'; // New, currently being edited
507 const STATE_PENDING = 'pending'; // Ready for mailing
508 const STATE_SENT = 'sent'; // Sent
509
510 public $nl; // Related NL
511
512 public $id; // Id of this issue of the newsletter
513 public $shortname; // Shortname for this issue
514 public $title; // Title of this issue
515 public $title_mail; // Title of the email
516 public $state; // State of the issue (one of the STATE_ values)
517 public $sufb; // Environment to use to generate the UFC through an UserFilterBuilder
518
519 public $date; // Date at which this issue was sent
520 public $send_before; // Date at which issue should be sent
521 public $head; // Foreword of the issue (or body for letters with no articles)
522 public $signature; // Signature of the letter
523 public $arts = array(); // Articles of the issue
524
525 const BATCH_SIZE = 60; // Number of emails to send every minute.
526
527 // {{{ Constructor, id-related functions
528
529 /** Build a NewsLetter.
530 * @p $id: ID of the issue (unique among all newsletters)
531 * @p $nl: Optional argument containing an already built NewsLetter object.
532 */
533 function __construct($id, $nl = null, $fetch_articles = true)
534 {
535 return $this->fetch($id, $nl, $fetch_articles);
536 }
537
538 protected function refresh()
539 {
540 return $this->fetch($this->id, $this->nl, false);
541 }
542
543 protected function fetch($id, $nl = null, $fetch_articles = true)
544 {
545 // Load this issue
546 $res = XDB::query('SELECT nlid, short_name, date, send_before, state, sufb_json,
547 title, mail_title, head, signature
548 FROM newsletter_issues
549 WHERE id = {?}',
550 $id);
551 if (!$res->numRows()) {
9da70671
SJ
552 throw new MailNotFound();
553 }
84163d58
RB
554 $issue = $res->fetchOneAssoc();
555 if ($nl && $nl->id == $issue['nlid']) {
556 $this->nl = $nl;
557 } else {
558 $this->nl = new NewsLetter($issue['nlid']);
559 }
560 $this->id = $id;
561 $this->shortname = $issue['short_name'];
562 $this->date = $issue['date'];
563 $this->send_before = $issue['send_before'];
564 $this->state = $issue['state'];
565 $this->title = $issue['title'];
566 $this->title_mail = $issue['mail_title'];
567 $this->head = $issue['head'];
568 $this->signature = $issue['signature'];
569 $this->sufb = $this->importJSonStoredUFB($issue['sufb_json']);
0337d704 570
84163d58
RB
571 if ($fetch_articles) {
572 $this->fetchArticles();
573 }
574 }
0337d704 575
84163d58
RB
576 protected function fetchArticles($force = false)
577 {
578 if (count($this->arts) && !$force) {
579 return;
ed76a506 580 }
eaf30d86 581
84163d58 582 // Load the articles
ed76a506 583 $res = XDB::iterRow(
84163d58
RB
584 'SELECT a.title, a.body, a.append, a.aid, a.cid, a.pos
585 FROM newsletter_art AS a
586 INNER JOIN newsletter_issues AS ni USING(id)
587 LEFT JOIN newsletter_cat AS c ON (a.cid = c.cid)
588 WHERE a.id = {?}
589 ORDER BY c.pos, a.pos',
590 $this->id);
ed76a506 591 while (list($title, $body, $append, $aid, $cid, $pos) = $res->next()) {
84163d58
RB
592 $this->arts[$cid][$aid] = new NLArticle($title, $body, $append, $aid, $cid, $pos);
593 }
594 }
595
596 protected function importJSonStoredUFB($json = null)
597 {
598 require_once 'ufbuilder.inc.php';
599 $ufb = $this->nl->getSubscribersUFB();
600 if (is_null($json)) {
601 return new StoredUserFilterBuilder($ufb, new PFC_True());
602 }
603 $export = json_decode($json, true);
604 if (is_null($export)) {
605 PlErrorReport::report("Invalid json while reading NL {$this->nlid}, issue {$this->id}: failed to import '''{$json}'''.");
606 return new StoredUserFilterBuilder($ufb, new PFC_True());
607 }
608 $sufb = new StoredUserFilterBuilder($ufb);
609 $sufb->fillFromExport($export);
610 return $sufb;
611 }
612
613 protected function exportStoredUFBAsJSon()
614 {
615 return json_encode($this->sufb->export());
616 }
617
618 public function id()
619 {
620 return is_null($this->shortname) ? $this->id : $this->shortname;
621 }
622
623 protected function selectId($where)
624 {
625 $res = XDB::query("SELECT IFNULL(ni.short_name, ni.id)
626 FROM newsletter_issues AS ni
627 WHERE ni.state != 'new' AND ni.nlid = {?} AND ${where}
628 LIMIT 1", $this->nl->id);
629 if ($res->numRows() != 1) {
630 return null;
631 }
632 return $res->fetchOneCell();
633 }
634
635 /** Delete this issue
636 * @return True if the issue could be deleted, false otherwise.
637 * Related articles will be deleted through cascading FKs.
638 * If this issue was the last issue for at least one subscriber, the deletion will be aborted.
639 */
640 public function delete()
641 {
642 if ($this->state == self::STATE_NEW) {
643 $res = XDB::query('SELECT COUNT(*)
644 FROM newsletter_ins
645 WHERE last = {?}', $this->id);
646 if ($res->fetchOneCell() > 0) {
647 return false;
648 }
649
650 return XDB::execute('DELETE FROM newsletter_issues
651 WHERE id = {?}', $this->id);
652 } else {
653 return false;
654 }
655 }
656
657 /** Schedule a mailing of this NL
658 * If the 'send_before' field was NULL, it is set to the current time.
659 * @return Boolean Whether the date could be set (false if trying to schedule an already sent NL)
660 */
661 public function scheduleMailing()
662 {
663 if ($this->state == self::STATE_NEW) {
664 $success = XDB::execute('UPDATE newsletter_issues
665 SET state = \'pending\', send_before = IFNULL(send_before, NOW())
666 WHERE id = {?}',
667 $this->id);
668 if ($success) {
669 $this->refresh();
670 }
671 return $success;
672 } else {
673 return false;
674 }
675 }
676
677 /** Cancel the scheduled mailing of this NL
678 * @return Boolean: whether the mailing could be cancelled.
679 */
680 public function cancelMailing()
681 {
682 if ($this->state == self::STATE_PENDING) {
683 $success = XDB::execute('UPDATE newsletter_issues
684 SET send_before = NULL, state = \'new\'
685 WHERE id = {?}', $this->id);
686 if ($success) {
687 $this->refresh();
688 }
689 return $success;
690 } else {
691 return false;
692 }
693 }
694
695 /** Helper function for smarty templates: is this issue editable ?
696 */
697 public function isEditable()
698 {
699 return $this->state == self::STATE_NEW;
700 }
701
702 /** Helper function for smarty templates: is the mailing of this issue scheduled ?
703 */
704 public function isPending()
705 {
706 return $this->state == self::STATE_PENDING;
707 }
708
709 /** Helper function for smarty templates: has this issue been sent ?
710 */
711 public function isSent()
712 {
713 return $this->state == self::STATE_SENT;
714 }
715
716 // }}}
717 // {{{ Navigation
718
719 private $id_prev = null;
720 private $id_next = null;
721 private $id_last = null;
722
723 /** Retrieve ID of the previous issue
724 * That value, once fetched, is cached in the private $id_prev variable.
725 * @return ID of the previous issue.
726 */
727 public function prev()
728 {
729 if (is_null($this->id_prev)) {
730 $this->id_prev = $this->selectId(XDB::format("ni.id < {?} ORDER BY ni.id DESC", $this->id));
731 }
732 return $this->id_prev;
733 }
734
735 /** Retrieve ID of the following issue
736 * That value, once fetched, is cached in the private $id_next variable.
737 * @return ID of the following issue.
738 */
739 public function next()
740 {
741 if (is_null($this->id_next)) {
742 $this->id_next = $this->selectId(XDB::format("ni.id > {?} ORDER BY ni.id", $this->id));
743 }
744 return $this->id_next;
745 }
746
747 /** Retrieve ID of the last issue
748 * That value, once fetched, is cached in the private $id_last variable.
749 * @return ID of the last issue.
750 */
751 public function last()
752 {
753 if (is_null($this->id_last)) {
754 $this->id_last = $this->nl->getIssue('last')->id;
ed76a506 755 }
84163d58 756 return $this->id_last;
0337d704 757 }
758
84163d58
RB
759 // }}}
760 // {{{ Edition, articles
761
762 const ERROR_INVALID_SHORTNAME = 'invalid_shortname';
763 const ERROR_INVALID_UFC = 'invalid_ufc';
764 const ERROR_SQL_SAVE = 'sql_error';
765
766 /** Save the global properties of this NL issue (title&co).
767 */
4882f4a5 768 public function save()
0337d704 769 {
84163d58
RB
770 $errors = array();
771
772 // Fill the list of fields to update
773 $fields = array(
774 'title' => $this->title,
775 'mail_title' => $this->title_mail,
776 'head' => $this->head,
777 'signature' => $this->signature,
778 );
779
780 if ($this->isEditable()) {
781 $fields['date'] = $this->date;
782 if (!preg_match('/^[-a-z0-9]+$/i', $this->shortname) || is_numeric($this->shortname)) {
783 $errors[] = self::ERROR_INVALID_SHORTNAME;
784 } else {
785 $fields['short_name'] = $this->shortname;
786 }
787 if ($this->sufb->isValid() || $this->sufb->isEmpty()) {
788 $fields['sufb_json'] = json_encode($this->sufb->export()->dict());
789 } else {
790 $errors[] = self::ERROR_INVALID_UFC;
791 }
792
793 if ($this->nl->automaticMailingEnabled()) {
794 $fields['send_before'] = ($this->send_before ? $this->send_before : null);
795 }
796 }
797
798 if (count($errors)) {
799 return $errors;
800 }
801 $field_sets = array();
802 foreach ($fields as $key => $value) {
803 $field_sets[] = XDB::format($key . ' = {?}', $value);
804 }
805 XDB::execute('UPDATE newsletter_issues
806 SET ' . implode(', ', $field_sets) . '
807 WHERE id={?}',
808 $this->id);
809 if (XDB::affectedRows()) {
810 $this->refresh();
811 } else {
812 $errors[] = self::ERROR_SQL_SAVE;
813 }
814 return $errors;
ed76a506 815 }
eaf30d86 816
84163d58
RB
817 /** Get an article by number
818 * @p $aid Article ID (among articles of the issue)
819 * @return A NLArticle object, or null if there is no article by that number
820 */
4882f4a5 821 public function getArt($aid)
0337d704 822 {
84163d58
RB
823 $this->fetchArticles();
824
825 foreach ($this->arts as $category => $artlist) {
826 if (isset($artlist[$aid])) {
827 return $artlist[$aid];
0337d704 828 }
11f44323 829 }
830 return null;
0337d704 831 }
832
84163d58
RB
833 /** Save an article
834 * @p &$a A reference to a NLArticle object (will be modified once saved)
835 */
4882f4a5 836 public function saveArticle(&$a)
0337d704 837 {
84163d58
RB
838 $this->fetchArticles();
839
840 // Prevent cid to be 0 (use NULL instead)
841 $a->cid = ($a->cid == 0) ? null : $a->cid;
842 if ($a->aid >= 0) {
843 // Article already exists in DB
00ba8a74
SJ
844 XDB::execute('UPDATE newsletter_art
845 SET cid = {?}, pos = {?}, title = {?}, body = {?}, append = {?}
846 WHERE id = {?} AND aid = {?}',
84163d58 847 $a->cid, $a->pos, $a->title, $a->body, $a->append, $this->id, $a->aid);
11f44323 848 } else {
84163d58 849 // New article
00ba8a74
SJ
850 XDB::startTransaction();
851 list($aid, $pos) = XDB::fetchOneRow('SELECT MAX(aid) AS aid, MAX(pos) AS pos
852 FROM newsletter_art AS a
853 WHERE a.id = {?}',
84163d58
RB
854 $this->id);
855 $a->aid = ++$aid;
856 $a->pos = ($a->pos ? $a->pos : ++$pos);
00ba8a74
SJ
857 XDB::execute('INSERT INTO newsletter_art (id, aid, cid, pos, title, body, append)
858 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})',
84163d58
RB
859 $this->id, $a->aid, $a->cid, $a->pos,
860 $a->title, $a->body, $a->append);
00ba8a74 861 XDB::commit();
11f44323 862 }
84163d58
RB
863 // Update local ID of article
864 $this->arts[$a->aid] = $a;
0337d704 865 }
eaf30d86 866
84163d58
RB
867 /** Delete an article by its ID
868 * @p $aid ID of the article to delete
869 */
4882f4a5 870 public function delArticle($aid)
0337d704 871 {
84163d58
RB
872 $this->fetchArticles();
873
874 XDB::execute('DELETE FROM newsletter_art WHERE id={?} AND aid={?}', $this->id, $aid);
875 foreach ($this->arts as $key=>$art) {
876 unset($this->arts[$key][$aid]);
11f44323 877 }
0337d704 878 }
879
84163d58
RB
880 // }}}
881 // {{{ Display
882
883 /** Retrieve the title of this issue
884 * @p $mail Whether we want the normal title or the email subject
885 * @return Title of the issue
886 */
887 public function title($mail = false)
4882f4a5 888 {
84163d58 889 return $mail ? $this->title_mail : $this->title;
4882f4a5 890 }
0337d704 891
84163d58
RB
892 /** Retrieve the head of this issue
893 * @p $user User for <dear> customization (may be null: no customization)
894 * @p $type Either 'text' or 'html'
895 * @return Formatted head of the issue.
896 */
897 public function head($user = null, $type = 'text')
0337d704 898 {
84163d58
RB
899 if (is_null($user)) {
900 return $this->head;
901 } else {
902 $head = $this->head;
903 $head = str_replace(array('<cher>', '<prenom>', '<nom>'),
904 array(($user->isFemale() ? 'Chère' : 'Cher'), $user->displayName(), ''),
905 $head);
906 return format_text($head, $type, 2, 64);
907 }
eaf30d86 908 }
0337d704 909
84163d58
RB
910 /** Retrieve the formatted signature of this issue.
911 */
912 public function signature($type = 'text')
0337d704 913 {
84163d58
RB
914 return format_text($this->signature, $type, 2, 64);
915 }
916
917 /** Get the title of a given category
918 * @p $cid ID of the category to retrieve
919 * @return Name of the category
920 */
921 public function category($cid)
922 {
923 return $this->nl->cats[$cid];
924 }
925
926 /** Add required data to the given $page for proper CSS display
927 * @p $page Smarty object
928 * @return Either 'true' (if CSS was added to a page) or the raw CSS to add (when $page is null)
929 */
930 public function css(&$page = null)
931 {
932 if (!is_null($page)) {
933 $page->addCssLink($this->nl->cssFile());
934 return true;
935 } else {
936 $css = file_get_contents(dirname(__FILE__) . '/../htdocs/css/' . $this->nl->cssFile());
937 return preg_replace('@/\*.*?\*/@us', '', $css);
938 }
939 }
940
941 /** Set up a smarty page for a 'text' mode render of the issue
942 * @p $page Smarty object (using the $this->nl->tplFile() template)
943 * @p $user User to use when rendering the template
944 */
945 public function toText(&$page, $user)
946 {
947 $this->fetchArticles();
948
949 $this->css($page);
950 $page->assign('prefix', null);
951 $page->assign('is_mail', false);
952 $page->assign('mail_part', 'text');
953 $page->assign('user', $user);
954 $page->assign('hash', null);
955 $this->assignData($page);
eaf30d86
PH
956 }
957
84163d58
RB
958 /** Set up a smarty page for a 'html' mode render of the issue
959 * @p $page Smarty object (using the $this->nl->tplFile() template)
960 * @p $user User to use when rendering the template
961 */
962 public function toHtml(&$page, $user)
4882f4a5 963 {
84163d58
RB
964 $this->fetchArticles();
965
966 $this->css($page);
967 $page->assign('prefix', $this->nl->prefix() . '/show/' . $this->id());
968 $page->assign('is_mail', false);
969 $page->assign('mail_part', 'html');
970 $page->assign('user', $user);
971 $page->assign('hash', null);
972 $this->assignData($page);
0337d704 973 }
974
84163d58
RB
975 /** Set all 'common' data for the page (those which are required for both web and email rendering)
976 * @p $smarty Smarty object (e.g page) which should be filled
977 */
978 protected function assignData(&$smarty)
4882f4a5 979 {
84163d58
RB
980 $this->fetchArticles();
981
982 $smarty->assign_by_ref('issue', $this);
983 $smarty->assign_by_ref('nl', $this->nl);
4882f4a5 984 }
985
84163d58
RB
986 // }}}
987 // {{{ Mailing
988
989 /** Retrieve the 'Send before' date, in a clean format.
990 */
991 public function getSendBeforeDate()
4882f4a5 992 {
84163d58 993 return strftime('%Y-%m-%d', strtotime($this->send_before));
4882f4a5 994 }
995
84163d58
RB
996 /** Retrieve the 'Send before' time (i.e hour), in a clean format.
997 */
998 public function getSendBeforeTime()
4882f4a5 999 {
84163d58 1000 return strtotime($this->send_before);
4882f4a5 1001 }
1002
84163d58
RB
1003 /** Create a hash based on some additional data
1004 * $line Line-specific data (to prevent two hashes generated at the same time to be the same)
1005 */
1006 protected static function createHash($line)
4882f4a5 1007 {
84163d58
RB
1008 $hash = implode(time(), $line) . rand();
1009 $hash = md5($hash);
1010 return $hash;
4882f4a5 1011 }
1012
84163d58
RB
1013 /** Send this issue to the given user, reusing an existing hash if provided.
1014 * @p $user User to whom the issue should be mailed
1015 * @p $hash Optional hash to use in the 'unsubscribe' link; if null, another one will be generated.
1016 */
1017 public function sendTo($user, $hash = null)
4882f4a5 1018 {
84163d58
RB
1019 $this->fetchArticles();
1020
1021 if (is_null($hash)) {
1022 $hash = XDB::fetchOneCell("SELECT hash
1023 FROM newsletter_ins
1024 WHERE uid = {?} AND nlid = {?}",
1025 $user->id(), $this->nl->id);
1026 }
1027 if (is_null($hash)) {
1028 $hash = self::createHash(array($user->displayName(), $user->fullName(),
1029 $user->isFemale(), $user->isEmailFormatHtml(),
1030 rand(), "X.org rulez"));
1031 XDB::execute("UPDATE newsletter_ins as ni
1032 SET ni.hash = {?}
1033 WHERE ni.uid = {?} AND ni.nlid = {?}",
1034 $hash, $user->id(), $this->nl->id);
1035 }
1036
1037 $mailer = new PlMailer($this->nl->tplFile());
1038 $this->assignData($mailer);
1039 $mailer->assign('is_mail', true);
1040 $mailer->assign('user', $user);
1041 $mailer->assign('prefix', null);
1042 $mailer->assign('hash', $hash);
1043 $mailer->sendTo($user);
4882f4a5 1044 }
84163d58
RB
1045
1046 /** Select a subset of subscribers which should receive the newsletter.
1047 * NL-Specific selections (not yet received, is subscribed) are done when sending.
1048 * @return A PlFilterCondition.
1049 */
1050 protected function getRecipientsUFC()
1051 {
1052 return $this->sufb->getUFC();
1053 }
1054
1055 /** Check whether a given user may see this issue.
1056 * @p $user User whose access should be checked
1057 * @return Whether he may access the issue
1058 */
1059 public function checkUser($user = null)
1060 {
1061 if ($user == null) {
1062 $user = S::user();
1063 }
1064 $uf = new UserFilter($this->getRecipientsUFC());
1065 return $uf->checkUser($user);
1066 }
1067
1068 /** Sent this issue to all valid recipients
1069 * @return Number of issues sent
1070 */
1071 public function sendToAll()
1072 {
1073 $this->fetchArticles();
1074
1075 XDB::execute('UPDATE newsletter_issues
1076 SET state = \'sent\', date=CURDATE()
1077 WHERE id = {?}',
1078 $this->id);
1079
1080 $ufc = new PFC_And($this->getRecipientsUFC(), new UFC_NLSubscribed($this->nl->id, $this->id), new UFC_HasEmailRedirect());
1081 $emailsCount = 0;
00278954
RB
1082 $uf = new UserFilter($ufc);
1083 $limit = new PlLimit(self::BATCH_SIZE);
84163d58
RB
1084
1085 while (true) {
1086 $sent = array();
00278954 1087 $users = $uf->getUsers($limit);
84163d58
RB
1088 if (count($users) == 0) {
1089 return $emailsCount;
1090 }
1091 foreach ($users as $user) {
1092 $sent[] = $user->id();
1093 $this->sendTo($user, $hash);
1094 ++$emailsCount;
1095 }
1096 XDB::execute("UPDATE newsletter_ins
1097 SET last = {?}
1098 WHERE nlid = {?} AND uid IN {?}", $this->id, $this->nl->id, $sent);
1099
1100 sleep(60);
1101 }
1102 return $emailsCount;
1103 }
1104
1105 // }}}
0337d704 1106}
1107
1108// }}}
1109// {{{ class NLArticle
1110
1111class NLArticle
1112{
84163d58
RB
1113 // Maximum number of lines per article
1114 const MAX_LINES_PER_ARTICLE = 9;
1115
0337d704 1116 // {{{ properties
eaf30d86 1117
84163d58
RB
1118 public $aid;
1119 public $cid;
1120 public $pos;
1121 public $title;
1122 public $body;
1123 public $append;
0337d704 1124
1125 // }}}
1126 // {{{ constructor
eaf30d86 1127
4882f4a5 1128 function __construct($title='', $body='', $append='', $aid=-1, $cid=0, $pos=0)
0337d704 1129 {
84163d58
RB
1130 $this->body = $body;
1131 $this->title = $title;
1132 $this->append = $append;
1133 $this->aid = $aid;
1134 $this->cid = $cid;
1135 $this->pos = $pos;
0337d704 1136 }
1137
1138 // }}}
1139 // {{{ function title()
1140
4882f4a5 1141 public function title()
84163d58 1142 { return trim($this->title); }
0337d704 1143
1144 // }}}
1145 // {{{ function body()
eaf30d86 1146
4882f4a5 1147 public function body()
84163d58 1148 { return trim($this->body); }
eaf30d86 1149
0337d704 1150 // }}}
1151 // {{{ function append()
eaf30d86 1152
4882f4a5 1153 public function append()
84163d58 1154 { return trim($this->append); }
0337d704 1155
1156 // }}}
1157 // {{{ function toText()
1158
e0e77c5a 1159 public function toText($hash = null, $login = null)
0337d704 1160 {
4882f4a5 1161 $title = '*'.$this->title().'*';
84163d58
RB
1162 $body = MiniWiki::WikiToText($this->body, true);
1163 $app = MiniWiki::WikiToText($this->append, false, 4);
e0e77c5a
FB
1164 $text = trim("$title\n\n$body\n\n$app")."\n";
1165 if (!is_null($hash) && !is_null($login)) {
1166 $text = str_replace('%HASH%', "$hash/$login", $text);
1167 } else {
1168 $text = str_replace('%HASH%', '', $text);
1169 }
1170 return $text;
0337d704 1171 }
1172
1173 // }}}
1174 // {{{ function toHtml()
1175
e0e77c5a 1176 public function toHtml($hash = null, $login = null)
0337d704 1177 {
84163d58
RB
1178 $title = "<h2 class='xorg_nl'><a id='art{$this->aid}'></a>".pl_entities($this->title()).'</h2>';
1179 $body = MiniWiki::WikiToHTML($this->body);
1180 $app = MiniWiki::WikiToHTML($this->append);
eaf30d86 1181
4882f4a5 1182 $art = "$title\n";
1183 $art .= "<div class='art'>\n$body\n";
1184 if ($app) {
0337d704 1185 $art .= "<div class='app'>$app</div>";
1186 }
4882f4a5 1187 $art .= "</div>\n";
e0e77c5a
FB
1188 if (!is_null($hash) && !is_null($login)) {
1189 $art = str_replace('%HASH%', "$hash/$login", $art);
1190 } else {
1191 $art = str_replace('%HASH%', '', $art);
1192 }
eaf30d86 1193
4882f4a5 1194 return $art;
0337d704 1195 }
1196
1197 // }}}
1198 // {{{ function check()
1199
4882f4a5 1200 public function check()
0337d704 1201 {
84163d58 1202 $text = MiniWiki::WikiToText($this->body);
4882f4a5 1203 $arr = explode("\n",wordwrap($text,68));
1204 $c = 0;
1205 foreach ($arr as $line) {
0337d704 1206 if (trim($line)) {
1207 $c++;
1208 }
1209 }
84163d58 1210 return $c < self::MAX_LINES_PER_ARTICLE;
0337d704 1211 }
1212
1213 // }}}
9e2a6a32
SJ
1214 // {{{ function parseUrlsFromArticle()
1215
84163d58 1216 protected function parseUrlsFromArticle()
9e2a6a32
SJ
1217 {
1218 $email_regex = '([a-z0-9.\-+_\$]+@([\-.+_]?[a-z0-9])+)';
1219 $url_regex = '((https?|ftp)://[a-zA-Z0-9._%#+/?=&~-]+)';
1220 $regex = '{' . $email_regex . '|' . $url_regex . '}i';
1221
1222 $matches = array();
1223 $body_matches = array();
1224 if (preg_match_all($regex, $this->body(), $body_matches)) {
1225 $matches = array_merge($matches, $body_matches[0]);
1226 }
1227
1228 $append_matches = array();
1229 if (preg_match_all($regex, $this->append(), $append_matches)) {
1230 $matches = array_merge($matches, $append_matches[0]);
1231 }
1232
1233 return $matches;
1234 }
1235
1236 // }}}
1237 // {{{ function getLinkIps()
1238
955109ba 1239 public function getLinkIps(&$blacklist_host_resolution_count)
9e2a6a32
SJ
1240 {
1241 $matches = $this->parseUrlsFromArticle();
1242 $article_ips = array();
1243
1244 if (!empty($matches)) {
1245 global $globals;
1246
1247 foreach ($matches as $match) {
1248 $host = parse_url($match, PHP_URL_HOST);
1249 if ($host == '') {
1250 list(, $host) = explode('@', $match);
1251 }
1252
955109ba 1253 if ($blacklist_host_resolution_count >= $globals->mail->blacklist_host_resolution_limit) {
9e2a6a32
SJ
1254 break;
1255 }
1256
955109ba 1257 if (!preg_match('/^(' . str_replace(' ', '|', $globals->mail->domain_whitelist) . ')$/i', $host)) {
9e2a6a32 1258 $article_ips = array_merge($article_ips, array(gethostbyname($host) => $host));
955109ba 1259 ++$blacklist_host_resolution_count;
9e2a6a32
SJ
1260 }
1261 }
1262 }
1263
1264 return $article_ips;
1265 }
1266
1267 // }}}
0337d704 1268}
1269
1270// }}}
0337d704 1271
84163d58
RB
1272// {{{ Functions
1273
1274function format_text($input, $format, $indent = 0, $width = 68)
1275{
1276 if ($format == 'text') {
1277 return MiniWiki::WikiToText($input, true, $indent, $width, "title");
1278 }
1279 return MiniWiki::WikiToHTML($input, "title");
1280}
1281
1282// function enriched_to_text($input,$html=false,$just=false,$indent=0,$width=68)
1283
1284// }}}
1285
a7de4ef7 1286// vim:set et sw=4 sts=4 sws=4 enc=utf-8:
0337d704 1287?>