| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | // {{{ License
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-09 21:25:57 +00:00
										 |  |  | namespace Plugin\Poll; | 
					
						
							| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  | use App\Core\DB\DB; | 
					
						
							| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  | use App\Core\Event; | 
					
						
							| 
									
										
										
										
											2020-12-14 15:47:51 +00:00
										 |  |  | use App\Core\Form; | 
					
						
							|  |  |  | use function App\Core\I18n\_m; | 
					
						
							| 
									
										
										
										
											2021-04-19 18:51:05 +00:00
										 |  |  | use App\Core\Modules\Plugin; | 
					
						
							| 
									
										
										
										
											2020-11-09 17:43:10 +00:00
										 |  |  | use App\Core\Router\RouteLoader; | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  | use App\Entity\Note; | 
					
						
							|  |  |  | use App\Entity\PollResponse; | 
					
						
							|  |  |  | use App\Util\Common; | 
					
						
							|  |  |  | use App\Util\Exception\InvalidFormException; | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  | use App\Util\Exception\NotFoundException; | 
					
						
							|  |  |  | use App\Util\Exception\RedirectException; | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  | use App\Util\Exception\ServerException; | 
					
						
							| 
									
										
										
										
											2020-12-14 15:47:51 +00:00
										 |  |  | use Symfony\Component\Form\Extension\Core\Type\ChoiceType; | 
					
						
							|  |  |  | use Symfony\Component\Form\Extension\Core\Type\HiddenType; | 
					
						
							|  |  |  | use Symfony\Component\Form\Extension\Core\Type\SubmitType; | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							| 
									
										
										
										
											2020-10-29 18:32:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-10 02:01:31 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Poll plugin main class | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package  GNUsocial | 
					
						
							| 
									
										
										
										
											2020-12-14 15:47:51 +00:00
										 |  |  |  * @category Poll | 
					
						
							| 
									
										
										
										
											2020-11-09 21:25:57 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @author    Daniel Brandao <up201705812@fe.up.pt> | 
					
						
							|  |  |  |  * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-04-19 18:51:05 +00:00
										 |  |  | class Poll extends Plugin | 
					
						
							| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-09 17:43:10 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Map URLs to actions | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param RouteLoader $r | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool hook value; true means continue processing, false means stop. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onAddRoute(RouteLoader $r): bool | 
					
						
							| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-12-14 15:47:51 +00:00
										 |  |  |         $r->connect('newpoll', 'main/poll/new/{num<\\d+>?3}', [Controller\NewPoll::class, 'newpoll']); | 
					
						
							| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 15:06:23 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Populate twig vars | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $vars | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool hook value; true means continue processing, false means stop. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |     public function onStartTwigPopulateVars(array &$vars): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-12-14 15:47:51 +00:00
										 |  |  |         $vars['tabs'][] = ['title' => 'Poll', | 
					
						
							|  |  |  |             'href'                 => 'newpoll', | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 15:06:23 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Output our dedicated stylesheet | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $styles stylesheets path | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool hook value; true means continue processing, false means stop. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  |     public function onStartShowStyles(array &$styles): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $styles[] = 'poll/poll.css'; | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-11-23 15:06:23 +00:00
										 |  |  |      * Output our note content to the timeline | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Request $request | 
					
						
							|  |  |  |      * @param Note    $note | 
					
						
							|  |  |  |      * @param array   $otherContent content | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws InvalidFormException               invalid forms | 
					
						
							|  |  |  |      * @throws RedirectException | 
					
						
							|  |  |  |      * @throws ServerException                    User already responded to poll | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\NoLoggedInUser user not logged in | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool hook value; true means continue processing, false means stop. | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-11-23 15:06:23 +00:00
										 |  |  |     public function onShowNoteContent(Request $request, Note $note, array &$otherContent) | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  |         $responses = null; | 
					
						
							|  |  |  |         $formView  = null; | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             $poll = DB::findOneBy('poll', ['note_id' => $note->getId()]); | 
					
						
							|  |  |  |         } catch (NotFoundException $e) { | 
					
						
							|  |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  |         if (Common::isLoggedIn() && !PollResponse::exits($poll->getId(), Common::ensureLoggedIn()->getId())) { | 
					
						
							| 
									
										
										
										
											2020-12-14 15:47:51 +00:00
										 |  |  |             $opts    = $poll->getOptionsArr(); | 
					
						
							|  |  |  |             $options = []; | 
					
						
							|  |  |  |             for ($i = 1; $i <= count($opts); ++$i) { | 
					
						
							|  |  |  |                 $options[$opts[$i - 1]] = $i; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $formOptions = [ | 
					
						
							|  |  |  |                 ['Options' . $poll->getId(), ChoiceType::class, [ | 
					
						
							|  |  |  |                     'choices'  => $options, | 
					
						
							|  |  |  |                     'expanded' => true, | 
					
						
							|  |  |  |                 ]], | 
					
						
							|  |  |  |                 ['note_id',     HiddenType::class, ['data' => $note->getId()]], | 
					
						
							|  |  |  |                 ['pollresponse', SubmitType::class, ['label' => _m('Vote')]], | 
					
						
							|  |  |  |             ]; | 
					
						
							|  |  |  |             $form = Form::create($formOptions); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  |             $formView = $form->createView(); | 
					
						
							| 
									
										
										
										
											2020-11-22 21:45:43 +00:00
										 |  |  |             $ret      = self::noteActionHandle($request, $form, $note, 'pollresponse', /** TODO needs documentation */ function ($note, $data) { | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |                 $user = Common::ensureLoggedIn(); | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 try { | 
					
						
							|  |  |  |                     $poll = DB::findOneBy('poll', ['note_id' => $note->getId()]); | 
					
						
							|  |  |  |                 } catch (NotFoundException $e) { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (PollResponse::exits($poll->getId(), $user->getId())) { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |                 $selection = array_values($data)[1]; | 
					
						
							|  |  |  |                 if (!$poll->isValidSelection($selection)) { | 
					
						
							|  |  |  |                     throw new InvalidFormException(); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (PollResponse::exits($poll->getId(), $user->getId())) { | 
					
						
							|  |  |  |                     throw new ServerException('User already responded to poll'); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $pollResponse = PollResponse::create(['poll_id' => $poll->getId(), 'gsactor_id' => $user->getId(), 'selection' => $selection]); | 
					
						
							|  |  |  |                 DB::persist($pollResponse); | 
					
						
							|  |  |  |                 DB::flush(); | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 throw new RedirectException(); | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |             }); | 
					
						
							| 
									
										
										
										
											2020-11-22 02:36:01 +00:00
										 |  |  |             if ($ret != null) { | 
					
						
							|  |  |  |                 return $ret; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $responses = $poll->countResponses(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-11-23 15:06:23 +00:00
										 |  |  |         $otherContent[] = ['name' => 'Poll', 'vars' => ['question' => $poll->getQuestion(), 'responses' => $responses, 'form' => $formView]]; | 
					
						
							| 
									
										
										
										
											2020-11-20 14:59:15 +00:00
										 |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-10-22 23:13:39 +01:00
										 |  |  | } |