]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/RSVP.php
my code-to-verb logic was ab0rken; fixed
[quix0rs-gnu-social.git] / plugins / Event / RSVP.php
1 <?php
2 /**
3  * Data class for event RSVPs
4  *
5  * PHP version 5
6  *
7  * @category Data
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2011, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Data class for event RSVPs
36  *
37  * @category Event
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  *
43  * @see      Managed_DataObject
44  */
45
46 class RSVP extends Managed_DataObject
47 {
48     const POSITIVE = 'http://activitystrea.ms/schema/1.0/rsvp-yes';
49     const POSSIBLE = 'http://activitystrea.ms/schema/1.0/rsvp-maybe';
50     const NEGATIVE = 'http://activitystrea.ms/schema/1.0/rsvp-no';
51
52     public $__table = 'rsvp'; // table name
53     public $id;                // varchar(36) UUID
54     public $uri;               // varchar(255)
55     public $profile_id;        // int
56     public $event_id;          // varchar(36) UUID
57     public $response;            // tinyint
58     public $created;           // datetime
59
60     /**
61      * Get an instance by key
62      *
63      * @param string $k Key to use to lookup (usually 'id' for this class)
64      * @param mixed  $v Value to lookup
65      *
66      * @return RSVP object found, or null for no hits
67      *
68      */
69     function staticGet($k, $v=null)
70     {
71         return Memcached_DataObject::staticGet('RSVP', $k, $v);
72     }
73
74     /**
75      * Get an instance by compound key
76      *
77      * @param array $kv array of key-value mappings
78      *
79      * @return Bookmark object found, or null for no hits
80      *
81      */
82
83     function pkeyGet($kv)
84     {
85         return Memcached_DataObject::pkeyGet('RSVP', $kv);
86     }
87
88     /**
89      * Add the compound profile_id/event_id index to our cache keys
90      * since the DB_DataObject stuff doesn't understand compound keys
91      * except for the primary.
92      *
93      * @return array
94      */
95     function _allCacheKeys() {
96         $keys = parent::_allCacheKeys();
97         $keys[] = self::multicacheKey('RSVP', array('profile_id' => $this->profile_id,
98                                                     'event_id' => $this->event_id));
99         return $keys;
100     }
101
102     /**
103      * The One True Thingy that must be defined and declared.
104      */
105     public static function schemaDef()
106     {
107         return array(
108             'description' => 'Plan to attend event',
109             'fields' => array(
110                 'id' => array('type' => 'char',
111                               'length' => 36,
112                               'not null' => true,
113                               'description' => 'UUID'),
114                 'uri' => array('type' => 'varchar',
115                                'length' => 255,
116                                'not null' => true),
117                 'profile_id' => array('type' => 'int'),
118                 'event_id' => array('type' => 'char',
119                               'length' => 36,
120                               'not null' => true,
121                               'description' => 'UUID'),
122                 'response' => array('type' => 'char',
123                                   'length' => '1',
124                                   'description' => 'Y, N, or ? for three-state yes, no, maybe'),
125                 'created' => array('type' => 'datetime',
126                                    'not null' => true),
127             ),
128             'primary key' => array('id'),
129             'unique keys' => array(
130                 'rsvp_uri_key' => array('uri'),
131                 'rsvp_profile_event_key' => array('profile_id', 'event_id'),
132             ),
133             'foreign keys' => array('rsvp_event_id_key' => array('event', array('event_id' => 'id')),
134                                     'rsvp_profile_id__key' => array('profile', array('profile_id' => 'id'))),
135             'indexes' => array('rsvp_created_idx' => array('created')),
136         );
137     }
138
139     function saveNew($profile, $event, $verb, $options=array())
140     {
141         common_debug("RSVP::saveNew({$profile->id}, {$event->id}, '$verb', 'some options');");
142
143         if (array_key_exists('uri', $options)) {
144             $other = RSVP::staticGet('uri', $options['uri']);
145             if (!empty($other)) {
146                 throw new ClientException(_('RSVP already exists.'));
147             }
148         }
149
150         $other = RSVP::pkeyGet(array('profile_id' => $profile->id,
151                                      'event_id' => $event->id));
152
153         if (!empty($other)) {
154             throw new ClientException(_('RSVP already exists.'));
155         }
156
157         $rsvp = new RSVP();
158
159         $rsvp->id          = UUID::gen();
160         $rsvp->profile_id  = $profile->id;
161         $rsvp->event_id    = $event->id;
162         $rsvp->response      = self::codeFor($verb);
163
164         common_debug("Got value {$rsvp->response} for verb {$verb}");
165
166         if (array_key_exists('created', $options)) {
167             $rsvp->created = $options['created'];
168         } else {
169             $rsvp->created = common_sql_now();
170         }
171
172         if (array_key_exists('uri', $options)) {
173             $rsvp->uri = $options['uri'];
174         } else {
175             $rsvp->uri = common_local_url('showrsvp',
176                                         array('id' => $rsvp->id));
177         }
178
179         $rsvp->insert();
180
181         // XXX: come up with something sexier
182
183         $content = sprintf(_('RSVPed %s for an event.'),
184                            ($verb == RSVP::POSITIVE) ? _('positively') :
185                            ($verb == RSVP::NEGATIVE) ? _('negatively') :
186                            _('possibly'));
187         
188         $rendered = $content;
189
190         $options = array_merge(array('object_type' => $verb),
191                                $options);
192
193         if (!array_key_exists('uri', $options)) {
194             $options['uri'] = $rsvp->uri;
195         }
196
197         $eventNotice = $event->getNotice();
198
199         if (!empty($eventNotice)) {
200             $options['reply_to'] = $eventNotice->id;
201         }
202
203         $saved = Notice::saveNew($profile->id,
204                                  $content,
205                                  array_key_exists('source', $options) ?
206                                  $options['source'] : 'web',
207                                  $options);
208
209         return $saved;
210     }
211
212     function codeFor($verb)
213     {
214         switch ($verb) {
215         case RSVP::POSITIVE:
216             return 'Y';
217             break;
218         case RSVP::NEGATIVE:
219             return 'N';
220             break;
221         case RSVP::POSSIBLE:
222             return '?';
223             break;
224         default:
225             throw new Exception("Unknown verb {$verb}");
226         }
227     }
228
229     static function verbFor($code)
230     {
231         switch ($code) {
232         case 'Y':
233             return RSVP::POSITIVE;
234             break;
235         case 'N':
236             return RSVP::NEGATIVE;
237             break;
238         case '?':
239             return RSVP::POSSIBLE;
240             break;
241         default:
242             throw new Exception("Unknown code {$code}");
243         }
244     }
245
246     function getNotice()
247     {
248         $notice = Notice::staticGet('uri', $this->uri);
249         if (empty($notice)) {
250             throw new ServerException("RSVP {$this->id} does not correspond to a notice in the DB.");
251         }
252         return $notice;
253     }
254
255     static function fromNotice($notice)
256     {
257         return RSVP::staticGet('uri', $notice->uri);
258     }
259
260     static function forEvent($event)
261     {
262         $rsvps = array(RSVP::POSITIVE => array(),
263                        RSVP::NEGATIVE => array(),
264                        RSVP::POSSIBLE => array());
265
266         $rsvp = new RSVP();
267
268         $rsvp->event_id = $event->id;
269
270         if ($rsvp->find()) {
271             while ($rsvp->fetch()) {
272                 $verb = self::verbFor($rsvp->response);
273                 $rsvps[$verb][] = clone($rsvp);
274             }
275         }
276
277         return $rsvps;
278     }
279 }