| 
									
										
										
										
											2021-04-30 01:51:59 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 01:51:59 +01:00
										 |  |  | // {{{ 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/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Plugin\AttachmentShowRelated; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Core\DB\DB; | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							|  |  |  | use App\Core\Modules\Plugin; | 
					
						
							| 
									
										
										
										
											2021-08-11 23:42:08 +01:00
										 |  |  | use App\Util\Common; | 
					
						
							| 
									
										
										
										
											2021-04-30 01:51:59 +01:00
										 |  |  | use App\Util\Formatting; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AttachmentShowRelated extends Plugin | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     public function onAppendRightPanelBlock($vars, &$res): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-10-06 00:34:27 +01:00
										 |  |  |         if ($vars['path'] === 'attachment_show') { | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  |             $related_notes = DB::dql('select n from attachment_to_note an ' | 
					
						
							|  |  |  |         . 'join note n with n.id = an.note_id ' | 
					
						
							|  |  |  |         . 'where an.attachment_id = :attachment_id', ['attachment_id' => $vars['vars']['attachment_id']], ); | 
					
						
							|  |  |  |             $related_tags = DB::dql('select distinct t.tag ' | 
					
						
							|  |  |  |         . 'from attachment_to_note an join note_tag t with an.note_id = t.note_id ' | 
					
						
							|  |  |  |         . 'where an.attachment_id = :attachment_id', ['attachment_id' => $vars['vars']['attachment_id']], ); | 
					
						
							| 
									
										
										
										
											2021-08-11 23:42:08 +01:00
										 |  |  |             $res[] = Formatting::twigRenderFile('attachmentShowRelated/attachmentRelatedNotes.html.twig', ['related_notes' => $related_notes, 'have_user' => Common::user() !== null]); | 
					
						
							| 
									
										
										
										
											2021-04-30 22:29:42 +01:00
										 |  |  |             $res[] = Formatting::twigRenderFile('attachmentShowRelated/attachmentRelatedTags.html.twig', ['related_tags' => $related_tags]); | 
					
						
							| 
									
										
										
										
											2021-04-30 01:51:59 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-06 00:34:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Output our dedicated stylesheet | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $styles stylesheets path | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  |      * @return bool hook value; true means continue processing, false means stop | 
					
						
							| 
									
										
										
										
											2021-10-06 00:34:27 +01:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function onEndShowStyles(array &$styles, string $path): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($path === 'attachment_show') { | 
					
						
							|  |  |  |             $styles[] = '/assets/default_theme/css/pages/feeds.css'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | } |