]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Realtime/Realtime_channel.php
pkeyGet is now static and more similar to getKV
[quix0rs-gnu-social.git] / plugins / Realtime / Realtime_channel.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * A channel for real-time browser data
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Realtime
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * A channel for real-time browser data
37  *
38  * For each user currently browsing the site, we want to know which page they're on
39  * so we can send real-time updates to their browser.
40  *
41  * @category Realtime
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@status.net>
44  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
45  * @link     http://status.net/
46  *
47  * @see      DB_DataObject
48  */
49 class Realtime_channel extends Managed_DataObject
50 {
51     const TIMEOUT = 1800; // 30 minutes
52
53     public $__table = 'realtime_channel'; // table name
54
55     public $user_id;       // int -> user.id, can be null
56     public $action;        // string
57     public $arg1;          // argument
58     public $arg2;          // argument, usually null
59     public $channel_key;   // 128-bit shared secret key
60     public $audience;      // listener count
61     public $created;       // created date
62     public $modified;      // modified date
63
64     /**
65      * The One True Thingy that must be defined and declared.
66      */
67     public static function schemaDef()
68     {
69         return array(
70             'description' => 'A channel of realtime notice data',
71             'fields' => array(
72                 'user_id' => array('type' => 'int',
73                                    'not null' => false,
74                                    'description' => 'user viewing page; can be null'),
75                 'action' => array('type' => 'varchar',
76                                   'length' => 255,
77                                   'not null' => true,
78                                   'description' => 'page being viewed'),
79                 'arg1' => array('type' => 'varchar',
80                                 'length' => 255,
81                                 'not null' => false,
82                                 'description' => 'page argument, like username or tag'),
83                 'arg2' => array('type' => 'varchar',
84                                 'length' => 255,
85                                 'not null' => false,
86                                 'description' => 'second page argument, like tag for showstream'),
87                 'channel_key' => array('type' => 'varchar',
88                                'length' => 32,
89                                'not null' => true,
90                                'description' => 'shared secret key for this channel'),
91                 'audience' => array('type' => 'integer',
92                                     'not null' => true,
93                                     'default' => 0,
94                                     'description' => 'reference count'),
95                 'created' => array('type' => 'datetime',
96                                    'not null' => true,
97                                    'description' => 'date this record was created'),
98                 'modified' => array('type' => 'datetime',
99                                     'not null' => true,
100                                     'description' => 'date this record was modified'),
101             ),
102             'primary key' => array('channel_key'),
103             'unique keys' => array('realtime_channel_user_page_idx' => array('user_id', 'action', 'arg1', 'arg2')),
104             'foreign keys' => array(
105                 'realtime_channel_user_id_fkey' => array('user', array('user_id' => 'id')),
106             ),
107             'indexes' => array(
108                 'realtime_channel_modified_idx' => array('modified'),
109                 'realtime_channel_page_idx' => array('action', 'arg1', 'arg2')
110             ),
111         );
112     }
113
114     static function saveNew($user_id, $action, $arg1, $arg2)
115     {
116         $channel = new Realtime_channel();
117
118         $channel->user_id = $user_id;
119         $channel->action  = $action;
120         $channel->arg1    = $arg1;
121         $channel->arg2    = $arg2;
122         $channel->audience  = 1;
123
124         $channel->channel_key = common_good_rand(16); // 128-bit key, 32 hex chars
125
126         $channel->created  = common_sql_now();
127         $channel->modified = $channel->created;
128
129         $channel->insert();
130
131         return $channel;
132     }
133
134     static function getChannel($user_id, $action, $arg1, $arg2)
135     {
136         $channel = self::fetchChannel($user_id, $action, $arg1, $arg2);
137
138         // Ignore (and delete!) old channels
139
140         if (!empty($channel)) {
141             $modTime = strtotime($channel->modified);
142             if ((time() - $modTime) > self::TIMEOUT) {
143                 $channel->delete();
144                 $channel = null;
145             }
146         }
147
148         if (empty($channel)) {
149             $channel = self::saveNew($user_id, $action, $arg1, $arg2);
150         }
151
152         return $channel;
153     }
154
155     static function getAllChannels($action, $arg1, $arg2)
156     {
157         $channel = new Realtime_channel();
158
159         $channel->action = $action;
160
161         if (is_null($arg1)) {
162             $channel->whereAdd('arg1 is null');
163         } else {
164             $channel->arg1 = $arg1;
165         }
166
167         if (is_null($arg2)) {
168             $channel->whereAdd('arg2 is null');
169         } else {
170             $channel->arg2 = $arg2;
171         }
172
173         $channel->whereAdd('modified > "' . common_sql_date(time() - self::TIMEOUT) . '"');
174
175         $channels = array();
176
177         if ($channel->find()) {
178             $channels = $channel->fetchAll();
179         }
180
181         return $channels;
182     }
183
184     static function fetchChannel($user_id, $action, $arg1, $arg2)
185     {
186         $channel = new Realtime_channel();
187
188         if (is_null($user_id)) {
189             $channel->whereAdd('user_id is null');
190         } else {
191             $channel->user_id = $user_id;
192         }
193
194         $channel->action = $action;
195
196         if (is_null($arg1)) {
197             $channel->whereAdd('arg1 is null');
198         } else {
199             $channel->arg1 = $arg1;
200         }
201
202         if (is_null($arg2)) {
203             $channel->whereAdd('arg2 is null');
204         } else {
205             $channel->arg2 = $arg2;
206         }
207
208         if ($channel->find(true)) {
209             $channel->increment();
210             return $channel;
211         } else {
212             return null;
213         }
214     }
215
216     function increment()
217     {
218         // XXX: race
219         $orig = clone($this);
220         $this->audience++;
221         $this->modified = common_sql_now();
222         $this->update($orig);
223     }
224
225     function touch()
226     {
227         // XXX: race
228         $orig = clone($this);
229         $this->modified = common_sql_now();
230         $this->update($orig);
231     }
232
233     function decrement()
234     {
235         // XXX: race
236         if ($this->audience == 1) {
237             $this->delete();
238         } else {
239             $orig = clone($this);
240             $this->audience--;
241             $this->modified = common_sql_now();
242             $this->update($orig);
243         }
244     }
245 }