]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
2cdf80f1c0b7cacf90336a4430e93048648097bf
[quix0rs-gnu-social.git] / classes / Notice.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 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 Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 /**
23  * Table Definition for notice
24  */
25 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
26
27 /* We keep the first three 20-notice pages, plus one for pagination check,
28  * in the memcached cache. */
29
30 define('NOTICE_CACHE_WINDOW', 61);
31
32 class Notice extends Memcached_DataObject
33 {
34     ###START_AUTOCODE
35     /* the code below is auto generated do not remove the above tag */
36
37     public $__table = 'notice';                             // table name
38     public $id;                                 // int(4)    primary_key not_null
39     public $profile_id;                         // int(4)     not_null
40     public $uri;                             // varchar(255)  unique_key
41     public $content;                         // varchar(140)
42     public $rendered;                         // text()
43     public $url;                             // varchar(255)
44     public $created;                         // datetime()     not_null
45     public $modified;                         // timestamp()      not_null default_CURRENT_TIMESTAMP
46     public $reply_to;                         // int(4)
47     public $is_local;                         // tinyint(1)
48     public $source;                             // varchar(32)
49
50     /* Static get */
51     function staticGet($k,$v=null)
52     { return Memcached_DataObject::staticGet('Notice',$k,$v); }
53
54     /* the code above is auto generated do not remove the tag below */
55     ###END_AUTOCODE
56
57     function getProfile()
58     {
59         return Profile::staticGet('id', $this->profile_id);
60     }
61
62     function delete()
63     {
64         $this->blowCaches(true);
65         $this->blowFavesCache(true);
66         $this->blowSubsCache(true);
67
68         $this->query('BEGIN');
69         $related = array('Reply',
70                          'Fave',
71                          'Notice_tag',
72                          'Group_inbox',
73                          'Queue_item');
74         if (common_config('inboxes', 'enabled')) {
75             $related[] = 'Notice_inbox';
76         }
77         foreach ($related as $cls) {
78             $inst = new $cls();
79             $inst->notice_id = $this->id;
80             $inst->delete();
81         }
82         $result = parent::delete();
83         $this->query('COMMIT');
84     }
85
86     function saveTags()
87     {
88         /* extract all #hastags */
89         $count = preg_match_all('/(?:^|\s)#([A-Za-z0-9_\-\.]{1,64})/', strtolower($this->content), $match);
90         if (!$count) {
91             return true;
92         }
93
94         /* Add them to the database */
95         foreach(array_unique($match[1]) as $hashtag) {
96             /* elide characters we don't want in the tag */
97             $hashtag = common_canonical_tag($hashtag);
98
99             $tag = DB_DataObject::factory('Notice_tag');
100             $tag->notice_id = $this->id;
101             $tag->tag = $hashtag;
102             $tag->created = $this->created;
103             $id = $tag->insert();
104             if (!$id) {
105                 $last_error = PEAR::getStaticProperty('DB_DataObject','lastError');
106                 common_log(LOG_ERR, 'DB error inserting hashtag: ' . $last_error->message);
107                 common_server_error(sprintf(_('DB error inserting hashtag: %s'), $last_error->message));
108                 return;
109             }
110         }
111         return true;
112     }
113
114     static function saveNew($profile_id, $content, $source=null, $is_local=1, $reply_to=null, $uri=null) {
115
116         $profile = Profile::staticGet($profile_id);
117
118         if (!$profile) {
119             common_log(LOG_ERR, 'Problem saving notice. Unknown user.');
120             return _('Problem saving notice. Unknown user.');
121         }
122
123         if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
124             common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
125             return _('Too many notices too fast; take a breather and post again in a few minutes.');
126         }
127
128         $banned = common_config('profile', 'banned');
129
130         if ( in_array($profile_id, $banned) || in_array($profile->nickname, $banned)) {
131             common_log(LOG_WARNING, "Attempted post from banned user: $profile->nickname (user id = $profile_id).");
132             return _('You are banned from posting notices on this site.');
133         }
134
135         $notice = new Notice();
136         $notice->profile_id = $profile_id;
137
138         $blacklist = common_config('public', 'blacklist');
139
140         # Blacklisted are non-false, but not 1, either
141
142         if ($blacklist && in_array($profile_id, $blacklist)) {
143             $notice->is_local = -1;
144         } else {
145             $notice->is_local = $is_local;
146         }
147
148                 $notice->query('BEGIN');
149
150         $notice->reply_to = $reply_to;
151         $notice->created = common_sql_now();
152         $notice->content = common_shorten_links($content);
153         $notice->rendered = common_render_content($notice->content, $notice);
154         $notice->source = $source;
155         $notice->uri = $uri;
156
157         $id = $notice->insert();
158
159         if (!$id) {
160             common_log_db_error($notice, 'INSERT', __FILE__);
161             return _('Problem saving notice.');
162         }
163
164         # Update the URI after the notice is in the database
165         if (!$uri) {
166             $orig = clone($notice);
167             $notice->uri = common_notice_uri($notice);
168
169             if (!$notice->update($orig)) {
170                 common_log_db_error($notice, 'UPDATE', __FILE__);
171                 return _('Problem saving notice.');
172             }
173         }
174
175         # XXX: do we need to change this for remote users?
176
177         $notice->saveReplies();
178         $notice->saveTags();
179         $notice->saveGroups();
180
181         $notice->addToInboxes();
182                 $notice->query('COMMIT');
183
184         # Clear the cache for subscribed users, so they'll update at next request
185         # XXX: someone clever could prepend instead of clearing the cache
186
187         if (common_config('memcached', 'enabled')) {
188             $notice->blowCaches();
189         }
190
191         return $notice;
192     }
193
194     static function checkEditThrottle($profile_id) {
195         $profile = Profile::staticGet($profile_id);
196         if (!$profile) {
197             return false;
198         }
199         # Get the Nth notice
200         $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
201         if ($notice && $notice->fetch()) {
202             # If the Nth notice was posted less than timespan seconds ago
203             if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
204                 # Then we throttle
205                 return false;
206             }
207         }
208         # Either not N notices in the stream, OR the Nth was not posted within timespan seconds
209         return true;
210     }
211
212     function blowCaches($blowLast=false)
213     {
214         $this->blowSubsCache($blowLast);
215         $this->blowNoticeCache($blowLast);
216         $this->blowRepliesCache($blowLast);
217         $this->blowPublicCache($blowLast);
218         $this->blowTagCache($blowLast);
219         $this->blowGroupCache($blowLast);
220     }
221
222     function blowGroupCache($blowLast=false)
223     {
224         $cache = common_memcache();
225         if ($cache) {
226             $group_inbox = new Group_inbox();
227             $group_inbox->notice_id = $this->id;
228             if ($group_inbox->find()) {
229                 while ($group_inbox->fetch()) {
230                     $cache->delete(common_cache_key('group:notices:'.$group_inbox->group_id));
231                     if ($blowLast) {
232                         $cache->delete(common_cache_key('group:notices:'.$group_inbox->group_id.';last'));
233                     }
234                     $member = new Group_member();
235                     $member->group_id = $group_inbox->group_id;
236                     if ($member->find()) {
237                         while ($member->fetch()) {
238                             $cache->delete(common_cache_key('user:notices_with_friends:' . $member->profile_id));
239                             if ($blowLast) {
240                                 $cache->delete(common_cache_key('user:notices_with_friends:' . $member->profile_id . ';last'));
241                             }
242                         }
243                     }
244                 }
245             }
246             $group_inbox->free();
247             unset($group_inbox);
248         }
249     }
250
251     function blowTagCache($blowLast=false)
252     {
253         $cache = common_memcache();
254         if ($cache) {
255             $tag = new Notice_tag();
256             $tag->notice_id = $this->id;
257             if ($tag->find()) {
258                 while ($tag->fetch()) {
259                     $cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag));
260                     if ($blowLast) {
261                         $cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag . ';last'));
262                     }
263                 }
264             }
265             $tag->free();
266             unset($tag);
267         }
268     }
269
270     function blowSubsCache($blowLast=false)
271     {
272         $cache = common_memcache();
273         if ($cache) {
274             $user = new User();
275
276             $user->query('SELECT id ' .
277                          'FROM user JOIN subscription ON user.id = subscription.subscriber ' .
278                          'WHERE subscription.subscribed = ' . $this->profile_id);
279
280             while ($user->fetch()) {
281                 $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
282                 if ($blowLast) {
283                     $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id . ';last'));
284                 }
285             }
286             $user->free();
287             unset($user);
288         }
289     }
290
291     function blowNoticeCache($blowLast=false)
292     {
293         if ($this->is_local) {
294             $cache = common_memcache();
295             if ($cache) {
296                 $cache->delete(common_cache_key('profile:notices:'.$this->profile_id));
297                 if ($blowLast) {
298                     $cache->delete(common_cache_key('profile:notices:'.$this->profile_id.';last'));
299                 }
300             }
301         }
302     }
303
304     function blowRepliesCache($blowLast=false)
305     {
306         $cache = common_memcache();
307         if ($cache) {
308             $reply = new Reply();
309             $reply->notice_id = $this->id;
310             if ($reply->find()) {
311                 while ($reply->fetch()) {
312                     $cache->delete(common_cache_key('user:replies:'.$reply->profile_id));
313                     if ($blowLast) {
314                         $cache->delete(common_cache_key('user:replies:'.$reply->profile_id.';last'));
315                     }
316                 }
317             }
318             $reply->free();
319             unset($reply);
320         }
321     }
322
323     function blowPublicCache($blowLast=false)
324     {
325         if ($this->is_local == 1) {
326             $cache = common_memcache();
327             if ($cache) {
328                 $cache->delete(common_cache_key('public'));
329                 if ($blowLast) {
330                     $cache->delete(common_cache_key('public').';last');
331                 }
332             }
333         }
334     }
335
336     function blowFavesCache($blowLast=false)
337     {
338         $cache = common_memcache();
339         if ($cache) {
340             $fave = new Fave();
341             $fave->notice_id = $this->id;
342             if ($fave->find()) {
343                 while ($fave->fetch()) {
344                     $cache->delete(common_cache_key('user:faves:'.$fave->user_id));
345                     if ($blowLast) {
346                         $cache->delete(common_cache_key('user:faves:'.$fave->user_id.';last'));
347                     }
348                 }
349             }
350             $fave->free();
351             unset($fave);
352         }
353     }
354
355     # XXX: too many args; we need to move to named params or even a separate
356     # class for notice streams
357
358     static function getStream($qry, $cachekey, $offset=0, $limit=20, $since_id=0, $before_id=0, $order=null, $since=null) {
359
360         if (common_config('memcached', 'enabled')) {
361
362             # Skip the cache if this is a since, since_id or before_id qry
363             if ($since_id > 0 || $before_id > 0 || $since) {
364                 return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since);
365             } else {
366                 return Notice::getCachedStream($qry, $cachekey, $offset, $limit, $order);
367             }
368         }
369
370         return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since);
371     }
372
373     static function getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since) {
374
375         $needAnd = false;
376         $needWhere = true;
377
378         if (preg_match('/\bWHERE\b/i', $qry)) {
379             $needWhere = false;
380             $needAnd = true;
381         }
382
383         if ($since_id > 0) {
384
385             if ($needWhere) {
386                 $qry .= ' WHERE ';
387                 $needWhere = false;
388             } else {
389                 $qry .= ' AND ';
390             }
391
392             $qry .= ' notice.id > ' . $since_id;
393         }
394
395         if ($before_id > 0) {
396
397             if ($needWhere) {
398                 $qry .= ' WHERE ';
399                 $needWhere = false;
400             } else {
401                 $qry .= ' AND ';
402             }
403
404             $qry .= ' notice.id < ' . $before_id;
405         }
406
407         if ($since) {
408
409             if ($needWhere) {
410                 $qry .= ' WHERE ';
411                 $needWhere = false;
412             } else {
413                 $qry .= ' AND ';
414             }
415
416             $qry .= ' notice.created > \'' . date('Y-m-d H:i:s', $since) . '\'';
417         }
418
419         # Allow ORDER override
420
421         if ($order) {
422             $qry .= $order;
423         } else {
424             $qry .= ' ORDER BY notice.created DESC, notice.id DESC ';
425         }
426
427         if (common_config('db','type') == 'pgsql') {
428             $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
429         } else {
430             $qry .= ' LIMIT ' . $offset . ', ' . $limit;
431         }
432
433         $notice = new Notice();
434
435         $notice->query($qry);
436
437         return $notice;
438     }
439
440     # XXX: this is pretty long and should probably be broken up into
441     # some helper functions
442
443     static function getCachedStream($qry, $cachekey, $offset, $limit, $order) {
444
445         # If outside our cache window, just go to the DB
446
447         if ($offset + $limit > NOTICE_CACHE_WINDOW) {
448             return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null);
449         }
450
451         # Get the cache; if we can't, just go to the DB
452
453         $cache = common_memcache();
454
455         if (!$cache) {
456             return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null);
457         }
458
459         # Get the notices out of the cache
460
461         $notices = $cache->get(common_cache_key($cachekey));
462
463         # On a cache hit, return a DB-object-like wrapper
464
465         if ($notices !== false) {
466             $wrapper = new ArrayWrapper(array_slice($notices, $offset, $limit));
467             return $wrapper;
468         }
469
470         # If the cache was invalidated because of new data being
471         # added, we can try and just get the new stuff. We keep an additional
472         # copy of the data at the key + ';last'
473
474         # No cache hit. Try to get the *last* cached version
475
476         $last_notices = $cache->get(common_cache_key($cachekey) . ';last');
477
478         if ($last_notices) {
479
480             # Reverse-chron order, so last ID is last.
481
482             $last_id = $last_notices[0]->id;
483
484             # XXX: this assumes monotonically increasing IDs; a fair
485             # bet with our DB.
486
487             $new_notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW,
488                                                   $last_id, null, $order, null);
489
490             if ($new_notice) {
491                 $new_notices = array();
492                 while ($new_notice->fetch()) {
493                     $new_notices[] = clone($new_notice);
494                 }
495                 $new_notice->free();
496                 $notices = array_slice(array_merge($new_notices, $last_notices),
497                                        0, NOTICE_CACHE_WINDOW);
498
499                 # Store the array in the cache for next time
500
501                 $result = $cache->set(common_cache_key($cachekey), $notices);
502                 $result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
503
504                 # return a wrapper of the array for use now
505
506                 return new ArrayWrapper(array_slice($notices, $offset, $limit));
507             }
508         }
509
510         # Otherwise, get the full cache window out of the DB
511
512         $notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW, null, null, $order, null);
513
514         # If there are no hits, just return the value
515
516         if (!$notice) {
517             return $notice;
518         }
519
520         # Pack results into an array
521
522         $notices = array();
523
524         while ($notice->fetch()) {
525             $notices[] = clone($notice);
526         }
527
528         $notice->free();
529
530         # Store the array in the cache for next time
531
532         $result = $cache->set(common_cache_key($cachekey), $notices);
533         $result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
534
535         # return a wrapper of the array for use now
536
537         $wrapper = new ArrayWrapper(array_slice($notices, $offset, $limit));
538
539         return $wrapper;
540     }
541
542     function publicStream($offset=0, $limit=20, $since_id=0, $before_id=0, $since=null)
543     {
544
545         $parts = array();
546
547         $qry = 'SELECT * FROM notice ';
548
549         if (common_config('public', 'localonly')) {
550             $parts[] = 'is_local = 1';
551         } else {
552             # -1 == blacklisted
553             $parts[] = 'is_local != -1';
554         }
555
556         if ($parts) {
557             $qry .= ' WHERE ' . implode(' AND ', $parts);
558         }
559
560         return Notice::getStream($qry,
561                                  'public',
562                                  $offset, $limit, $since_id, $before_id, null, $since);
563     }
564
565     function addToInboxes()
566     {
567         $enabled = common_config('inboxes', 'enabled');
568
569         if ($enabled === true || $enabled === 'transitional') {
570             $inbox = new Notice_inbox();
571             $qry = 'INSERT INTO notice_inbox (user_id, notice_id, created) ' .
572               'SELECT user.id, ' . $this->id . ', "' . $this->created . '" ' .
573               'FROM user JOIN subscription ON user.id = subscription.subscriber ' .
574               'WHERE subscription.subscribed = ' . $this->profile_id . ' ' .
575               'AND NOT EXISTS (SELECT user_id, notice_id ' .
576               'FROM notice_inbox ' .
577               'WHERE user_id = user.id ' .
578               'AND notice_id = ' . $this->id . ' )';
579             if ($enabled === 'transitional') {
580                 $qry .= ' AND user.inboxed = 1';
581             }
582             $inbox->query($qry);
583         }
584         return;
585     }
586
587     function saveGroups()
588     {
589         $enabled = common_config('inboxes', 'enabled');
590         if ($enabled !== true && $enabled !== 'transitional') {
591             return;
592         }
593
594         /* extract all !group */
595         $count = preg_match_all('/(?:^|\s)!([A-Za-z0-9]{1,64})/',
596                                 strtolower($this->content),
597                                 $match);
598         if (!$count) {
599             return true;
600         }
601
602         $profile = $this->getProfile();
603
604         /* Add them to the database */
605
606         foreach (array_unique($match[1]) as $nickname) {
607             /* XXX: remote groups. */
608             $group = User_group::staticGet('nickname', $nickname);
609
610             if (!$group) {
611                 continue;
612             }
613
614             if ($profile->isMember($group)) {
615
616                 $gi = new Group_inbox();
617
618                 $gi->group_id  = $group->id;
619                 $gi->notice_id = $this->id;
620                 $gi->created   = common_sql_now();
621
622                 $result = $gi->insert();
623
624                 if (!$result) {
625                     common_log_db_error($gi, 'INSERT', __FILE__);
626                 }
627
628                 // FIXME: do this in an offline daemon
629
630                 $inbox = new Notice_inbox();
631                 $qry = 'INSERT INTO notice_inbox (user_id, notice_id, created, source) ' .
632                   'SELECT user.id, ' . $this->id . ', "' . $this->created . '", 2 ' .
633                   'FROM user JOIN group_member ON user.id = group_member.profile_id ' .
634                   'WHERE group_member.group_id = ' . $group->id . ' ' .
635                   'AND NOT EXISTS (SELECT user_id, notice_id ' .
636                   'FROM notice_inbox ' .
637                   'WHERE user_id = user.id ' .
638                   'AND notice_id = ' . $this->id . ' )';
639                 if ($enabled === 'transitional') {
640                     $qry .= ' AND user.inboxed = 1';
641                 }
642                 $result = $inbox->query($qry);
643             }
644         }
645     }
646
647     function saveReplies()
648     {
649         // Alternative reply format
650         $tname = false;
651         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $this->content, $match)) {
652             $tname = $match[1];
653         }
654         // extract all @messages
655         $cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $this->content, $match);
656
657         $names = array();
658
659         if ($cnt || $tname) {
660             // XXX: is there another way to make an array copy?
661             $names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
662         }
663
664         $sender = Profile::staticGet($this->profile_id);
665
666         $replied = array();
667
668         // store replied only for first @ (what user/notice what the reply directed,
669         // we assume first @ is it)
670
671         for ($i=0; $i<count($names); $i++) {
672             $nickname = $names[$i];
673             $recipient = common_relative_profile($sender, $nickname, $this->created);
674             if (!$recipient) {
675                 continue;
676             }
677             if ($i == 0 && ($recipient->id != $sender->id) && !$this->reply_to) { // Don't save reply to self
678                 $reply_for = $recipient;
679                 $recipient_notice = $reply_for->getCurrentNotice();
680                 if ($recipient_notice) {
681                     $orig = clone($this);
682                     $this->reply_to = $recipient_notice->id;
683                     $this->update($orig);
684                 }
685             }
686             // Don't save replies from blocked profile to local user
687             $recipient_user = User::staticGet('id', $recipient->id);
688             if ($recipient_user && $recipient_user->hasBlocked($sender)) {
689                 continue;
690             }
691             $reply = new Reply();
692             $reply->notice_id = $this->id;
693             $reply->profile_id = $recipient->id;
694             $id = $reply->insert();
695             if (!$id) {
696                 $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
697                 common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
698                 common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
699                 return;
700             } else {
701                 $replied[$recipient->id] = 1;
702             }
703         }
704
705         // Hash format replies, too
706         $cnt = preg_match_all('/(?:^|\s)@#([a-z0-9]{1,64})/', $this->content, $match);
707         if ($cnt) {
708             foreach ($match[1] as $tag) {
709                 $tagged = Profile_tag::getTagged($sender->id, $tag);
710                 foreach ($tagged as $t) {
711                     if (!$replied[$t->id]) {
712                         // Don't save replies from blocked profile to local user
713                         $t_user = User::staticGet('id', $t->id);
714                         if ($t_user && $t_user->hasBlocked($sender)) {
715                             continue;
716                         }
717                         $reply = new Reply();
718                         $reply->notice_id = $this->id;
719                         $reply->profile_id = $t->id;
720                         $id = $reply->insert();
721                         if (!$id) {
722                             common_log_db_error($reply, 'INSERT', __FILE__);
723                             return;
724                         }
725                     }
726                 }
727             }
728         }
729     }
730 }