| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  | /** | 
					
						
							|  |  |  |  * A channel for real-time browser data | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |  * For each user currently browsing the site, we want to know which page they're on | 
					
						
							|  |  |  |  * so we can send real-time updates to their browser. | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category  Realtime | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |  * @package   GNUsocial | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |  * @copyright 2011-2019 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * A channel for real-time browser data | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |  * @see       DB_DataObject | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | class Realtime_channel extends Managed_DataObject | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |     const TIMEOUT = 1800; // 30 minutes
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     public $__table = 'realtime_channel'; // table name
 | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     public $user_id;       // int -> user.id, can be null
 | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |     public $action;        // varchar(191)                  not 255 because utf8mb4 takes more space
 | 
					
						
							|  |  |  |     public $arg1;          // varchar(191)   argument       not 255 because utf8mb4 takes more space
 | 
					
						
							|  |  |  |     public $arg2;          // varchar(191)   usually null   not 255 because utf8mb4 takes more space
 | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     public $channel_key;   // 128-bit shared secret key
 | 
					
						
							| 
									
										
										
										
											2011-07-13 16:10:08 -04:00
										 |  |  |     public $audience;      // listener count
 | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |     public $created;       // created date
 | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     public $modified;      // modified date
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The One True Thingy that must be defined and declared. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function schemaDef() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |         return [ | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |             'description' => 'A channel of realtime notice data', | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |             'fields' => [ | 
					
						
							|  |  |  |                 'user_id' => ['type' => 'int', | 
					
						
							|  |  |  |                     'not null' => false, | 
					
						
							|  |  |  |                     'description' => 'user viewing page; can be null'], | 
					
						
							|  |  |  |                 'action' => ['type' => 'varchar', | 
					
						
							|  |  |  |                     'length' => 191, | 
					
						
							|  |  |  |                     'not null' => true, | 
					
						
							|  |  |  |                     'description' => 'page being viewed'], | 
					
						
							|  |  |  |                 'arg1' => ['type' => 'varchar', | 
					
						
							|  |  |  |                     'length' => 191, | 
					
						
							|  |  |  |                     'not null' => false, | 
					
						
							|  |  |  |                     'description' => 'page argument, like username or tag'], | 
					
						
							|  |  |  |                 'arg2' => ['type' => 'varchar', | 
					
						
							|  |  |  |                     'length' => 191, | 
					
						
							|  |  |  |                     'not null' => false, | 
					
						
							|  |  |  |                     'description' => 'second page argument, like tag for showstream'], | 
					
						
							|  |  |  |                 'channel_key' => ['type' => 'varchar', | 
					
						
							|  |  |  |                     'length' => 32, | 
					
						
							|  |  |  |                     'not null' => true, | 
					
						
							|  |  |  |                     'description' => 'shared secret key for this channel'], | 
					
						
							|  |  |  |                 'audience' => ['type' => 'int', | 
					
						
							|  |  |  |                     'not null' => true, | 
					
						
							|  |  |  |                     'default' => 0, | 
					
						
							|  |  |  |                     'description' => 'reference count'], | 
					
						
							|  |  |  |                 'created' => ['type' => 'datetime', | 
					
						
							|  |  |  |                     'not null' => true, | 
					
						
							|  |  |  |                     'description' => 'date this record was created'], | 
					
						
							|  |  |  |                 'modified' => ['type' => 'datetime', | 
					
						
							|  |  |  |                     'not null' => true, | 
					
						
							|  |  |  |                     'description' => 'date this record was modified'], | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |             'primary key' => ['channel_key'], | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |             'unique keys' => [ | 
					
						
							|  |  |  |                 'realtime_channel_user_id_action_arg1_arg2_key' => ['user_id', 'action', 'arg1', 'arg2'], | 
					
						
							|  |  |  |             ], | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |             'foreign keys' => [ | 
					
						
							|  |  |  |                 'realtime_channel_user_id_fkey' => ['user', ['user_id' => 'id']], | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |             'indexes' => [ | 
					
						
							|  |  |  |                 'realtime_channel_modified_idx' => ['modified'], | 
					
						
							|  |  |  |                 'realtime_channel_page_idx' => ['action', 'arg1', 'arg2'] | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public static function saveNew(int $user_id, Action $action, $arg1, $arg2): Realtime_channel | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |         $channel = new Realtime_channel(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $channel->user_id = $user_id; | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |         $channel->action = $action; | 
					
						
							|  |  |  |         $channel->arg1 = $arg1; | 
					
						
							|  |  |  |         $channel->arg2 = $arg2; | 
					
						
							|  |  |  |         $channel->audience = 1; | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-21 13:20:30 +02:00
										 |  |  |         $channel->channel_key = common_random_hexstr(16); // 128-bit key, 32 hex chars
 | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |         $channel->created = common_sql_now(); | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |         $channel->modified = $channel->created; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $channel->insert(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $channel; | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public static function getChannel(int $user_id, Action $action, $arg1, $arg2): Realtime_channel | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |         $channel = self::fetchChannel($user_id, $action, $arg1, $arg2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Ignore (and delete!) old channels
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($channel)) { | 
					
						
							|  |  |  |             $modTime = strtotime($channel->modified); | 
					
						
							|  |  |  |             if ((time() - $modTime) > self::TIMEOUT) { | 
					
						
							|  |  |  |                 $channel->delete(); | 
					
						
							|  |  |  |                 $channel = null; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($channel)) { | 
					
						
							|  |  |  |             $channel = self::saveNew($user_id, $action, $arg1, $arg2); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $channel; | 
					
						
							| 
									
										
										
										
											2011-07-08 17:52:07 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public static function getAllChannels(Action $action, $arg1, $arg2): array | 
					
						
							| 
									
										
										
										
											2011-07-11 09:16:16 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |         $channel = new Realtime_channel(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $channel->action = $action; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($arg1)) { | 
					
						
							|  |  |  |             $channel->whereAdd('arg1 is null'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $channel->arg1 = $arg1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($arg2)) { | 
					
						
							|  |  |  |             $channel->whereAdd('arg2 is null'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $channel->arg2 = $arg2; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |         $channel->whereAdd(sprintf("modified > TIMESTAMP '%s'", common_sql_date(time() - self::TIMEOUT))); | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |         $channels = []; | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($channel->find()) { | 
					
						
							|  |  |  |             $channels = $channel->fetchAll(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $channels; | 
					
						
							| 
									
										
										
										
											2011-07-11 09:16:16 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public static function fetchChannel(int $user_id, Action $action, $arg1, $arg2): ?Realtime_channel | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         $channel = new Realtime_channel(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($user_id)) { | 
					
						
							|  |  |  |             $channel->whereAdd('user_id is null'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $channel->user_id = $user_id; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $channel->action = $action; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($arg1)) { | 
					
						
							|  |  |  |             $channel->whereAdd('arg1 is null'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $channel->arg1 = $arg1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($arg2)) { | 
					
						
							|  |  |  |             $channel->whereAdd('arg2 is null'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $channel->arg2 = $arg2; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($channel->find(true)) { | 
					
						
							| 
									
										
										
										
											2011-07-13 16:10:08 -04:00
										 |  |  |             $channel->increment(); | 
					
						
							| 
									
										
										
										
											2011-08-19 17:06:03 +02:00
										 |  |  |             return $channel; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-07-11 15:52:05 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-07-13 13:55:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public function increment(): void | 
					
						
							| 
									
										
										
										
											2011-07-13 16:10:08 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         // XXX: race
 | 
					
						
							|  |  |  |         $orig = clone($this); | 
					
						
							|  |  |  |         $this->audience++; | 
					
						
							|  |  |  |         $this->modified = common_sql_now(); | 
					
						
							|  |  |  |         $this->update($orig); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public function touch(): void | 
					
						
							| 
									
										
										
										
											2011-07-13 13:55:03 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-07-13 16:10:08 -04:00
										 |  |  |         // XXX: race
 | 
					
						
							| 
									
										
										
										
											2011-07-13 13:55:03 -04:00
										 |  |  |         $orig = clone($this); | 
					
						
							|  |  |  |         $this->modified = common_sql_now(); | 
					
						
							|  |  |  |         $this->update($orig); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-07-13 16:10:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:37:49 +00:00
										 |  |  |     public function decrement(): void | 
					
						
							| 
									
										
										
										
											2011-07-13 16:10:08 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         // XXX: race
 | 
					
						
							|  |  |  |         if ($this->audience == 1) { | 
					
						
							|  |  |  |             $this->delete(); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $orig = clone($this); | 
					
						
							|  |  |  |             $this->audience--; | 
					
						
							|  |  |  |             $this->modified = common_sql_now(); | 
					
						
							|  |  |  |             $this->update($orig); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |