2021-09-27 10:39:58 +01:00
< ? php
2021-10-10 09:26:18 +01:00
declare ( strict_types = 1 );
2021-09-27 10:39:58 +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 Component\Search\Controller ;
2021-12-10 13:52:18 +00:00
use App\Core\Form ;
use function App\Core\I18n\_m ;
2021-12-07 20:25:28 +00:00
use App\Util\Common ;
2021-12-10 21:19:21 +00:00
use App\Util\Exception\BugFoundException ;
2021-12-10 13:52:18 +00:00
use App\Util\Exception\RedirectException ;
use App\Util\Form\FormFields ;
2021-12-11 17:38:34 +00:00
use App\Util\Formatting ;
2022-02-16 03:01:25 +00:00
use App\Util\HTML\Heading ;
2022-01-02 20:04:52 +00:00
use Component\Collection\Util\Controller\FeedController ;
2021-12-10 13:52:18 +00:00
use Component\Search as Comp ;
2021-12-11 17:38:34 +00:00
use Symfony\Component\Form\Extension\Core\Type\CheckboxType ;
2021-12-10 13:52:18 +00:00
use Symfony\Component\Form\Extension\Core\Type\SubmitType ;
use Symfony\Component\Form\Extension\Core\Type\TextType ;
2021-09-27 10:39:58 +01:00
use Symfony\Component\HttpFoundation\Request ;
2021-12-07 21:07:37 +00:00
class Search extends FeedController
2021-09-27 10:39:58 +01:00
{
2021-12-07 20:25:28 +00:00
/**
* Handle a search query
*/
2021-09-27 10:39:58 +01:00
public function handle ( Request $request )
{
2021-12-16 10:41:29 +00:00
$actor = Common :: actor ();
$language = ! \is_null ( $actor ) ? $actor -> getTopLanguage () -> getLocale () : null ;
$q = $this -> string ( 'q' );
2021-10-10 05:44:10 +01:00
2022-01-04 22:20:12 +00:00
$data = $this -> query ( query : $q , locale : $language );
2021-12-23 13:27:31 +00:00
$notes = $data [ 'notes' ];
$actors = $data [ 'actors' ];
2021-09-27 10:39:58 +01:00
2021-12-10 13:52:18 +00:00
$search_builder_form = Form :: create ([
2021-12-11 17:38:34 +00:00
[ 'include_actors' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include people/actors' )]],
[ 'include_actors_groups' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include groups' )]],
[ 'include_actors_lists' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include people lists' )]],
[ 'include_actors_people' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include people' )]],
[ 'include_actors_businesses' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include businesses' )]],
[ 'include_actors_organizations' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include organizations' )]],
[ 'include_actors_bots' , CheckboxType :: class , [ 'required' => false , 'data' => false , 'label' => _m ( 'Include bots' )]],
[ 'include_notes' , CheckboxType :: class , [ 'required' => false , 'data' => true , 'label' => _m ( 'Include notes' )]],
[ 'include_notes_text' , CheckboxType :: class , [ 'required' => false , 'data' => true , 'label' => _m ( 'Include text notes' )]],
[ 'include_notes_media' , CheckboxType :: class , [ 'required' => false , 'data' => true , 'label' => _m ( 'Include media notes' )]],
[ 'include_notes_polls' , CheckboxType :: class , [ 'required' => false , 'data' => true , 'label' => _m ( 'Include polls' )]],
[ 'include_notes_bookmarks' , CheckboxType :: class , [ 'required' => false , 'data' => true , 'label' => _m ( 'Include bookmarks' )]],
/* note_langs */ FormFields :: language ( $actor , context_actor : null , label : _m ( 'Search for notes in these languages' ), multiple : true , required : false , use_short_display : false , form_id : 'note_langs' , use_no_selection : true ),
[ 'note_tags' , TextType :: class , [ 'required' => false , 'label' => _m ( 'Include only notes with all the following tags' )]],
/* note_actor_langs */ FormFields :: language ( $actor , context_actor : null , label : _m ( 'Search for notes by people who know these languages' ), multiple : true , required : false , use_short_display : false , form_id : 'note_actor_langs' , use_no_selection : true ),
[ 'note_actor_tags' , TextType :: class , [ 'required' => false , 'label' => _m ( 'Include only notes by people with all the following tags' )]],
/* actor_langs */ FormFields :: language ( $actor , context_actor : null , label : _m ( 'Search for people that know these languages' ), multiple : true , required : false , use_short_display : false , form_id : 'actor_langs' , use_no_selection : true ),
[ 'actor_tags' , TextType :: class , [ 'required' => false , 'label' => _m ( 'Include only people with all the following tags' )]],
2021-12-10 13:52:18 +00:00
[ $form_name = 'search_builder' , SubmitType :: class , [ 'label' => _m ( 'Search' )]],
]);
if ( 'POST' === $request -> getMethod () && $request -> request -> has ( $form_name )) {
$search_builder_form -> handleRequest ( $request );
if ( $search_builder_form -> isSubmitted () && $search_builder_form -> isValid ()) {
2021-12-11 17:38:34 +00:00
$data = $search_builder_form -> getData ();
$query = [];
$include_notes_query = [];
$include_actors_query = [];
$exception = new BugFoundException ( 'Search builder form seems to have new fields the code did not expect' );
2021-12-10 21:19:21 +00:00
foreach ( $data as $key => $value ) {
if ( ! \is_null ( $value ) && ! empty ( $value )) {
if ( str_contains ( $key , 'tags' )) {
$query [] = " { $key } :# { $value } " ;
} elseif ( str_contains ( $key , 'lang' )) {
if ( ! \in_array ( 'null' , $value )) {
$langs = implode ( ',' , $value );
$query [] = " { $key } : { $langs } " ;
}
2021-12-11 17:38:34 +00:00
} elseif ( str_contains ( $key , 'include' )) {
if ( str_contains ( $key , 'notes' )) {
if ( $key === 'include_notes' ) {
if ( ! $data [ $key ]) {
$include_notes_query = null ;
}
} elseif ( $data [ $key ] && ! \is_null ( $include_notes_query )) {
$include_notes_query [] = Formatting :: removePrefix ( $key , 'include_notes_' );
}
} elseif ( str_contains ( $key , 'actors' )) {
if ( $key === 'include_actors' ) {
if ( ! $data [ $key ]) {
$include_actors_query = null ;
}
} elseif ( $data [ $key ] && ! \is_null ( $include_actors_query )) {
$include_actors_query [] = Formatting :: removePrefix ( $key , 'include_actors_' );
}
} else {
throw $exception ;
}
2021-12-10 21:19:21 +00:00
} else {
2021-12-11 17:38:34 +00:00
throw $exception ;
2021-12-10 21:19:21 +00:00
}
}
}
2021-12-11 17:38:34 +00:00
if ( ! \is_null ( $include_notes_query ) && ! empty ( $include_notes_query )) {
$query [] = 'note-types:' . implode ( ',' , $include_notes_query );
}
if ( ! \is_null ( $include_actors_query ) && ! empty ( $include_actors_query )) {
$query [] = 'actor-types:' . implode ( ',' , $include_actors_query );
}
2021-12-10 21:19:21 +00:00
$query = implode ( ' ' , $query );
throw new RedirectException ( 'search' , [ 'q' => $query ]);
2021-12-10 13:52:18 +00:00
}
}
2021-12-08 10:20:37 +00:00
return [
2022-01-17 16:32:41 +00:00
'_template' => 'search/view.html.twig' ,
2021-12-21 16:44:42 +00:00
'actor' => $actor ,
'search_form' => Comp\Search :: searchForm ( $request , query : $q , add_subscribe : ! \is_null ( $actor )),
2021-12-10 13:52:18 +00:00
'search_builder_form' => $search_builder_form -> createView (),
2021-12-16 10:41:29 +00:00
'notes' => $notes ? ? [],
2022-02-16 03:01:25 +00:00
'notes_feed_title' => ( new Heading ( level : 3 , classes : [ 'section-title' ], text : 'Notes found' )),
'actors_feed_title' => ( new Heading ( level : 3 , classes : [ 'section-title' ], text : 'Actors found' )),
2021-12-16 10:41:29 +00:00
'actors' => $actors ? ? [],
2021-12-10 13:52:18 +00:00
'page' => 1 , // TODO paginate
2021-12-08 10:20:37 +00:00
];
2021-09-27 10:39:58 +01:00
}
}