1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
|
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: Search.pm 3179 2008-11-11 04:18:13Z fumiakiy $
package MT::App::Search;
use strict;
use base qw( MT::App );
use MT::Util qw( encode_html encode_url );
sub id {'new_search'}
sub init {
my $app = shift;
$app->SUPER::init(@_) or return;
$app->set_no_cache;
$app->{default_mode} = 'default';
## process pathinfo
#if ( my $pi = $app->path_info ) {
# $pi =~ s!^/!!;
# my ($mode, $tag, @args) = split /\//, $pi;
# $app->mode($mode);
# $app->param($mode, $tag);
# for my $arg (@args) {
# my ($k, $v) = split /=/, $arg, 2;
# $app->param($k, $v);
# }
#}
my $pkg = ref($app);
$app->_register_core_callbacks(
{ "${pkg}::search_post_execute" => \&_log_search,
"${pkg}::search_post_render" => \&_cache_out,
"${pkg}::prepare_throttle" => \&_default_throttle,
"${pkg}::take_down" => \&_default_takedown,
}
);
$app;
}
sub core_methods {
my $app = shift;
return {
'default' => \&process,
'tag' => '$Core::MT::App::Search::TagSearch::process',
};
}
sub core_parameters {
my $app = shift;
return {
params => [
qw( searchTerms search count limit startIndex offset
category author )
],
types => {
entry => {
columns => {
title => 'like',
keywords => 'like',
text => 'like',
text_more => 'like'
},
'sort' => 'authored_on',
terms => { status => 2, class => '*' }, #MT::Entry::RELEASE()
filter_types => {
author => \&_join_author,
category => \&_join_category,
},
},
},
cache_driver => { 'package' => 'MT::Cache::Negotiate', },
};
}
sub init_request {
my $app = shift;
$app->SUPER::init_request(@_);
$app->mode('tag') if $app->param('tag');
my $q = $app->param;
# These parameters are strictly numeric; invalid request if they
# are given and are not
foreach my $param ( qw( blog_id limit offset SearchMaxResults ) ) {
my $val = $q->param($param);
next unless defined $val && ($val ne '');
return $app->errtrans( 'Invalid [_1] parameter.', $param )
if $val !~ m/^\d+$/;
}
foreach my $param ( qw( IncludeBlogs ExcludeBlogs ) ) {
my $val = $q->param($param);
next unless defined $val && ($val ne '');
return $app->errtrans( 'Invalid [_1] parameter.', $param )
if $val !~ m/^(\d+,?)+$/;
}
my $params = $app->registry( $app->mode, 'params' );
foreach (@$params) {
delete $app->{$_} if exists $app->{$_};
}
delete $app->{__have_throttle} if exists $app->{__have_throttle};
my %no_override;
foreach my $no ( split /\s*,\s*/, $app->config->SearchNoOverride ) {
$no_override{$no} = 1;
$no_override{"Search$no"} = 1
if $no !~ /^Search.+/;
}
## Set other search params--prefer per-query setting, default to
## config file.
for my $key (qw( SearchResultDisplay SearchMaxResults SearchSortBy )) {
$app->{searchparam}{$key}
= $no_override{$key}
? $app->config->$key()
: ( $q->param($key) || $app->config->$key() );
}
$app->{searchparam}{SearchMaxResults} =~ s/\D//g
if defined( $app->{searchparam}{SearchMaxResults} );
$app->{searchparam}{Type} = 'entry';
if ( my $type = $q->param('type') ) {
return $app->errtrans( 'Invalid type: [_1]', encode_html($type) )
if $type !~ /[\w\.]+/;
$app->{searchparam}{Type} = $type;
}
$app->generate_cache_keys();
$app->init_cache_driver();
my $processed = 0;
my $list = {};
if ( $app->run_callbacks( 'search_blog_list', $app, $list, \$processed ) )
{
if ($processed) {
$app->{searchparam}{IncludeBlogs} = $list;
}
else {
my $blog_list = $app->create_blog_list(%no_override);
$app->{searchparam}{IncludeBlogs} = $blog_list->{IncludeBlogs}
if $blog_list
&& %$blog_list
&& $blog_list->{IncludeBlogs}
&& %{ $blog_list->{IncludeBlogs} };
if ( !exists( $app->{searchparam}{IncludeBlogs} )
&& ( my $blog_id = $q->param('blog_id') ) )
{
$blog_id =~ s/\D//g;
$app->{searchparam}{IncludeBlogs}{$blog_id} = 1
if $blog_id;
}
}
}
else {
return $app->error( $app->translate('Invalid request.') );
}
}
sub generate_cache_keys {
my $app = shift;
my $q = $app->param;
my @p = sort { $a cmp $b } $q->param;
my ( $key, $count_key );
$key .= lc($_) . encode_url( $q->param($_) ) foreach @p;
$count_key .= lc($_) . encode_url( $q->param($_) )
foreach grep { ( 'limit' ne lc($_) ) && ( 'offset' ne lc($_) ) } @p;
$app->{cache_keys} = { result => $key, count => $count_key };
}
sub init_cache_driver {
my $app = shift;
unless ( $app->config->SearchCacheTTL ) {
require MT::Cache::Null;
$app->{cache_driver} = MT::Cache::Null->new;
return;
}
my $registry = $app->registry( $app->mode, 'cache_driver' );
my $cache_driver = $registry->{'package'} || 'MT::Cache::Negotiate';
eval "require $cache_driver;";
if ( my $e = $@ ) {
require MT::Log;
$app->log(
{ message => $app->translate(
"Search: failed storing results in cache. [_1] is not available: [_2]",
$cache_driver,
$e
),
level => MT::Log::INFO(),
class => 'search',
}
);
return;
}
$app->{cache_driver} = $cache_driver->new(
ttl => $app->config->SearchCacheTTL,
kind => 'CS',
);
}
sub create_blog_list {
my $app = shift;
my (%no_override) = @_;
my $q = $app->param;
my $cfg = $app->config;
unless (%no_override) {
my %no_override;
foreach my $no ( split /\s*,\s*/, $app->config->SearchNoOverride ) {
$no_override{$no} = 1;
$no_override{"Search$no"} = 1
if $no !~ /^Search.+/;
}
}
my %blog_list;
## Combine user-selected included/excluded blogs
## with config file settings.
for my $type (qw( IncludeBlogs ExcludeBlogs )) {
$blog_list{$type} = {};
if ( my $list = $cfg->$type() ) {
$blog_list{$type} = { map { $_ => 1 } split /\s*,\s*/, $list };
}
next if exists( $no_override{$type} ) && $no_override{$type};
for my $blog_id ( $q->param($type) ) {
if ( $blog_id =~ m/,/ ) {
my @ids = split /,/, $blog_id;
s/\D+//g for @ids; # only numeric values.
foreach my $id (@ids) {
next unless $id;
$blog_list{$type}{$id} = 1;
}
}
else {
$blog_id =~ s/\D+//g; # only numeric values.
$blog_list{$type}{$blog_id} = 1 if $blog_id;
}
}
}
## If IncludeBlogs has not been set, we need to build a list of
## the blogs to search. If ExcludeBlogs was set, exclude any blogs
## set in that list from our final list.
unless ( exists $blog_list{IncludeBlogs} ) {
my $exclude = $blog_list{ExcludeBlogs};
my $iter = $app->model('blog')->load_iter;
while ( my $blog = $iter->() ) {
$blog_list{IncludeBlogs}{ $blog->id } = 1
unless $exclude && $exclude->{ $blog->id };
}
}
\%blog_list;
}
sub check_cache {
my $app = shift;
my $cache
= $app->{cache_driver}->get_multi( values %{ $app->{cache_keys} } );
my $count = $cache->{ $app->{cache_keys}{count} }
if exists $cache->{ $app->{cache_keys}{count} };
my $result = $cache->{ $app->{cache_keys}{result} }
if exists $cache->{ $app->{cache_keys}{result} };
( $count, $result );
}
sub process {
my $app = shift;
my @messages;
return $app->throttle_response( \@messages )
unless $app->throttle_control( \@messages );
my ( $count, $out ) = $app->check_cache();
if ( defined $out ) {
$app->run_callbacks( 'search_cache_hit', $count, $out );
return $out;
}
my @arguments = $app->search_terms();
return $app->error( $app->errstr ) if $app->errstr;
$count = 0;
my $iter;
if (@arguments) {
( $count, $iter ) = $app->execute(@arguments);
return $app->error( $app->errstr ) unless $iter;
$app->run_callbacks( 'search_post_execute', $app, \$count, \$iter );
}
my $format = q();
if ( $format = $app->param('format') ) {
return $app->errtrans( 'Invalid format: [_1]', encode_html($format) )
if $format !~ /\w+/;
}
my $method = "render";
$method .= $format if $format && $app->can( $method . $format );
$out = $app->$method( $count, $iter );
my $result;
if ( ref($out) && ( $out->isa('MT::Template') ) ) {
defined( $result = $app->build_page($out) )
or return $app->error( $out->errstr );
}
else {
$result = $out;
}
$app->run_callbacks( 'search_post_render', $app, $count, $result );
$result;
}
sub count {
my $app = shift;
my ( $class, $terms, $args ) = @_;
my $count = $app->{cache_driver}->get( $app->{cache_keys}{count} );
return $count if defined $count;
$count = $class->count( $terms, $args );
return $app->error( $class->errstr ) unless defined $count;
my $cache_driver = $app->{cache_driver};
$cache_driver->set( $app->{cache_keys}{count},
$count, $app->config->SearchCacheTTL );
$count;
}
sub execute {
my $app = shift;
my ( $terms, $args ) = @_;
my $class = $app->model( $app->{searchparam}{Type} )
or return $app->errtrans( 'Unsupported type: [_1]',
encode_html( $app->{searchparam}{Type} ) );
my $count = $app->count( $class, $terms, $args );
return $app->errtrans( "Invalid query: [_1]", $app->errstr )
unless defined $count;
my $iter = $class->load_iter( $terms, $args )
or $app->error( $class->errstr );
( $count, $iter );
}
sub search_terms {
my $app = shift;
my $q = $app->param;
my $search_string = $q->param('searchTerms') || $q->param('search')
or return $app->errtrans('No search term was specified.');
$app->{search_string} = $search_string;
my $offset = $q->param('startIndex') || $q->param('offset') || 0;
return $app->errtrans( 'Invalid value: [_1]', encode_html($offset) )
if $offset && $offset !~ /^\d+$/;
my $limit = $q->param('count') || $q->param('limit');
return $app->errtrans( 'Invalid value: [_1]', encode_html($limit) )
if $limit && $limit !~ /^\d+$/;
my $max = $app->{searchparam}{SearchMaxResults};
$max =~ s/\D//g if defined $max;
$limit = $max if !$limit || ( $limit - $offset > $max );
my $params
= $app->registry( $app->mode, 'types', $app->{searchparam}{Type} );
my %def_terms
= exists( $params->{terms} )
? %{ $params->{terms} }
: ();
delete $def_terms{'plugin'};
if ( exists $app->{searchparam}{IncludeBlogs} ) {
$def_terms{blog_id} = [ keys %{ $app->{searchparam}{IncludeBlogs} } ];
}
my @terms;
if (%def_terms) {
# If we have a term for the model's class column, add it separately, so
# array search() doesn't add the default class column term.
my $type = $app->{searchparam}{Type};
my $model_class = MT->model($type);
if ( my $class_col = $model_class->properties->{class_column} ) {
if ( $def_terms{$class_col} ) {
push @terms, { $class_col => delete $def_terms{$class_col} };
}
}
push @terms, \%def_terms;
}
my $columns = $params->{columns};
delete $columns->{'plugin'};
return $app->errtrans( 'No column was specified to search for [_1].',
$app->{searchparam}{Type} )
unless $columns && %$columns;
my $parsed = $app->query_parse(%$columns);
return $app->errtrans( 'Invalid query: [_1]',
encode_html($search_string) )
unless $parsed && %$parsed;
push @terms, $parsed->{terms} if exists $parsed->{terms};
my $desc
= 'descend' eq $app->{searchparam}{SearchResultDisplay}
? 'DESC'
: 'ASC';
my @sort;
my $sort = $params->{'sort'};
if ( $sort !~ /\w+\!$/ && $app->{searchparam}{SearchSortBy} ) {
my $sort_by = $app->{searchparam}{SearchSortBy};
$sort_by =~ s/[^\w\-\.\,]+//g;
if ($sort_by) {
my @sort_bys = split ',', $sort_by;
foreach my $key (@sort_bys) {
push @sort,
{
desc => $desc,
column => $key
};
}
}
}
push @sort,
{
desc => $desc,
column => $sort
};
my %args = (
exists( $parsed->{args} ) ? %{ $parsed->{args} } : (),
$limit ? ( 'limit' => $limit ) : (),
$offset ? ( 'offset' => $offset ) : (),
@sort ? ( 'sort' => \@sort ) : (),
);
( \@terms, \%args );
}
sub _cache_out {
my ( $cb, $app, $count, $out ) = @_;
my $result;
if ( ref($out) && ( $out->isa('MT::Template') ) ) {
defined( $result = $app->build_page($out) )
or die $out->errstr;
}
else {
$result = $out;
}
my $cache_driver = $app->{cache_driver};
$cache_driver->set( $app->{cache_keys}{result},
$out, $app->config->SearchCacheTTL );
}
sub _log_search {
my ( $cb, $app, $count_ref, $iter_ref ) = @_;
#FIXME: template name may not be 'feed' for search feed
unless ( $app->param('template')
&& ( 'feed' eq $app->param('template') ) )
{
my $blog_id = $app->first_blog_id();
require MT::Log;
$app->log(
{ message => $app->translate(
"Search: query for '[_1]'",
$app->{search_string}
),
level => MT::Log::INFO(),
class => 'search',
category => 'straight_search',
$blog_id ? ( blog_id => $blog_id ) : ()
}
);
}
}
sub template_paths {
my $app = shift;
my @paths = $app->SUPER::template_paths;
( $app->config->SearchTemplatePath, @paths );
}
sub first_blog_id {
my $app = shift;
my $q = $app->param;
my $blog_id;
if ( $q->param('IncludeBlogs') ) {
my @ids = split ',', $q->param('IncludeBlogs');
$blog_id = $ids[0];
}
elsif ( exists( $app->{searchparam}{IncludeBlogs} )
&& keys( %{ $app->{searchparam}{IncludeBlogs} } ) )
{
my @blog_ids = keys %{ $app->{searchparam}{IncludeBlogs} };
$blog_id = $blog_ids[0] if @blog_ids;
}
$blog_id;
}
sub prepare_context {
my $app = shift;
my $q = $app->param;
my ( $count, $iter ) = @_;
## Initialize and set up the context object.
require MT::Template::Context::Search;
my $ctx = MT::Template::Context::Search->new;
if ( my $str = $app->{search_string} ) {
$ctx->stash( 'search_string', encode_html($str) );
}
if ( $q->param('type') ) {
$ctx->stash( 'type', $app->{searchparam}{Type} );
}
if ( $app->{default_mode} ne $app->mode ) {
$ctx->stash( 'mode', $app->mode );
}
if ( my $template = $q->param('Template') ) {
$template =~ s/[^\w\-\.]//g;
$ctx->stash( 'template_id', $template );
}
$ctx->stash( 'stash_key', $app->{searchparam}{Type} );
$ctx->stash( 'maxresults', $app->{searchparam}{SearchMaxResults} );
$ctx->stash( 'include_blogs', join ',',
keys %{ $app->{searchparam}{IncludeBlogs} } );
$ctx->stash( 'results', $iter );
$ctx->stash( 'count', $count );
$ctx->stash( 'offset',
$q->param('startIndex') || $q->param('offset') || 0 );
$ctx->stash( 'limit', $q->param('count') || $q->param('limit') );
$ctx->stash( 'format', $q->param('format') ) if $q->param('format');
my $blog_id = $app->first_blog_id();
if ($blog_id) {
my $blog = $app->model('blog')->load($blog_id);
$app->blog($blog);
$ctx->stash( 'blog_id', $blog_id );
$ctx->stash( 'blog', $blog );
}
$ctx;
}
sub load_search_tmpl {
my $app = shift;
my $q = $app->param;
my ($ctx) = @_;
my $tmpl;
if ( $q->param('Template') && ( 'default' ne $q->param('Template') ) ) {
# load specified template
my $filename;
if (my @tmpls = (
$app->config->default('SearchAltTemplate'),
$app->config->SearchAltTemplate
)
)
{
for my $tmpl (@tmpls) {
next unless defined $tmpl;
my ( $nickname, $file ) = split /\s+/, $tmpl;
if ( $nickname eq $q->param('Template') ) {
$filename = $file;
last;
}
}
}
return $app->errtrans(
"No alternate template is specified for the Template '[_1]'",
encode_html( $q->param('Template') ) )
unless $filename;
# template_paths method does the magic
$tmpl = $app->load_tmpl($filename)
or
return $app->errtrans( "Opening local file '[_1]' failed: [_2]",
$filename, "$!" );
}
else {
# load default template
# first look for appropriate blog_id
if ( my $blog_id = $ctx->stash('blog_id') ) {
# look for 'search_results'
my $tmpl_class = $app->model('template');
$tmpl = $tmpl_class->load(
{ blog_id => $blog_id, type => 'search_results' } );
}
unless ($tmpl) {
# load template from search_template path
# template_paths method does the magic
$tmpl = $app->load_tmpl( $app->config->SearchDefaultTemplate );
}
}
return $app->error( $app->errstr )
unless $tmpl;
$ctx->var( 'system_template', '1' );
$ctx->var( 'search_results', '1' );
$tmpl->context($ctx);
$tmpl;
}
sub render {
my $app = shift;
my ( $count, $iter ) = @_;
my @arguments = $app->prepare_context( $count, $iter )
or return $app->error( $app->errstr );
my $tmpl = $app->load_search_tmpl(@arguments)
or return $app->error( $app->errstr );
$tmpl;
}
sub renderjs {
my $app = shift;
my ( $count, $iter ) = @_;
my ($ctx) = $app->prepare_context( $count, $iter )
or return $app->json_error( $app->errstr );
my $search_tmpl = $app->load_search_tmpl($ctx)
or return $app->json_error( $app->errstr );
my $result_node = $search_tmpl->getElementById('search_results')
or return $app->json_error(
'Search template does not have markup for search results.');
my $t = $result_node->innerHTML();
require MT::Template;
my $tmpl = MT::Template->new( type => 'scalarref', source => \$t );
$ctx->stash( 'format', q() ); # don't propagate "js" format
$tmpl->context($ctx);
my $content = $tmpl->output
or return $app->json_error( $tmpl->errstr );
my $next_link = $ctx->_hdlr_next_link();
return $app->json_result(
{ content => $content, next_url => $next_link } );
}
sub query_parse {
my $app = shift;
my (%columns) = @_;
my $search = $app->{search_string};
my $reg
= $app->registry( $app->mode, 'types', $app->{searchparam}{Type} );
my $filter_types = $reg->{'filter_types'};
foreach my $type ( keys %$filter_types ) {
if ( my $filter = $app->param($type) ) {
$search .= " $type:$filter";
}
}
require Lucene::QueryParser;
my $lucene_struct = eval { Lucene::QueryParser::parse_query($search); };
return if $@;
my ( $terms, $joins )
= $app->_query_parse_core( $lucene_struct, \%columns, $filter_types );
my $return = { $terms && @$terms ? ( terms => $terms ) : () };
if ( $joins && @$joins ) {
my $args = {};
_create_join_arg( $args, $joins );
if ( $args && %$args ) {
$return->{args} = $args;
}
}
$return;
}
sub _create_join_arg {
my ( $args, $joins ) = @_;
my $join = shift @$joins;
return unless $join && @$join;
my $next = $join->[3];
if ( defined $next ) {
if ( exists $next->{'join'} ) {
$next = $next->{'join'}->[3];
}
}
else {
$next = {};
$join->[3] = $next;
}
_create_join_arg( $next, $joins );
$args->{'join'} = $join;
}
sub _query_parse_core {
my $app = shift;
my ( $lucene_struct, $columns, $filter_types ) = @_;
my $rvalue = sub {
my %rvalues = (
REQUIREDlike => { like => '%' . $_[1] . '%' },
REQUIRED1 => $_[1],
NORMALlike => { like => '%' . $_[1] . '%' },
NORMAL1 => $_[1],
PROHIBITEDlike => { not_like => '%' . $_[1] . '%' },
PROHIBITED1 => { not => $_[1] }
);
$rvalues{ $_[0] };
};
my ( @structure, @joins );
while ( my $term = shift @$lucene_struct ) {
if ( exists $term->{field} ) {
unless ( exists $columns->{ $term->{field} } ) {
if ( $filter_types
&& %$filter_types
&& !exists( $filter_types->{ $term->{field} } ) )
{
# Colon in query but was not to specify a field.
# Treat it as a phrase including the colon.
my $field = delete $term->{field};
$term->{term} = $field . ':' . $term->{term};
unshift @$lucene_struct, $term;
}
}
}
my @tmp;
if ( ( 'TERM' eq $term->{query} ) || ( 'PHRASE' eq $term->{query} ) )
{
my $test;
if ( exists( $term->{field} ) ) {
if ( $filter_types
&& %$filter_types
&& exists( $filter_types->{ $term->{field} } ) )
{
my $code = $app->handler_to_coderef(
$filter_types->{ $term->{field} } );
if ($code) {
my $join_args = $code->( $app, $term );
push @joins, $join_args;
next;
}
}
elsif ( exists $columns->{ $term->{field} } ) {
my $test = $rvalue->(
( $term->{type} || '' )
. $columns->{ $term->{field} },
$term->{term}
);
push @tmp, { $term->{field} => $test };
}
}
else {
my @cols = keys %$columns;
my $number = scalar @cols;
for ( my $i = 0; $i < $number; $i++ ) {
my $test = $rvalue->(
( $term->{type} || '' ) . $columns->{ $cols[$i] },
$term->{term}
);
if ( 'PROHIBITED' eq $term->{type} ) {
my @this_term;
push @this_term, { $cols[$i] => $test };
push @this_term, '-or';
push @this_term, { $cols[$i] => \' IS NULL' };
push @tmp, \@this_term;
unless ( $i == $number - 1 ) {
push @tmp, '-and';
}
}
else {
push @tmp, { $cols[$i] => $test };
unless ( $i == $number - 1 ) {
push @tmp, '-or';
}
}
}
}
}
elsif ( 'SUBQUERY' eq $term->{query} ) {
my ( $test, $more_joins )
= $app->_query_parse_core( $term->{subquery}, $columns,
$filter_types );
next unless $test && @$test;
if (@structure) {
push @structure, 'PROHIBITED' eq $term->{type}
? '-and_not'
: '-and';
}
push @structure, @$test;
push @joins, @$more_joins;
next;
}
if ( exists( $term->{conj} ) && ( 'OR' eq $term->{conj} ) ) {
if ( my $prev = pop @structure ) {
push @structure, [ $prev, -or => \@tmp ];
}
}
else {
if (@structure) {
push @structure, '-and';
}
push @structure, \@tmp;
}
}
( \@structure, \@joins );
}
# add category filter to entry search
sub _join_category {
my ( $app, $term ) = @_;
my $query = $term->{term};
if ( 'PHRASE' eq $term->{query} ) {
$query =~ s/'/"/g;
}
my $lucene_struct = Lucene::QueryParser::parse_query($query);
if ( 'PROHIBITED' eq $term->{type} ) {
$_->{type} = 'PROHIBITED' foreach @$lucene_struct;
}
# search for exact match
my ($terms)
= $app->_query_parse_core( $lucene_struct, { label => 1 }, {} );
return unless $terms && @$terms;
push @$terms, '-and',
{
id => \'= placement_category_id',
blog_id => \'= entry_blog_id',
};
require MT::Placement;
require MT::Category;
return MT::Placement->join_on(
undef,
{ entry_id => \'= entry_id', blog_id => \'= entry_blog_id' },
{ join => MT::Category->join_on( undef, $terms, {} ),
unique => 1
}
);
}
# add author filter to entry search
sub _join_author {
my ( $app, $term ) = @_;
my $query = $term->{term};
if ( 'PHRASE' eq $term->{query} ) {
$query =~ s/'/"/g;
}
my $lucene_struct = Lucene::QueryParser::parse_query($query);
if ( 'PROHIBITED' eq $term->{type} ) {
$_->{type} = 'PROHIBITED' foreach @$lucene_struct;
}
my ($terms)
= $app->_query_parse_core( $lucene_struct, { nickname => 'like' },
{} );
return unless $terms && @$terms;
push @$terms, '-and', { id => \'= entry_author_id', };
require MT::Author;
return MT::Author->join_on( undef, $terms, { unique => 1 } );
}
# throttling related methods
sub throttle_control {
my $app = shift;
my ($messages) = @_;
my $result;
$app->run_callbacks( 'prepare_throttle', $app, \$result, $messages );
$result;
}
sub throttle_response {
my $app = shift;
my ($messages) = @_;
my $tmpl = $app->param('Template') || '';
if ( $tmpl eq 'feed' ) {
$app->response_code(503);
$app->set_header(
'Retry-After' => $app->config->SearchThrottleSeconds );
$app->send_http_header("text/plain");
$app->{no_print_body} = 1;
}
my $msg
= $messages && @$messages
? join '; ', @$messages
: $app->translate(
'The search you conducted has timed out. Please simplify your query and try again.'
);
return $app->error($msg);
}
sub _default_throttle {
my ( $cb, $app, $result, $messages ) = @_;
# Don't bother if a callback proiritized higher
# set up its throttle already
return $$result if defined $$result;
## Get login information if user is logged in (via cookie).
## If no login cookie, this fails silently, and that's fine.
( $app->{user} ) = $app->login;
## Don't throttle MT registered users
if ( $app->{user} && $app->{user}->type == MT::Author::AUTHOR() ) {
$$result = 1;
return 1;
}
my $ip = $app->remote_ip;
my $whitelist = $app->config->SearchThrottleIPWhitelist;
if ($whitelist) {
# check for $ip in $whitelist
my @list = split /(\s*[,;]\s*|\s+)/, $whitelist;
foreach (@list) {
next unless $_ =~ m/^\d{1,3}(\.\d{0,3}){0,3}$/;
if ( ( $ip eq $_ ) || ( $ip =~ m/^\Q$_\E/ ) ) {
$$result = 1;
return 1;
}
}
}
unless ( $^O eq 'Win32' ) {
# Use SIGALRM to stop processing in 5 seconds for each request
$SIG{ALRM} = sub {
my $msg
= $app->translate(
'The search you conducted has timed out. Please simplify your query and try again.'
);
$app->error($msg);
die $msg;
};
$app->{__have_throttle} = 1;
alarm( $app->config->SearchThrottleSeconds );
$$result = 1;
}
1;
}
sub _default_takedown {
my ( $cb, $app ) = @_;
alarm(0) if $app->{__have_throttle};
if ( my $cache_driver = $app->{cache_driver} ) {
$cache_driver->purge_stale( 2 * $app->config->SearchCacheTTL );
}
1;
}
1;
__END__
=head1 NAME
MT::App::Search
=head1 Callbacks
Callbacks called by the package are as follows:
=over 4
=item search_post_execute
callback($cb, $app, \$count, \$iter)
Called immediately after the search from the database (or however
search executed depending on the algorithm).
=item search_post_render
callback($cb, $app, $count, $out_html)
Called immediately after the search template was loaded and its
context populated.
=item search_cache_hit
callback($cb, $app, $count, $out_html)
Called immediately after cached results was retrieved.
=item search_blog_list
callback($cb, $app, \%list, \$processed)
Called during init_request in which a plugin can fill %list.
The list must has the following data structure.
%list = ( 1 => 1, 2 => 1, 3 => 1 );
where the hash keys (1, 2, and 3) are the IDs of the blogs to search for.
Plugins must also set $processed = 1 in order to specify the app that
the app must not overwrite the blog list created by the plugin.
=item prepare_throttle
callback($cb, $app, \$result, \@messages);
Called right before the beginning of the search processing.
Each callback should see if certain condition is met, and
set 0 to $$result if the request should be throttled.
There can be more than one throttling method set up.
Callbacks are called in order of priority set up when add_callback
was called. Each callback should start its own code by something like
below, to prevent itself overwriting throttle set up in the callback
whose priority is higher than itself.
return $$result if defined $$result;
=head1 AUTHOR & COPYRIGHT
Please see L<MT/AUTHOR & COPYRIGHT>.
=cut
|