| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-09-11 13:12:41 +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-07 21:28:36 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Data class to mark notices as bookmarks | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-09-11 13:12:41 +03:00
										 |  |  |  * @category  PollPlugin | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Brion Vibber <brion@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 13:12:41 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * For storing the poll options and such | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-09-11 13:12:41 +03:00
										 |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-09-11 13:12:41 +03:00
										 |  |  |  * @see       DB_DataObject | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |  */ | 
					
						
							|  |  |  | class Poll extends Managed_DataObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     public $__table = 'poll'; // table name
 | 
					
						
							|  |  |  |     public $id;          // char(36) primary key not null -> UUID
 | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |     public $uri;         // varchar(191)   not 255 because utf8mb4 takes more space
 | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     public $profile_id;  // int -> profile.id
 | 
					
						
							|  |  |  |     public $question;    // text
 | 
					
						
							|  |  |  |     public $options;     // text; newline(?)-delimited
 | 
					
						
							|  |  |  |     public $created;     // datetime
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The One True Thingy that must be defined and declared. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function schemaDef() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return array( | 
					
						
							|  |  |  |             'description' => 'Per-notice poll data for Poll plugin', | 
					
						
							|  |  |  |             'fields' => array( | 
					
						
							|  |  |  |                 'id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID'), | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |                 'uri' => array('type' => 'varchar', 'length' => 191, 'not null' => true), | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |                 'profile_id' => array('type' => 'int'), | 
					
						
							|  |  |  |                 'question' => array('type' => 'text'), | 
					
						
							|  |  |  |                 'options' => array('type' => 'text'), | 
					
						
							|  |  |  |                 'created' => array('type' => 'datetime', 'not null' => true), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             'primary key' => array('id'), | 
					
						
							|  |  |  |             'unique keys' => array( | 
					
						
							|  |  |  |                 'poll_uri_key' => array('uri'), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a bookmark based on a notice | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice Notice to check for | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |      * @return get_called_class found poll or null | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public static function getByNotice($notice) | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         return self::getKV('uri', $notice->uri); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public function getOptions() | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return explode("\n", $this->options); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-10 13:41:23 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Is this a valid selection index? | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |      * @param int $selection (1-based) | 
					
						
							| 
									
										
										
										
											2011-03-10 13:41:23 -08:00
										 |  |  |      * @return boolean | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public function isValidSelection($selection) | 
					
						
							| 
									
										
										
										
											2011-03-10 13:41:23 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         if ($selection != intval($selection)) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($selection < 1 || $selection > count($this->getOptions())) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public function getNotice() | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         return Notice::getKV('uri', $this->uri); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public function getUrl() | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-04-29 19:46:58 +02:00
										 |  |  |         return $this->getNotice()->getUrl(); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get the response of a particular user to this poll, if any. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Profile $profile | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |      * @return get_called_class object or null | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public function getResponse(Profile $profile) | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |         $pr = Poll_response::pkeyGet(array('poll_id' => $this->id, | 
					
						
							|  |  |  |             'profile_id' => $profile->id)); | 
					
						
							|  |  |  |         return $pr; | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public function countResponses() | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $pr = new Poll_response(); | 
					
						
							|  |  |  |         $pr->poll_id = $this->id; | 
					
						
							|  |  |  |         $pr->groupBy('selection'); | 
					
						
							| 
									
										
										
										
											2019-09-11 13:12:41 +03:00
										 |  |  |         $pr->selectAdd(); | 
					
						
							|  |  |  |         $pr->selectAdd('selection'); | 
					
						
							|  |  |  |         $pr->selectAdd('COUNT(profile_id) AS votes'); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |         $pr->find(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $raw = array(); | 
					
						
							|  |  |  |         while ($pr->fetch()) { | 
					
						
							| 
									
										
										
										
											2011-03-08 15:44:51 -08:00
										 |  |  |             // Votes list 1-based
 | 
					
						
							|  |  |  |             // Array stores 0-based
 | 
					
						
							|  |  |  |             $raw[$pr->selection - 1] = $pr->votes; | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $counts = array(); | 
					
						
							|  |  |  |         foreach (array_keys($this->getOptions()) as $key) { | 
					
						
							|  |  |  |             if (isset($raw[$key])) { | 
					
						
							|  |  |  |                 $counts[$key] = $raw[$key]; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $counts[$key] = 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $counts; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Save a new poll notice | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Profile $profile | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |      * @param string $question | 
					
						
							|  |  |  |      * @param array $opts (poll responses) | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |      * @param null $options | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |      * @return Notice saved notice | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |      * @throws ClientException | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |     public static function saveNew($profile, $question, $opts, $options = null) | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (empty($options)) { | 
					
						
							|  |  |  |             $options = array(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $p = new Poll(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |         $p->id = UUID::gen(); | 
					
						
							|  |  |  |         $p->profile_id = $profile->id; | 
					
						
							|  |  |  |         $p->question = $question; | 
					
						
							|  |  |  |         $p->options = implode("\n", $opts); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (array_key_exists('created', $options)) { | 
					
						
							|  |  |  |             $p->created = $options['created']; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $p->created = common_sql_now(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (array_key_exists('uri', $options)) { | 
					
						
							|  |  |  |             $p->uri = $options['uri']; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |             $p->uri = common_local_url( | 
					
						
							|  |  |  |                 'showpoll', | 
					
						
							|  |  |  |                 array('id' => $p->id) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-08 15:10:30 -08:00
										 |  |  |         common_log(LOG_DEBUG, "Saving poll: $p->id $p->uri"); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |         $p->insert(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 19:05:28 +01:00
										 |  |  |         // TRANS: Notice content creating a poll.
 | 
					
						
							|  |  |  |         // TRANS: %1$s is the poll question, %2$s is a link to the poll.
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |         $content = sprintf( | 
					
						
							|  |  |  |             _m('Poll: %1$s %2$s'), | 
					
						
							|  |  |  |             $question, | 
					
						
							|  |  |  |             $p->uri | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-11 19:05:28 +01:00
										 |  |  |         $link = '<a href="' . htmlspecialchars($p->uri) . '">' . htmlspecialchars($question) . '</a>'; | 
					
						
							|  |  |  |         // TRANS: Rendered version of the notice content creating a poll.
 | 
					
						
							| 
									
										
										
										
											2011-04-29 19:22:44 +02:00
										 |  |  |         // TRANS: %s is a link to the poll with the question as link description.
 | 
					
						
							| 
									
										
										
										
											2011-03-11 19:05:28 +01:00
										 |  |  |         $rendered = sprintf(_m('Poll: %s'), $link); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |         $tags = array('poll'); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  |         $replies = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |         $options = array_merge( | 
					
						
							|  |  |  |             array('urls' => array(), | 
					
						
							|  |  |  |                 'rendered' => $rendered, | 
					
						
							|  |  |  |                 'tags' => $tags, | 
					
						
							|  |  |  |                 'replies' => $replies, | 
					
						
							|  |  |  |                 'object_type' => PollPlugin::POLL_OBJECT), | 
					
						
							|  |  |  |             $options | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!array_key_exists('uri', $options)) { | 
					
						
							|  |  |  |             $options['uri'] = $p->uri; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 00:55:40 +01:00
										 |  |  |         $saved = Notice::saveNew( | 
					
						
							|  |  |  |             $profile->id, | 
					
						
							|  |  |  |             $content, | 
					
						
							|  |  |  |             array_key_exists('source', $options) ? | 
					
						
							|  |  |  |                 $options['source'] : 'web', | 
					
						
							|  |  |  |             $options | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2011-03-07 21:28:36 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $saved; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |