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
|
# 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: Legacy.pm 2740 2008-07-09 06:02:48Z fumiakiy $
# Original Copyright 2001-2002 Jay Allen.
# Modifications and integration Copyright 2001-2008 Six Apart.
package MT::App::Search::Legacy;
use strict;
use base qw( MT::App );
use File::Spec;
use MT::Util qw(encode_html ts2epoch epoch2ts);
use HTTP::Date qw(str2time time2str);
sub id { 'search' }
sub init {
my $app = shift;
$app->SUPER::init(@_) or return;
$app->set_no_cache;
$app->add_methods( search => \&execute );
$app->{default_mode} = 'search';
$app;
}
sub load_core_tags {
require MT::Template::Context;
return {
function => {
SearchString => \&MT::App::Search::Context::_hdlr_search_string,
SearchResultCount => \&MT::App::Search::Context::_hdlr_result_count,
MaxResults => \&MT::App::Search::Context::_hdlr_max_results,
SearchIncludeBlogs => \&MT::App::Search::Context::_hdlr_include_blogs,
SearchTemplateID => \&MT::App::Search::Context::_hdlr_template_id,
},
block => {
SearchResults => \&MT::App::Search::Context::_hdlr_results,
'IfTagSearch?' => sub { MT->instance->{searchparam}{Type} eq 'tag' },
'IfStraightSearch?' => sub { MT->instance->{searchparam}{Type} eq 'straight' },
NoSearchResults => \&MT::Template::Context::_hdlr_pass_tokens,
NoSearch => \&MT::Template::Context::_hdlr_pass_tokens,
BlogResultHeader => \&MT::Template::Context::_hdlr_pass_tokens,
BlogResultFooter => \&MT::Template::Context::_hdlr_pass_tokens,
IfMaxResultsCutoff => \&MT::Template::Context::_hdlr_pass_tokens,
},
};
}
sub init_request{
my $app = shift;
$app->SUPER::init_request(@_);
foreach (qw(searchparam templates search_string results
user __have_throttle)) {
delete $app->{$_} if exists $app->{$_}
}
my $q = $app->param;
my $cfg = $app->config;
my $tag = $q->param('tag') || '';
$app->param('Type', 'tag') if $tag;
$app->param('search', $tag) if $tag;
my $blog_id = $q->param('blog_id') || '';
my $include_blog_id = $q->param('IncludeBlogs') || '';
unless ($include_blog_id){
$app->param('IncludeBlogs', $blog_id) if $blog_id;
}
## 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;
## Check whether IP address has searched in the last
## minute which is still progressing. If so, block it.
return $app->throttle_response() unless $app->throttle_control();
my %no_override = map { $_ => 1 } split /\s*,\s*/, $cfg->NoOverride;
## Combine user-selected included/excluded blogs
## with config file settings.
for my $type (qw( IncludeBlogs ExcludeBlogs )) {
$app->{searchparam}{$type} = { };
if (my $list = $cfg->$type()) {
$app->{searchparam}{$type} =
{ map { $_ => 1 } split /\s*,\s*/, $list };
}
next if $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;
$app->{searchparam}{$type}{$id} = 1;
}
} else {
$blog_id =~ s/\D+//g; # only numeric values.
$app->{searchparam}{$type}{$blog_id} = 1;
}
}
}
## 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.
if (!keys %{ $app->{searchparam}{IncludeBlogs} }) {
my $exclude = $app->{searchparam}{ExcludeBlogs};
require MT::Blog;
my $iter = MT::Blog->load_iter;
while (my $blog = $iter->()) {
$app->{searchparam}{IncludeBlogs}{$blog->id} = 1
unless $exclude && $exclude->{$blog->id};
}
}
## Set other search params--prefer per-query setting, default to
## config file.
for my $key (qw( RegexSearch CaseSearch ResultDisplay SearchCutoff
CommentSearchCutoff ExcerptWords SearchElement
Type MaxResults SearchSortBy )) {
$app->{searchparam}{$key} = $no_override{$key} ?
$cfg->$key() : ($q->param($key) || $cfg->$key());
}
$app->{searchparam}{entry_type} = $q->param('type');
$app->{searchparam}{Template} = $q->param('Template') ||
($app->{searchparam}{Type} eq 'newcomments' ? 'comments' : 'default');
## Define alternate user templates from config file
if (my @tmpls = ($cfg->default('AltTemplate'), $cfg->AltTemplate)) {
for my $tmpl (@tmpls) {
next unless defined $tmpl;
my($nickname, $file) = split /\s+/, $tmpl;
$app->{templates}{$nickname} = $file;
}
}
$app->{templates}{default} = $cfg->DefaultTemplate;
$app->{searchparam}{SearchTemplatePath} = $cfg->SearchTemplatePath;
## Set search_string (for display only)
if ( ( $app->{searchparam}{Type} eq 'straight' )
|| ( $app->{searchparam}{Type} eq 'tag' ) ) {
if ($q->param('search')) {
$app->{search_string} = $q->param('search');
$app->{search_string_decoded} = MT::I18N::decode(
$app->config->PublishCharset,
$app->{search_string}
);
} else {
$app->{search_string} = $app->{search_string_decoded} = q();
}
}
}
sub throttle_response {
my $app = shift;
my $tmpl = $app->param('Template') || '';
my $msg = $app->translate(
"You are currently performing a search. Please wait " .
"until your search is completed.");
if ($tmpl eq 'feed') {
$app->response_code(503);
$app->set_header('Retry-After' => $app->config('ThrottleSeconds'));
$app->send_http_header("text/plain");
$app->{no_print_body} = 1;
}
return $app->error($msg);
}
sub throttle_control {
my $app = shift;
# Don't throttle MT registered users
return 1 if $app->{user} && $app->{user}->type == MT::Author::AUTHOR();
my $type = $app->param('Type') || '';
# Don't throttle tag listings
return 1 if $type eq 'tag';
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/)) {
return 1;
}
}
}
if (eval { require DB_File; 1 }) {
my $file = File::Spec->catfile($app->config('TempDir'), 'mt-throttle.db');
my $DB = tie my %db, 'DB_File', $file;
if ($DB) {
if (my $time = $db{$ip}) {
if ($time > time - $app->config('ThrottleSeconds')) {
return 0;
}
}
$db{$ip} = time;
undef $DB;
untie %db;
$app->{__have_throttle} = 1;
}
}
1;
}
sub takedown {
my $app = shift;
if ($app->{__have_throttle}) {
my $file = File::Spec->catfile($app->config('TempDir'),
'mt-throttle.db');
if (tie my %db, 'DB_File', $file) {
my $time = $db{$app->remote_ip};
delete $db{$app->remote_ip} if ($time && $time < (time - $app->config('ThrottleSeconds')));
untie %db;
}
}
$app->SUPER::takedown(@_);
}
sub execute {
my $app = shift;
return $app->error($app->errstr) if $app->errstr;
my @results;
if ($app->{searchparam}{RegexSearch}) {
eval { m/$app->{search_string}/ };
return $app->error($app->translate("Search failed. Invalid pattern given: [_1]", $@))
if $@;
}
if ($app->{searchparam}{Type} eq 'newcomments') {
$app->_new_comments
or return $app->error($app->translate(
"Search failed: [_1]", $app->errstr));
@results = $app->{results} ? @{ $app->{results} } : ();
} elsif ($app->{searchparam}{Type} eq 'tag') {
$app->_tag_search
or return $app->error($app->translate(
"Search failed: [_1]", $app->errstr));
my $col = $app->{searchparam}{SearchSortBy};
my $order = $app->{searchparam}{ResultDisplay} || 'ascend';
for my $blog (sort keys %{ $app->{results} }) {
my @res = @{ $app->{results}{$blog} };
if ($col) {
@res = $order eq 'ascend' ?
sort { $a->{entry}->$col() cmp $b->{entry}->$col() } @res :
sort { $b->{entry}->$col() cmp $a->{entry}->$col() } @res;
}
$res[0]{blogheader} = 1;
my $max = $#res;
$res[$max]{blogfooter} = 1;
push @results, @res;
}
} else {
$app->_straight_search
or return $app->error($app->translate(
"Search failed: [_1]", $app->errstr));
## Results are stored per-blog, so we sort the list of blogs by name,
## then add in the results to the final list.
my $col = $app->{searchparam}{SearchSortBy};
my $order = $app->{searchparam}{ResultDisplay} || 'ascend';
for my $blog (sort keys %{ $app->{results} }) {
my @res = @{ $app->{results}{$blog} };
if ($col) {
@res = $order eq 'ascend' ?
sort { $a->{entry}->$col() cmp $b->{entry}->$col() } @res :
sort { $b->{entry}->$col() cmp $a->{entry}->$col() } @res;
}
$res[0]{blogheader} = 1;
my $max = $#res;
$res[$max]{blogfooter} = 1;
push @results, @res;
}
}
## We need to put a blog in context so that includes and <$MTBlog*$>
## tags will work, if they are used. So we choose the first blog in
## the result list. If there is no result list, just load the first
## blog from the database.
my($blog);
my $include = $app->param('IncludeBlogs') || '';
$include =~ s/[^\d,]//g;
if ($include) {
my @blog_ids = split ',', $include;
$blog = MT::Blog->load($blog_ids[0]);
} else {
if (@results) {
$blog = $results[0]{blog};
}
if (!$blog) {
$blog = MT::Blog->load($app->param('blog_id'));
}
$include = $blog->id if $blog;
}
return $app->error($app->translate('Invalid request.'))
unless $blog;
## Initialize and set up the context object.
my $ctx = MT::App::Search::Context->new;
$ctx->stash('blog', $blog);
$ctx->stash('blog_id', $blog->id);
$ctx->stash('results', \@results);
$ctx->stash('user', $app->{user});
$ctx->stash('include_blogs', $include);
if (my $str = $app->{search_string}) {
$ctx->stash('search_string', encode_html($str));
}
$ctx->stash('template_id', $app->{searchparam}{Template});
my $maxresults = $app->{searchparam}{MaxResults} || '';
$maxresults =~ s/\D//g;
$app->{searchparam}{MaxResults} = $maxresults;
$ctx->stash('maxresults', $maxresults);
$ctx->var( 'page_layout', $blog->page_layout )
if $blog && $blog->page_layout;
if (my $layout = $ctx->var('page_layout')) {
my $columns = {
'layout-wt' => 2,
'layout-tw' => 2,
'layout-wm' => 2,
'layout-mw' => 2,
'layout-wtt' => 3,
'layout-twt' => 3,
}->{$layout};
$ctx->var( 'page_columns', $columns ) if $columns;
}
my $str;
if ($include) {
if ($app->{searchparam}{Template} eq 'default') {
# look for a 'search_results'
my ($blog_id) = split ',', $include;
require MT::Template;
my $tmpl = MT::Template->load({blog_id => $blog_id, type => 'search_results'});
$str = $tmpl->text if $tmpl;
}
}
if (!$str) {
## Load the search template.
my $tmpl_file = $app->{templates}{ $app->{searchparam}{Template} }
or return $app->error($app->translate("No alternate template is specified for the Template '[_1]'", $app->{searchparam}{Template}));
my $tmpl = File::Spec->catfile($app->{searchparam}{SearchTemplatePath},
$tmpl_file);
local *FH;
open FH, $tmpl
or return $app->error($app->translate(
"Opening local file '[_1]' failed: [_2]", $tmpl, "$!" ));
{ local $/; $str = <FH> };
close FH;
}
$str = $app->translate_templatized($str);
my $ifmax;
my $max;
if (($app->{searchparam}{MaxResults}) && ($app->{searchparam}{MaxResults} != 9999999)) {
$max = $app->{searchparam}{MaxResults};
$ifmax = 1;
} else {
$ifmax = $max = 0;
}
## Compile and build the search template with results.
require MT::Builder;
my $build = MT::Builder->new;
my $tokens = $build->compile($ctx, $str)
or return $app->error($app->translate(
"Publishing results failed: [_1]", $build->errstr));
defined(my $res = $build->build($ctx, $tokens, {
NoSearch => $app->{query}->param('help') ||
($app->{searchparam}{Type} ne 'newcomments' &&
(!$ctx->stash('search_string') ||
$ctx->stash('search_string') !~ /\S/)) ? 1 : 0,
NoSearchResults => $ctx->stash('search_string') &&
$ctx->stash('search_string') =~ /\S/ &&
!scalar @results,
SearchResults => scalar @results,
} ))
or return $app->error($app->translate(
"Publishing results failed: [_1]", $ctx->errstr));
$res = $app->_set_form_elements($res);
if (defined($ctx->stash('content_type'))) {
$app->{no_print_body} = 1;
if ($app->{searchparam}{Template} eq 'feed') {
my $last_update;
for (@results) {
my $authored_on = ts2epoch($_->{blog}, $_->{entry}->authored_on);
$last_update = $authored_on if $authored_on > $last_update;
}
my $mod_since = $app->get_header('If-Modified-Since');
if ( !@results || ($last_update && $mod_since && ($last_update <= str2time($mod_since))) ) {
$app->response_code(304);
$app->response_message('Not Modified');
$app->send_http_header($ctx->stash('content_type'));
} else {
$app->set_header('Last-Modified', time2str($last_update)) if $last_update;
$app->send_http_header($ctx->stash('content_type'));
$app->print($res);
}
} else {
$app->send_http_header($ctx->stash('content_type'));
$app->print($res);
}
}
$res;
}
sub _tag_search {
my $app = shift;
return 1 unless $app->{search_string} =~ /\S/;
# since this technically isn't a search, but a dynamic view
# of data, suppress logging...
#require MT::Log;
#$app->log({
# message => $app->translate("Search: query for '[_1]'",
# $app->{search_string}),
# level => MT::Log::INFO(),
# class => 'search',
# category => 'tag_search',
#});
require MT::Entry;
my %terms = (status => MT::Entry::RELEASE());
my %args = (direction => $app->{searchparam}{ResultDisplay},
'sort' => 'authored_on');
require MT::Tag;
require MT::ObjectTag;
my $tags = $app->{search_string};
my @tag_names = MT::Tag->split(',', $tags);
my %tags = map { $_ => 1, MT::Tag->normalize($_) => 1 } @tag_names;
my @tags = MT::Tag->load({ name => [ keys %tags ] });
my @tag_ids;
foreach (@tags) {
push @tag_ids, $_->id;
my @more = MT::Tag->load({ n8d_id => $_->n8d_id ? $_->n8d_id : $_->id });
push @tag_ids, $_->id foreach @more;
}
@tag_ids = ( 0 ) unless @tags;
$args{'join'} = ['MT::ObjectTag', 'object_id',
{ tag_id => \@tag_ids, object_datasource => MT::Entry->datasource }, { unique => 1 } ];
## Load available blogs and iterate through entries looking for search term
require MT::Util;
require MT::Blog;
require MT::Entry;
# Override SearchCutoff if If-Modified-Since header is present
if ((my $mod_since = $app->get_header('If-Modified-Since')) && $app->{searchparam}{Template} eq 'feed') {
my $tz_offset = 15; # Start with maximum possible offset to UTC
my $blog_selected;
my $iter;
if ($app->{searchparam}{IncludeBlogs}) {
$iter = MT::Blog->load_iter({ id => [ keys %{ $app->{searchparam}{IncludeBlogs} }] });
} else {
$iter = MT::Blog->load_iter;
}
while (my $blog = $iter->()) {
my $blog_offset = $blog->server_offset ?
$blog->server_offset : 0;
if ($blog_offset < $tz_offset) {
$tz_offset = $blog_offset;
$blog_selected = $blog;
}
}
$mod_since = epoch2ts($blog_selected, str2time($mod_since));
$terms{authored_on} = [ $mod_since ];
$args{range} = { authored_on => 1 };
} else {
if ($app->{searchparam}{SearchCutoff} &&
$app->{searchparam}{SearchCutoff} != 9999999) {
my @ago = MT::Util::offset_time_list(time - 3600 * 24 *
$app->{searchparam}{SearchCutoff});
my $ago = sprintf "%04d%02d%02d%02d%02d%02d",
$ago[5]+1900, $ago[4]+1, @ago[3,2,1,0];
$terms{authored_on} = [ $ago ];
$args{range} = { authored_on => 1 };
}
}
if (keys %{ $app->{searchparam}{IncludeBlogs} }) {
$terms{blog_id} = [ keys %{ $app->{searchparam}{IncludeBlogs} } ];
}
$terms{class} = $app->{searchparam}{entry_type} || '*';
my $iter = MT::Entry->load_iter(\%terms, \%args);
my(%blogs, %hits);
my $max = $app->{searchparam}{MaxResults};
while (my $entry = $iter->()) {
my $blog_id = $entry->blog_id;
if ($hits{$blog_id} && $hits{$blog_id} >= $max) {
my $blog = $blogs{$blog_id} || MT::Blog->load($blog_id)
or next;
my @res = @{ $app->{results}{$blog->name} };
my $count = $#res;
$res[$count]{maxresults} = $max;
next;
}
if ($app->_search_hit($entry)) {
my $blog = $blogs{$blog_id} || MT::Blog->load($blog_id);
$app->_store_hit_data($blog, $entry, $hits{$blog_id}++) if $blog;
}
}
1;
}
sub _straight_search {
my $app = shift;
return 1 unless $app->{search_string} =~ /\S/;
## Parse, tokenize and optimize the search query.
$app->query_parse;
## Load available blogs and iterate through entries looking for search term
require MT::Util;
require MT::Blog;
require MT::Entry;
my %terms = (status => MT::Entry::RELEASE());
my %args = (direction => $app->{searchparam}{ResultDisplay},
'sort' => 'authored_on');
# Override SearchCutoff if If-Modified-Since header is present
if ((my $mod_since = $app->get_header('If-Modified-Since')) && $app->{searchparam}{Template} eq 'feed') {
my $tz_offset = 15; # Start with maximum possible offset to UTC
my $blog_selected;
my $iter;
if ($app->{searchparam}{IncludeBlogs}) {
$iter = MT::Blog->load_iter({ id => [ keys %{ $app->{searchparam}{IncludeBlogs} }] });
} else {
$iter = MT::Blog->load_iter;
}
while (my $blog = $iter->()) {
my $blog_offset = $blog->server_offset ?
$blog->server_offset : 0;
if ($blog_offset < $tz_offset) {
$tz_offset = $blog_offset;
$blog_selected = $blog;
}
}
$mod_since = epoch2ts($blog_selected, str2time($mod_since));
$terms{authored_on} = [ $mod_since ];
$args{range} = { authored_on => 1 };
} else {
if ($app->{searchparam}{SearchCutoff} &&
$app->{searchparam}{SearchCutoff} != 9999999) {
my @ago = MT::Util::offset_time_list(time - 3600 * 24 *
$app->{searchparam}{SearchCutoff});
my $ago = sprintf "%04d%02d%02d%02d%02d%02d",
$ago[5]+1900, $ago[4]+1, @ago[3,2,1,0];
$terms{authored_on} = [ $ago ];
$args{range} = { authored_on => 1 };
}
}
if (keys %{ $app->{searchparam}{IncludeBlogs} }) {
$terms{blog_id} = [ keys %{ $app->{searchparam}{IncludeBlogs} } ];
}
my $blog_id;
if ($terms{blog_id} && (scalar(@{ $terms{blog_id} }) == 1)) {
$blog_id = $terms{blog_id}[0];
}
#FIXME: template name may not be 'feed' for search feed
unless ($app->{searchparam}{Template} eq 'feed') {
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) : ()
});
}
$terms{class} = $app->{searchparam}{entry_type} || '*';
my $iter = MT::Entry->load_iter(\%terms, \%args);
my(%blogs, %hits);
my $max = $app->{searchparam}{MaxResults};
while (my $entry = $iter->()) {
my $blog_id = $entry->blog_id;
if ($hits{$blog_id} && $hits{$blog_id} >= $max) {
my $blog = $blogs{$blog_id} || MT::Blog->load($blog_id);
my @res = @{ $app->{results}{$blog->name} };
my $count = $#res;
$res[$count]{maxresults} = $max;
next;
}
if ($app->_search_hit($entry)) {
my $blog = $blogs{$blog_id} || MT::Blog->load($blog_id);
$app->_store_hit_data($blog, $entry, $hits{$blog_id}++);
}
}
1;
}
sub _new_comments {
my $app = shift;
return 1 if $app->param('help');
require MT::Log;
$app->log({
message => $app->translate("Search: new comment search"),
level => MT::Log::INFO(),
class => 'search',
category => 'comment_search'
});
require MT::Entry;
require MT::Blog;
require MT::Util;
my %args = ('join' => [
'MT::Comment', 'entry_id', { visible => 1 },
{ 'sort' => 'created_on',
direction => 'descend',
unique => 1, }
]);
if ($app->{searchparam}{CommentSearchCutoff} &&
$app->{searchparam}{CommentSearchCutoff} != 9999999) {
my @ago = MT::Util::offset_time_list(time - 3600 * 24 *
$app->{searchparam}{CommentSearchCutoff});
my $ago = sprintf "%04d%02d%02d%02d%02d%02d",
$ago[5]+1900, $ago[4]+1, @ago[3,2,1,0];
$args{'join'}->[2]{created_on} = [ $ago ];
$args{'join'}->[3]{range} = { created_on => 1 };
} elsif ($app->{searchparam}{MaxResults} &&
$app->{searchparam}{MaxResults} != 9999999) {
$args{limit} = $app->{searchparam}{MaxResults};
}
my %terms = ( status => MT::Entry::RELEASE() );
$terms{class} = $app->{searchparam}{entry_type} || '*';
my $iter = MT::Entry->load_iter(\%terms, \%args);
my %blogs;
my $include = $app->{searchparam}{IncludeBlogs};
while (my $entry = $iter->()) {
next unless $include->{ $entry->blog_id };
my $blog = $blogs{ $entry->blog_id } || MT::Blog->load($entry->blog_id);
$app->_store_hit_data($blog, $entry);
}
1;
}
sub _set_form_elements {
my($app, $tmpl) = @_;
## Fill in user-defined template with proper form settings.
if ($app->{searchparam}{Type} eq 'newcomments') {
if ($app->{searchparam}{CommentSearchCutoff}) {
$tmpl =~ s/(<select name="CommentSearchCutoff">.*<option value="$app->{searchparam}{CommentSearchCutoff}")/$1 selected="selected"/si;
} else {
$tmpl =~ s/(<select name="CommentSearchCutoff">.*<option value="9999999")/$1 selected="selected"/si;
}
} else {
if ($app->{searchparam}{SearchCutoff}) {
$tmpl =~ s/(<select name="SearchCutoff">.*<option value="$app->{searchparam}{SearchCutoff}")/$1 selected="selected"/si;
} else {
$tmpl =~ s/(<select name="SearchCutoff">.*<option value="9999999")/$1 selected="selected"/si;
}
if ($app->{searchparam}{CaseSearch}) {
$tmpl =~ s/(<input type="checkbox"[^>]+name="CaseSearch")/$1 checked="checked"/g;
}
if ($app->{searchparam}{RegexSearch}) {
$tmpl =~ s/(<input type="checkbox"[^>]+name="RegexSearch")/$1 checked="checked"/g;
}
$tmpl =~ s/(<input type="radio"[^>]+?$app->{searchparam}{SearchElement}\")/$1 checked="checked"/g;
for my $type (qw( IncludeBlogs ExcludeBlogs )) {
for my $blog_id (keys %{ $app->{searchparam}{$type} }) {
$tmpl =~ s/(<input type="checkbox"[^>]+?$type" value="$blog_id")/$1 checked="checked"/g; #"
}
}
}
if ($app->{searchparam}{MaxResults}) {
$tmpl =~ s/(<select name="MaxResults">.*<option value="$app->{searchparam}{MaxResults}")/$1 selected="selected"/si;
} else {
$tmpl =~ s/(<select name="MaxResults">.*<option value="9999999")/$1 selected="selected"/si;
}
$tmpl;
}
my $decoder_ring;
sub is_a_match {
my($app, $txt) = @_;
use utf8;
unless ($decoder_ring) {
my $enc = $app->config->PublishCharset;
eval {
require Encode;
$decoder_ring = sub { Encode::decode($enc, shift) };
};
if ($@) {
$decoder_ring = sub { MT::I18N::decode($enc, shift) };
}
}
$txt = $decoder_ring->($txt);
if ($app->{searchparam}{RegexSearch}) {
my $keyword = $app->{searchparam}{search_string_decoded};
if ($app->{searchparam}{CaseSearch}) {
return unless $txt =~ m/$keyword/;
} else {
return unless $txt =~ m/$keyword/i;
}
} else {
my $casemod = $app->{searchparam}{CaseSearch} ? '' : '(?i)';
for (@{$app->{searchparam}{search_keys}{AND}}) {
return unless $txt =~ /$casemod$_/;
}
for (@{$app->{searchparam}{search_keys}{NOT}}) {
return if $txt =~ /$casemod$_/;
}
}
1;
}
sub query_parse {
my $app = shift;
return unless $app->{search_string};
use utf8;
#local $_ = MT::I18N::decode_utf8($app->{search_string});
local $_ = $app->{search_string_decoded};
s/^\s//; # Remove leading whitespace
s/\s$//; # Remove trailing whitespace
s/\s+AND\s+/ /g; # Remove AND because it's implied
s/\s{2,}/ /g; # Remove contiguous spaces
my @search_keys;
my @tokens = split;
while (my $atom = shift @tokens) {
my($type);
if ($atom eq 'NOT' || $atom eq 'AND') {
$type = $atom;
$atom = shift @tokens;
$atom = find_phrase($atom, \@tokens) if $atom =~ /^\"/;
} elsif ($atom eq 'OR') {
$atom = shift @tokens;
$atom = find_phrase($atom, \@tokens) if $atom =~ /^\"/;
## OR new atom with last atom
$search_keys[-1]{atom} =
'(?:' . $search_keys[-1]{atom} .'|' . quotemeta($atom) . ')';
next;
} elsif ($atom =~ /^-(.*)/) {
$type = 'NOT';
$atom = $1;
$atom = find_phrase($atom, \@tokens) if $atom =~ /^\"/;
} else {
$type = 'AND';
$atom = find_phrase($atom, \@tokens) if $atom =~ /^\"/;
}
push @search_keys, { atom => quotemeta($atom),
type => $type };
}
$app->{searchparam}{search_keys} = \@search_keys;
$app->query_optimize;
}
sub find_phrase {
my($atom, $tokenref) = @_;
while (my $next = shift @$tokenref) {
$atom = $atom . ' ' . $next;
last if $atom =~ /\"$/;
}
$atom =~ s/^"(.*)"$/$1/;
$atom;
}
sub query_optimize {
my $app = shift;
## Sort keys longest to shortest for search efficiency.
$app->{searchparam}{search_keys} = [
reverse sort { length($a->{atom}) <=> length($b->{atom}) }
@{ $app->{searchparam}{search_keys} }
];
## Sort keys by contents. Any ORs immediately get a lower priority.
my %terms;
for my $key (@{ $app->{searchparam}{search_keys} }) {
if ($key->{atom} =~ /\(.*\|.*\)/) {
push(@{ $terms{$key->{type}}{low} }, $key);
} else {
push(@{ $terms{$key->{type}}{high} }, $key);
}
}
## Final priority: AND long, AND short, AND with OR (long/short),
## NOT long/short
## This should give us the most efficient search in that it is
## searching for the harder-to-match keys first.
my %regex;
for my $type (qw( AND NOT )) {
for my $pri (qw( high low )) {
for my $obj (@{ $terms{$type}{$pri} }) {
push(@{ $regex{$type} }, $obj->{atom});
}
}
}
$app->{searchparam}{search_keys} = \%regex;
}
sub _search_hit {
my($app, $entry) = @_;
my @text_elements;
if ($app->{searchparam}{SearchElement} ne 'comments') {
@text_elements = ($entry->title, $entry->text, $entry->text_more,
$entry->keywords);
}
if ($app->{searchparam}{SearchElement} ne 'entries') {
my $comments = $entry->comments;
for my $comment (@$comments) {
push @text_elements, $comment->text, $comment->author,
$comment->url;
}
}
return 1 if $app->is_a_match(join("\n", map $_ || '', @text_elements));
}
sub _store_hit_data {
my $app = shift;
my($blog, $entry, $banner_seen) = @_;
my %result_data = (blog => $blog);
## Need to create entry excerpt here, because we can't rely on
## the user's per-blog setting.
unless ($entry->excerpt) {
$entry->excerpt($entry->get_excerpt($app->{searchparam}{ExcerptWords}));
}
$result_data{entry} = $entry;
if ($app->{searchparam}{Type} eq 'newcomments') {
push @{ $app->{results} }, \%result_data;
} else {
push(@{ $app->{results}{ $blog->name } }, \%result_data);
}
}
package MT::App::Search::Context;
use strict;
use base qw( MT::Template::Context );
sub _hdlr_include_blogs { $_[0]->stash('include_blogs') || '' }
sub _hdlr_search_string { $_[0]->stash('search_string') || '' }
sub _hdlr_template_id { $_[0]->stash('template_id') || '' }
sub _hdlr_max_results { $_[0]->stash('maxresults') || '' }
sub _hdlr_result_count {
my $results = $_[0]->stash('results');
$results && ref($results) eq 'ARRAY' ? scalar @$results : 0;
}
sub _hdlr_results {
my($ctx, $args, $cond) = @_;
## If there are no results, return the empty string, knowing
## that the handler for <MTNoSearchResults> will fill in the
## no results message.
my $results = $ctx->stash('results') or return '';
my $output = '';
my $build = $ctx->stash('builder');
my $tokens = $ctx->stash('tokens');
for my $res (@$results) {
$ctx->stash('entry', $res->{entry});
local $ctx->{__stash}{blog} = $res->{blog};
$ctx->stash('result', $res);
local $ctx->{current_timestamp} = $res->{entry}->created_on;
defined(my $out = $build->build($ctx, $tokens,
{ %$cond,
BlogResultHeader => $res->{blogheader} ? 1 : 0,
BlogResultFooter => $res->{blogfooter} ? 1 : 0,
IfMaxResultsCutoff => $res->{maxresults} ? 1 : 0,
}
)) or return $ctx->error( $build->errstr );
$output .= $out;
}
$output;
}
1;
__END__
=head1 NAME
MT::App::Search
=head1 AUTHOR & COPYRIGHT
Please see L<MT/AUTHOR & COPYRIGHT>.
=cut
|