| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +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-03-08 11:15:17 -05:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |  * Data class for event RSVPs | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |  * @category  Data | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |  * Data class for event RSVPs | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |  * @category  Event | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |  * @see       Managed_DataObject | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  | class RSVP extends Managed_DataObject | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     const POSITIVE = 'http://activitystrea.ms/schema/1.0/rsvp-yes'; | 
					
						
							|  |  |  |     const POSSIBLE = 'http://activitystrea.ms/schema/1.0/rsvp-maybe'; | 
					
						
							|  |  |  |     const NEGATIVE = 'http://activitystrea.ms/schema/1.0/rsvp-no'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public $__table = 'rsvp'; // table name
 | 
					
						
							|  |  |  |     public $id;                // varchar(36) UUID
 | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |     public $uri;               // varchar(191)   not 255 because utf8mb4 takes more space
 | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     public $profile_id;        // int
 | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |     public $event_uri;         // varchar(191)   not 255 because utf8mb4 takes more space
 | 
					
						
							| 
									
										
										
										
											2011-03-16 14:55:19 -04:00
										 |  |  |     public $response;            // tinyint
 | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     public $created;           // datetime
 | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |      * The One True Thingy that must be defined and declared. | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     public static function schemaDef() | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |         return array( | 
					
						
							| 
									
										
										
										
											2011-03-09 12:28:25 -05:00
										 |  |  |             'description' => 'Plan to attend event', | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |             'fields' => array( | 
					
						
							|  |  |  |                 'id' => array('type' => 'char', | 
					
						
							|  |  |  |                               'length' => 36, | 
					
						
							|  |  |  |                               'not null' => true, | 
					
						
							|  |  |  |                               'description' => 'UUID'), | 
					
						
							|  |  |  |                 'uri' => array('type' => 'varchar', | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |                                'length' => 191, | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |                                'not null' => true), | 
					
						
							|  |  |  |                 'profile_id' => array('type' => 'int'), | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |                 'event_uri' => array('type' => 'varchar', | 
					
						
							|  |  |  |                               'length' => 191, | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |                               'not null' => true, | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |                               'description' => 'Event URI'), | 
					
						
							| 
									
										
										
										
											2011-03-16 14:55:19 -04:00
										 |  |  |                 'response' => array('type' => 'char', | 
					
						
							|  |  |  |                                   'length' => '1', | 
					
						
							|  |  |  |                                   'description' => 'Y, N, or ? for three-state yes, no, maybe'), | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |                 'created' => array('type' => 'datetime', | 
					
						
							|  |  |  |                                    'not null' => true), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             'primary key' => array('id'), | 
					
						
							|  |  |  |             'unique keys' => array( | 
					
						
							|  |  |  |                 'rsvp_uri_key' => array('uri'), | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |                 'rsvp_profile_id_event_uri_key' => array('profile_id', 'event_uri'), | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |             ), | 
					
						
							| 
									
										
										
										
											2019-09-11 12:07:54 +03:00
										 |  |  |             'foreign keys' => array( | 
					
						
							|  |  |  |                 'rsvp_event_uri_fkey' => array('happening', array('event_uri' => 'uri')), | 
					
						
							|  |  |  |                 'rsvp_profile_id_fkey' => array('profile', array('profile_id' => 'id')) | 
					
						
							|  |  |  |             ), | 
					
						
							| 
									
										
										
										
											2020-07-31 16:36:40 +03:00
										 |  |  |             'indexes' => array( | 
					
						
							|  |  |  |                 'rsvp_event_uri_idx' => array('event_uri'), | 
					
						
							|  |  |  |                 'rsvp_created_idx' => array('created'), | 
					
						
							|  |  |  |             ), | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function beforeSchemaUpdate() | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         $table = strtolower(get_called_class()); | 
					
						
							|  |  |  |         $schema = Schema::get(); | 
					
						
							|  |  |  |         $schemadef = $schema->getTableDef($table); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // 2015-12-31 RSVPs refer to Happening by event_uri now, not event_id. Let's migrate!
 | 
					
						
							|  |  |  |         if (isset($schemadef['fields']['event_uri'])) { | 
					
						
							|  |  |  |             // We seem to have already migrated, good!
 | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // this is a "normal" upgrade from StatusNet for example
 | 
					
						
							|  |  |  |         echo "\nFound old $table table, upgrading it to add 'event_uri' field..."; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $schemadef['fields']['event_uri'] = array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'Event URI'); | 
					
						
							| 
									
										
										
										
											2016-03-15 16:52:57 +01:00
										 |  |  |         $schemadef['fields']['uri']['length'] = 191;    // we likely don't have to discover too long keys here
 | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |         $schema->ensureTable($table, $schemadef); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $rsvp = new RSVP(); | 
					
						
							|  |  |  |         $rsvp->find(); | 
					
						
							|  |  |  |         while ($rsvp->fetch()) { | 
					
						
							|  |  |  |             $event = Happening::getKV('id', $rsvp->event_id); | 
					
						
							|  |  |  |             if (!$event instanceof Happening) { | 
					
						
							| 
									
										
										
										
											2016-01-05 15:00:34 +01:00
										 |  |  |                 $rsvp->delete(); | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $orig = clone($rsvp); | 
					
						
							|  |  |  |             $rsvp->event_uri = $event->uri; | 
					
						
							|  |  |  |             $rsvp->updateWithKeys($orig); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         print "DONE.\n"; | 
					
						
							|  |  |  |         print "Resuming core schema upgrade..."; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function saveActivityObject(Activity $act, Notice $stored) | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         $target = Notice::getByKeys(array('uri'=>$act->target->id)); | 
					
						
							|  |  |  |         if (!ActivityUtils::compareTypes($target->getObjectType(), [ Happening::OBJECT_TYPE ])) { | 
					
						
							|  |  |  |             throw new ClientException('RSVP not aimed at a Happening'); | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         // FIXME: Maybe we need some permission handling here, though I think it's taken care of in saveActivity?
 | 
					
						
							| 
									
										
										
										
											2015-10-22 17:10:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |             $other = RSVP::getByKeys([ | 
					
						
							|  |  |  |                 'profile_id' => $stored->getProfile()->getID(), | 
					
						
							|  |  |  |                 'event_uri'  => $target->getUri(), | 
					
						
							|  |  |  |             ]); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Client exception thrown when trying to save an already existing RSVP ("please respond").
 | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |             throw new AlreadyFulfilledException(_m('RSVP already exists.')); | 
					
						
							|  |  |  |         } catch (NoResultException $e) { | 
					
						
							|  |  |  |             // No previous RSVP, so go ahead and add.
 | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |         $rsvp = new RSVP(); | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         $rsvp->id          = UUID::gen();   // remove this
 | 
					
						
							|  |  |  |         $rsvp->uri         = $stored->getUri(); | 
					
						
							|  |  |  |         $rsvp->profile_id  = $stored->getProfile()->getID(); | 
					
						
							|  |  |  |         $rsvp->event_uri   = $target->getUri(); | 
					
						
							|  |  |  |         $rsvp->response    = self::codeFor($stored->getVerb()); | 
					
						
							|  |  |  |         $rsvp->created     = $stored->getCreated(); | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |         $rsvp->insert(); | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         self::blow('rsvp:for-event:%s', $target->getUri()); | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-22 17:10:50 +00:00
										 |  |  |         return $rsvp; | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function getObjectType() | 
					
						
							| 
									
										
										
										
											2016-01-21 02:10:34 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         return ActivityObject::ACTIVITY; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function asActivityObject() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $happening = $this->getEvent(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $actobj = new ActivityObject(); | 
					
						
							| 
									
										
										
										
											2016-01-21 02:20:50 +01:00
										 |  |  |         $actobj->id = $this->getUri(); | 
					
						
							| 
									
										
										
										
											2016-01-21 02:10:34 +01:00
										 |  |  |         $actobj->type = self::getObjectType(); | 
					
						
							|  |  |  |         $actobj->title = $this->asString(); | 
					
						
							|  |  |  |         $actobj->content = $this->asString(); | 
					
						
							|  |  |  |         $actobj->target = array($happening->asActivityObject()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $actobj; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function codeFor($verb) | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         switch (true) { | 
					
						
							|  |  |  |         case ActivityUtils::compareVerbs($verb, [RSVP::POSITIVE]): | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |             return 'Y'; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         case ActivityUtils::compareVerbs($verb, [RSVP::NEGATIVE]): | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |             return 'N'; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         case ActivityUtils::compareVerbs($verb, [RSVP::POSSIBLE]): | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |             return '?'; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Exception thrown when requesting an undefined verb for RSVP.
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |             throw new Exception(sprintf(_m('Unknown verb "%s".'), $verb)); | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function verbFor($code) | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |         switch ($code) { | 
					
						
							|  |  |  |         case 'Y': | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         case 'yes': | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |             return RSVP::POSITIVE; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 'N': | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         case 'no': | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |             return RSVP::NEGATIVE; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case '?': | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         case 'maybe': | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |             return RSVP::POSSIBLE; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Exception thrown when requesting an undefined code for RSVP.
 | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |             throw new ClientException(sprintf(_m('Unknown code "%s".'), $code)); | 
					
						
							| 
									
										
										
										
											2011-03-16 15:22:15 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |     public function getUri() | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         return $this->uri; | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |     public function getEventUri() | 
					
						
							| 
									
										
										
										
											2011-03-09 02:33:26 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         return $this->event_uri; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-20 16:10:10 +01:00
										 |  |  |     public function getStored() | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         return Notice::getByKeys(['uri' => $this->getUri()]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function fromStored(Notice $stored) | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         return self::getByKeys(['uri' => $stored->getUri()]); | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-03-09 10:40:49 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function byEventAndActor(Happening $event, Profile $actor) | 
					
						
							| 
									
										
										
										
											2016-01-20 16:10:10 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         return self::getByKeys(['event_uri' => $event->getUri(), | 
					
						
							|  |  |  |                                 'profile_id' => $actor->getID()]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function forEvent(Happening $event) | 
					
						
							| 
									
										
										
										
											2011-03-09 10:40:49 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |         $keypart = sprintf('rsvp:for-event:%s', $event->getUri()); | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $idstr = self::cacheGet($keypart); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($idstr !== false) { | 
					
						
							|  |  |  |             $ids = explode(',', $idstr); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $ids = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $rsvp = new RSVP(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $rsvp->selectAdd(); | 
					
						
							|  |  |  |             $rsvp->selectAdd('id'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 19:23:05 +01:00
										 |  |  |             $rsvp->event_uri = $event->getUri(); | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if ($rsvp->find()) { | 
					
						
							|  |  |  |                 while ($rsvp->fetch()) { | 
					
						
							|  |  |  |                     $ids[] = $rsvp->id; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             self::cacheSet($keypart, implode(',', $ids)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-10 10:14:09 -06:00
										 |  |  |         $rsvps = array(RSVP::POSITIVE => array(), | 
					
						
							|  |  |  |                        RSVP::NEGATIVE => array(), | 
					
						
							|  |  |  |                        RSVP::POSSIBLE => array()); | 
					
						
							| 
									
										
										
										
											2011-03-09 10:40:49 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  |         foreach ($ids as $id) { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |             $rsvp = RSVP::getKV('id', $id); | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  |             if (!empty($rsvp)) { | 
					
						
							| 
									
										
										
										
											2011-03-16 14:55:19 -04:00
										 |  |  |                 $verb = self::verbFor($rsvp->response); | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  |                 $rsvps[$verb][] = $rsvp; | 
					
						
							| 
									
										
										
										
											2011-03-09 10:40:49 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $rsvps; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public function getProfile() | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         return Profile::getByID($this->profile_id); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public function getEvent() | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |         return Happening::getByKeys(['uri' => $this->getEventUri()]); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public function asHTML() | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |         return self::toHTML( | 
					
						
							|  |  |  |             $this->getProfile(), | 
					
						
							|  |  |  |             $this->getEvent(), | 
					
						
							|  |  |  |             $this->response | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public function asString() | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |         return self::toString( | 
					
						
							|  |  |  |             $this->getProfile(), | 
					
						
							|  |  |  |             $this->getEvent(), | 
					
						
							|  |  |  |             $this->response | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function toHTML(Profile $profile, Happening $event, $response) | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $fmt = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch ($response) { | 
					
						
							|  |  |  |         case 'Y': | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: HTML version of an RSVP ("please respond") status for a user.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is a profile URL, %2$s a profile name,
 | 
					
						
							|  |  |  |             // TRANS: %3$s is an event URL, %4$s an event title.
 | 
					
						
							| 
									
										
										
										
											2011-04-01 22:08:38 +02:00
										 |  |  |             $fmt = _m("<span class='automatic event-rsvp'><a href='%1\$s'>%2\$s</a> is attending <a href='%3\$s'>%4\$s</a>.</span>"); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 'N': | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: HTML version of an RSVP ("please respond") status for a user.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is a profile URL, %2$s a profile name,
 | 
					
						
							|  |  |  |             // TRANS: %3$s is an event URL, %4$s an event title.
 | 
					
						
							| 
									
										
										
										
											2011-04-01 22:08:38 +02:00
										 |  |  |             $fmt = _m("<span class='automatic event-rsvp'><a href='%1\$s'>%2\$s</a> is not attending <a href='%3\$s'>%4\$s</a>.</span>"); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case '?': | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: HTML version of an RSVP ("please respond") status for a user.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is a profile URL, %2$s a profile name,
 | 
					
						
							|  |  |  |             // TRANS: %3$s is an event URL, %4$s an event title.
 | 
					
						
							| 
									
										
										
										
											2011-04-01 22:08:38 +02:00
										 |  |  |             $fmt = _m("<span class='automatic event-rsvp'><a href='%1\$s'>%2\$s</a> might attend <a href='%3\$s'>%4\$s</a>.</span>"); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Exception thrown when requesting a user's RSVP status for a non-existing response code.
 | 
					
						
							|  |  |  |             // TRANS: %s is the non-existing response code.
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |             throw new Exception(sprintf(_m('Unknown response code %s.'), $response)); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-23 22:10:44 -04:00
										 |  |  |         if (empty($event)) { | 
					
						
							|  |  |  |             $eventUrl = '#'; | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Used as event title when not event title is available.
 | 
					
						
							|  |  |  |             // TRANS: Used as: Username [is [not ] attending|might attend] an unknown event.
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:30:23 +02:00
										 |  |  |             $eventTitle = _m('an unknown event'); | 
					
						
							| 
									
										
										
										
											2011-03-23 22:10:44 -04:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2016-01-19 00:21:16 +01:00
										 |  |  |             $eventUrl = $event->getStored()->getUrl(); | 
					
						
							| 
									
										
										
										
											2011-03-23 22:10:44 -04:00
										 |  |  |             $eventTitle = $event->title; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |         return sprintf( | 
					
						
							|  |  |  |             $fmt, | 
					
						
							|  |  |  |             htmlspecialchars($profile->getUrl()), | 
					
						
							|  |  |  |             htmlspecialchars($profile->getBestName()), | 
					
						
							|  |  |  |             htmlspecialchars($eventUrl), | 
					
						
							|  |  |  |             htmlspecialchars($eventTitle) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |     public static function toString($profile, $event, $response) | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $fmt = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch ($response) { | 
					
						
							|  |  |  |         case 'Y': | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Plain text version of an RSVP ("please respond") status for a user.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is a profile name, %2$s is an event title.
 | 
					
						
							| 
									
										
										
										
											2011-04-01 22:08:38 +02:00
										 |  |  |             $fmt = _m('%1$s is attending %2$s.'); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 'N': | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Plain text version of an RSVP ("please respond") status for a user.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is a profile name, %2$s is an event title.
 | 
					
						
							| 
									
										
										
										
											2011-04-01 22:08:38 +02:00
										 |  |  |             $fmt = _m('%1$s is not attending %2$s.'); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case '?': | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Plain text version of an RSVP ("please respond") status for a user.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is a profile name, %2$s is an event title.
 | 
					
						
							| 
									
										
										
										
											2011-04-01 22:08:38 +02:00
										 |  |  |             $fmt = _m('%1$s might attend %2$s.'); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Exception thrown when requesting a user's RSVP status for a non-existing response code.
 | 
					
						
							|  |  |  |             // TRANS: %s is the non-existing response code.
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |             throw new Exception(sprintf(_m('Unknown response code %s.'), $response)); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-23 22:10:44 -04:00
										 |  |  |         if (empty($event)) { | 
					
						
							| 
									
										
										
										
											2011-04-07 14:01:40 +02:00
										 |  |  |             // TRANS: Used as event title when not event title is available.
 | 
					
						
							|  |  |  |             // TRANS: Used as: Username [is [not ] attending|might attend] an unknown event.
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:30:23 +02:00
										 |  |  |             $eventTitle = _m('an unknown event'); | 
					
						
							| 
									
										
										
										
											2011-03-23 22:10:44 -04:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $eventTitle = $event->title; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:12:48 +03:00
										 |  |  |         return sprintf( | 
					
						
							|  |  |  |             $fmt, | 
					
						
							|  |  |  |             $profile->getBestName(), | 
					
						
							|  |  |  |             $eventTitle | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-16 17:51:27 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  |     public function delete($useWhere=false) | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-06-23 14:23:44 +02:00
										 |  |  |         self::blow('rsvp:for-event:%s', $this->id); | 
					
						
							| 
									
										
										
										
											2013-10-29 10:20:57 +01:00
										 |  |  |         return parent::delete($useWhere); | 
					
						
							| 
									
										
										
										
											2011-04-07 00:01:51 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-01-19 01:10:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function insert() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $result = parent::insert(); | 
					
						
							|  |  |  |         if ($result === false) { | 
					
						
							|  |  |  |             common_log_db_error($this, 'INSERT', __FILE__); | 
					
						
							|  |  |  |             throw new ServerException(_('Failed to insert '._ve(get_called_class()).' into database')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-03-08 11:15:17 -05:00
										 |  |  | } |