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 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
|
# Movable Type (r) Open Source (C) 2001-2012 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id$
package MT::Template::Context;
use strict;
use base qw( MT::ErrorHandler );
use constant FALSE => -99999;
use Exporter;
*import = \&Exporter::import;
use vars qw( @EXPORT );
@EXPORT = qw( FALSE );
use MT::Util qw( weaken );
use MT::Template::Handler;
our ( %Handlers, %Filters );
sub new {
my $class = shift;
require MT::Template::ContextHandlers;
my $ctx = bless {}, $class;
$ctx->init(@_);
}
sub init {
my $ctx = shift;
weaken( $ctx->{config} = MT->config );
$ctx->stash( 'vars', {} );
$ctx->init_handlers();
$ctx;
}
sub clone {
my $ctx = shift;
my $clone = ref($ctx)->new;
for my $key ( keys %{$ctx} ) {
$clone->{$key} = $ctx->{$key};
}
return $clone;
}
sub init_handlers {
my $ctx = shift;
my $mt = MT->instance;
if ( !$mt->{__tag_handlers} ) {
my $h = $mt->{__tag_handlers} = {};
my $f = $mt->{__tag_filters} = {};
my $all_tags = MT::Component->registry('tags');
# Put application-specific handlers in front of 'core'
# tag set (allows MT::App::Search, etc to replace the
# stubbed core handlers)
if ( $mt->isa('MT::App') ) {
my $app_tags = MT->registry( "applications", $mt->id, "tags" );
unshift @$all_tags, $app_tags if $app_tags;
}
for my $tag_set (@$all_tags) {
if ( my $block = $tag_set->{block} ) {
for my $orig_tag ( keys %$block ) {
next if $orig_tag eq 'plugin';
my $tag = lc $orig_tag;
my $type = 1;
# A '?' suffix identifies conditional tags
if ( $tag =~ m/\?$/ ) {
$tag =~ s/\?$//;
$type = 2;
}
# Application level tags should not be overwritten
# by 'core' tags (which may be placeholders, as in the
# case of MT-Search). Non-core plugins can override
# other core routines and application level tags though.
my $prev_hdlr;
if ( exists $h->{$tag} ) {
# a replaced handler
next if ( $block->{plugin}{id} || '' ) eq 'core';
$prev_hdlr = $h->{$tag};
}
if ( ref( $block->{$orig_tag} ) eq 'HASH' ) {
if ( $block->{$orig_tag}{handler} ) {
$h->{$tag} = [
$block->{$orig_tag}{handler}, $type,
$prev_hdlr
];
}
}
else {
$h->{$tag}
= [ $block->{$orig_tag}, $type, $prev_hdlr ];
}
}
}
if ( my $func = $tag_set->{function} ) {
for my $orig_tag ( keys %$func ) {
next if $orig_tag eq 'plugin';
my $tag = lc $orig_tag;
my $prev_hdlr;
if ( exists $h->{$tag} ) {
# a replaced handler
next if ( $func->{plugin}{id} || '' ) eq 'core';
$prev_hdlr = $h->{$tag};
}
if ( ref( $func->{$orig_tag} ) eq 'HASH' ) {
$h->{$tag}
= [ $func->{$orig_tag}{handler}, 0, $prev_hdlr ];
}
else {
$h->{$tag} = [ $func->{$orig_tag}, 0, $prev_hdlr ];
}
}
}
if ( my $mod = $tag_set->{modifier} ) {
for my $orig_mod ( keys %$mod ) {
next if $orig_mod eq 'plugin';
my $modifier = lc $orig_mod;
next
if exists $f->{$modifier}
&& ( $mod->{plugin}{id} || '' ) eq 'core';
$f->{$modifier} = $mod->{$orig_mod};
}
}
}
}
weaken( $ctx->{__handlers} = $mt->{__tag_handlers} );
weaken( $ctx->{__filters} = $mt->{__tag_filters} );
}
sub super_handler {
my ($ctx) = @_;
my $hdlr = $ctx->stash('__handler');
return unless defined $hdlr;
$hdlr->invoke_super(@_);
}
sub stash {
my $ctx = shift;
my $key = shift;
return $ctx->{__stash}->{$key} = shift if @_;
if ( ref $ctx->{__stash}->{$key} eq 'MT::Promise' ) {
return MT::Promise::force( $ctx->{__stash}->{$key} );
}
else {
return $ctx->{__stash}->{$key};
}
}
sub var {
my $ctx = shift;
my $key = lc shift;
if ( $key =~ m/^(config|request)\.(.+)$/i ) {
if ( lc($1) eq 'request' ) {
my $mt = MT->instance;
return '' unless $mt->isa('MT::App');
return $mt->param($2);
}
elsif ( lc($1) eq 'config' ) {
my $setting = $2;
return '' if $setting =~ m/password/i;
return '' if $setting =~ m/secret/i;
return MT->config($setting);
}
return '';
}
my $value = $ctx->{__stash}{vars}{$key};
# protects $_ value set during template attribute interpolation
local $_ = $_;
if ( ref $value eq 'CODE' ) {
$value = $value->($ctx);
}
$ctx->{__stash}{vars}{$key} = shift if @_;
return $value;
}
sub this_tag {
my $ctx = shift;
return 'mt' . lc( $ctx->stash('tag') );
}
sub tag {
my $ctx = shift;
my $tag = lc shift;
my $h = $ctx->handler_for($tag)
or return $ctx->error("No handler for tag $tag");
local $ctx->{__stash}{tag} = $tag;
my ( $args, $cond ) = @_;
$args ||= {};
my $out = $h->invoke( $ctx, $args, $cond );
if ( defined $out ) {
if ( my $ph = $ctx->post_process_handler ) {
$out = $ph->( $ctx, $args, $out );
}
}
return $out;
}
sub handler_for {
my $ctx = shift;
my $tag = lc $_[0];
my $v = $ctx->{__handlers}{$tag};
if ( ref($v) eq 'MT::Template::Handler' ) {
return wantarray ? $v->values : $v;
}
if ( ref($v) eq 'HASH' ) {
$v = $ctx->{__handlers}{$tag} = $v->{handler};
}
if (wantarray) {
my @h = ref($v) eq 'ARRAY' ? @$v : $v;
if ( !ref( $h[0] ) ) {
$h[0] = MT->handler_to_coderef( $h[0] );
if ( ref($v) ) {
$ctx->{__handlers}{$tag}[0] = $h[0];
}
else {
$ctx->{__handlers}{$tag} = $h[0];
}
}
return ref($v) eq 'ARRAY' ? @h : $h[0];
}
else {
my @h = ref($v) eq 'ARRAY' ? @$v : $v;
my $hdlr = MT::Template::Handler->new(@h);
return $ctx->{__handlers}{$tag} = $hdlr;
}
}
sub invoke_handler {
my $ctx = shift;
my $tag = shift;
my $handler = $ctx->handler_for($tag);
die "cannot find handler for $tag" unless $handler;
$handler->invoke( $ctx, @_ );
}
{
my ( @order, %order );
BEGIN {
@order = qw(filters trim_to trim ltrim rtrim decode_html
decode_xml remove_html dirify sanitize
encode_html encode_xml encode_js encode_php
encode_url upper_case lower_case strip_linefeeds
space_pad zero_pad sprintf);
my $el = 0;
%order = map { $_ => ++$el } @order;
}
sub stock_post_process_handler {
my ( $ctx, $args, $str, $arglist ) = @_;
my $filters = $ctx->{__filters};
$arglist ||= [];
if (@$arglist) {
# In the event that $args was manipulated by handlers,
# locate any new arguments and add them to $arglist for
# processing
my %arglist_keys = map { $_->[0] => $_->[1] } @$arglist;
if ( scalar keys %arglist_keys != scalar keys %$args ) {
my %more_args = %$args;
for ( keys %arglist_keys ) {
delete $more_args{$_} if exists $more_args{$_};
}
if (%more_args) {
push @$arglist, [ $_ => $more_args{$_} ]
foreach grep { exists $filters->{$_} }
keys %more_args;
}
}
}
elsif ( keys %$args && !@$arglist ) {
# in the event that we don't have arglist,
# we'll build it using the hashref we do have
# we might as well preserve the original ordering
# of processing as well, since it's better than
# the pseudo random order we get from retrieving the
# keys from the hash.
push @$arglist, [ $_, $args->{$_} ] foreach sort {
exists $order{$a} && exists $order{$b}
? $order{$a} <=> $order{$b}
: 0
}
grep { exists $filters->{$_} }
keys %$args;
}
for my $arg (@$arglist) {
my ( $name, $val ) = @$arg;
next unless exists $args->{$name};
if ( my $code = $filters->{$name} ) {
if ( ref $code eq 'HASH' ) {
$code = $code->{code}
||= MT->handler_to_coderef( $code->{handler} );
}
elsif ( !ref $code ) {
$code = MT->handler_to_coderef($code);
}
elsif ( defined $code and !ref $code ) {
$code = MT->handler_to_coderef($code);
}
$str = $code->( $str, $val, $ctx );
}
}
$str;
}
}
sub post_process_handler {
\&stock_post_process_handler;
}
sub slurp {
my ( $ctx, $args, $cond ) = @_;
my $tokens = $ctx->stash('tokens');
return '' unless $tokens;
my $result = $ctx->stash('builder')->build( $ctx, $tokens, $cond );
return $ctx->error( $ctx->stash('builder')->errstr )
unless defined $result;
return $result;
}
sub else {
my ( $ctx, $args, $cond ) = @_;
my $tokens = $ctx->stash('tokens_else');
return '' unless $tokens;
my $result = $ctx->stash('builder')->build( $ctx, $tokens, $cond );
return $ctx->error( $ctx->stash('builder')->errstr )
unless defined $result;
return $result;
}
sub build {
my ( $ctx, $tmpl, $cond ) = @_;
my $builder = $ctx->stash('builder');
my $tokens = $builder->compile( $ctx, $tmpl )
or return $ctx->error( $builder->errstr );
local $ctx->{stash}{tokens} = $tokens;
my $result = $builder->build( $ctx, $tokens, $cond );
return $ctx->error( $builder->errstr )
unless defined $result;
return $result;
}
sub set_blog_load_context {
my ( $ctx, $attr, $terms, $args, $col ) = @_;
my $blog_id = $ctx->stash('blog_id');
$col ||= 'blog_id';
# Grab specified blog IDs
my $blog_ids
= $attr->{blog_ids}
|| $attr->{include_blogs}
|| $attr->{site_ids}
|| $attr->{include_websites};
if ( defined($blog_ids) && ( $blog_ids =~ m/-/ ) ) {
my @list = split /\s*,\s*/, $blog_ids;
my @ids;
foreach my $id (@list) {
if ( $id =~ m/^(\d+)-(\d+)$/ ) {
push @ids, $_ for $1 .. $2;
}
else {
push @ids, $id;
}
}
$blog_ids = join ",", @ids;
}
# If no blog IDs specified, use the current blog
if ( !$blog_ids ) {
if ( my $blog = $ctx->stash('blog') ) {
$terms->{$col} = $blog_id if $blog_id && $col eq 'blog_id';
}
# include_blogs="all" removes the blog_id/id constraint
}
elsif ( lc $blog_ids eq 'all' ) {
delete $terms->{$col} if exists $terms->{$col};
# "include_blogs='site'" collects all blogs in current context of website
}
elsif (
( my $blog = $ctx->stash('blog') )
&& ( ( lc($blog_ids) eq 'site' )
|| ( lc($blog_ids) eq 'children' )
|| ( lc($blog_ids) eq 'siblings' ) )
)
{
my $website
= $blog->is_blog
? $blog->website
: $blog;
my ( @blogs, $blog_ids );
@blogs = MT->model('blog')->load( { parent_id => $website->id } );
$blog_ids = scalar @blogs ? [ map { $_->id } @blogs ] : [];
push @$blog_ids, $website->id if $attr->{include_with_website};
$blog_ids = -1
unless scalar @$blog_ids
; # We should use non-existing blog id when calculated blog_ids is empty
$terms->{$col} = $blog_ids;
# Blogs are specified in include_blogs so set the terms
}
else {
my $blogs = { map { $_ => 1 } split /\s*,\s*/, $blog_ids };
$terms->{$col} = [ keys %{$blogs} ];
}
# Filtered by acl;
my $allow = delete $attr->{allow_blogs} if $attr->{allow_blogs};
if ($allow) {
if ( !$terms->{$col} ) {
$terms->{$col} = $allow;
}
else {
my $term_ids = $terms->{$col};
$term_ids = [$term_ids] unless ref $term_ids eq 'ARRAY';
my %seen = map { $_ => 1 } @$allow;
my @allows = grep { $seen{$_} } @$term_ids;
if (@allows) {
$terms->{$col} = \@allows;
}
else {
$terms->{$col} = $blog_id;
}
}
}
# If exclude blogs, set the terms and the NOT arg for load
# 'All' is not a valid value for exclude_blogs
if ( $attr->{exclude_blogs}
|| $attr->{exclude_websites}
|| $attr->{deny_blogs} )
{
my $exclude_ids = $attr->{exclude_blogs}
|| $attr->{exclude_websites};
return $ctx->error(
MT->translate(
"The attribute exclude_blogs cannot take '[_1]' for a value.",
$exclude_ids
)
) if lc $exclude_ids eq 'all';
my @blog_ids;
if ( ( lc($exclude_ids) eq 'site' )
|| ( lc($exclude_ids) eq 'children' )
|| ( lc($exclude_ids) eq 'siblings' ) )
{
my ( $ex_args, %terms, %args );
$ex_args->{include_blogs} = $exclude_ids;
$ctx->set_blog_load_context( $ex_args, \%terms, \%args, $col );
@blog_ids = @{ $terms{$col} };
}
else {
@blog_ids = split /\s*,\s*/, $exclude_ids;
}
# Merge deny list
push @blog_ids, @{ $attr->{deny_blogs} } if $attr->{deny_blogs};
my %seen;
@seen{@blog_ids} = ();
@blog_ids = keys %seen;
if ( !$blog_ids || lc $blog_ids eq 'all' || !$terms->{$col} ) {
$terms->{$col} = \@blog_ids;
$args->{not}{$col} = 1;
}
else {
my $term_ids = $terms->{$col};
$term_ids = [$term_ids] unless ref $term_ids eq 'ARRAY';
my %exc_ids = map { $_ => 1 } @blog_ids;
@blog_ids = grep { !$exc_ids{$_} } @$term_ids;
return $ctx->error(
MT->translate(
"When the same blog IDs are simultaneously listed in the include_blogs and exclude_blogs attributes, those blogs are excluded."
)
) unless @blog_ids;
if (@blog_ids) {
$terms->{$col} = \@blog_ids;
}
else {
$terms->{$col} = $blog_id;
}
}
}
1;
}
sub compile_category_filter {
my ( $ctx, $cat_expr, $cats, $param ) = @_;
$param ||= {};
$cats ||= [];
my $is_and = $param->{'and'} ? 1 : 0;
my $children = $param->{'children'} ? 1 : 0;
if ($cat_expr) {
# we got an expression, and a list of categories to try to fit in
my $use_ex_names = $cat_expr =~ m!/! ? 1 : 0;
my %cats_dir;
foreach my $cat (@$cats) {
my @ex_cat;
if ($children) {
my @kids = ($cat);
while ( my $c = shift @kids ) {
push @ex_cat, $c;
push @kids, ( $c->children_categories );
}
}
else {
@ex_cat = ($cat);
}
push @{ $cats_dir{ $cat->label } ||= [] }, @ex_cat;
next unless $use_ex_names;
next if $cat->label eq $cat->category_label_path;
push @{ $cats_dir{ $cat->category_label_path } ||= [] }, @ex_cat;
}
my $new_expr = '';
my %cats_used;
my @split_expr = split /(\bOR\b|\bAND\b|\bNOT\b|\(|\))/, $cat_expr;
foreach my $token (@split_expr) {
if (grep {$token eq $_} qw{OR AND NOT ( )}) {
$new_expr .= $token;
next;
}
if ($token =~ m/^\s*$/) {
$new_expr .= $token;
next;
}
my ($b_space) = $token =~ m/^(\s*)/;
my ($e_space) = $token =~ m/(\s*)$/;
substr($token, 0, length($b_space), '');
substr($token, -length($e_space), length($e_space), '')
if length($e_space);
$new_expr .= $b_space;
if (not exists $cats_dir{$token}) {
$new_expr .= $token . $e_space;
next;
}
$cats_used{$_->id} = $_ foreach @{ $cats_dir{$token} };
if (1 == @{ $cats_dir{$token} }) {
$new_expr .= "#" . $cats_dir{$token}->[0]->id;
}
else {
my $str = join('||', map "#".$_->id, @{ $cats_dir{$token} });
$new_expr .= "($str)"
}
$new_expr .= $e_space;
}
$cat_expr = $new_expr;
@$cats = values %cats_used;
$cat_expr =~ s/\bAND\b/&&/gi;
$cat_expr =~ s/\bOR\b/||/gi;
$cat_expr =~ s/\bNOT\b/!/gi;
# replace any other 'thing' with '(0)' since it's a
# category that doesn't even exist.
$cat_expr
=~ s/( |#\d+|&&|\|\||!|\(|\))|([^#0-9&|!()]+)/$2?'(0)':$1/ge;
# strip out all the 'ok' stuff. if anything is left, we have
# some invalid data in our expression:
my $test_expr = $cat_expr;
$test_expr =~ s/!|&&|\|\||\(0\)|\(|\)|\s|#\d+//g;
return undef if $test_expr;
}
else {
my %cats_used;
$cat_expr = '';
foreach my $cat (@$cats) {
my $id = $cat->id;
$cat_expr .= ( $is_and ? '&&' : '||' ) if $cat_expr ne '';
if ($children) {
my @kids = ($cat);
my @cats;
while ( my $c = shift @kids ) {
push @cats, $c;
push @kids, ( $c->children_categories );
}
my $repl = '';
$repl .= '||' . '#' . $_->id for @cats;
$cats_used{ $_->id } = $_ for @cats;
$repl = '(' . substr( $repl, 2 ) . ')';
$cat_expr .= $repl;
}
else {
$cats_used{ $cat->id } = $cat;
$cat_expr .= "#$id";
}
}
@$cats = values %cats_used;
}
$cat_expr =~ s/#(\d+)/(exists \$p->{$1})/g;
my $expr = 'sub{my($p)=@_;' . $cat_expr . ';}';
my $cexpr = eval($expr);
$@ ? undef : $cexpr;
}
sub compile_tag_filter {
my ( $ctx, $tag_expr, $tags ) = @_;
# Sort in descending order by length
@$tags = sort { length( $b->name ) <=> length( $a->name ) } @$tags;
# Modify the tag argument, replacing the tag name with '#TagID'
# Create a ID-based hash of the tags that are used in the arg
my %tags_used;
foreach my $tag (@$tags) {
my $name = $tag->name;
## FIXME: this implementation can't handle tags which starts
## with hash mark and numbers related. because they could break
## our mid-compiled expression. now just skip them.
next if $name =~ /^\s*\#\d+\s*$/;
my $id = $tag->id;
## search for tags from expression and replace them with its IDs.
## allowed only existing tag name and some logical operators
## ( AND, OR, NOT, and round brackets ).
if ($tag_expr =~ s/
(
\sAND\s
| \sOR\s
| \s?NOT\s
| \(
| \A
)
\s*?
\Q$name\E
\s*?
(
\Z
| \)
| \sAND\s
| \sOR\s
| \sNOT\s
)
/$1#$id$2/igx
) # Change all matches to #$id (e.g. #932)
{
$tags_used{$id} = $tag;
}
}
# Populate array ref (passed in by reference) of used tags
@$tags = values %tags_used;
# Replace logical constructs with their perl equivalents
$tag_expr =~ s/\bAND\b/&&/gi;
$tag_expr =~ s/\bOR\b/||/gi;
$tag_expr =~ s/\bNOT\b/!/gi;
# If any foreign/unrecognized sequences appear in our
# expression (such as a non-extistent tag name),
# replace that with '(0)' which will evaluate to false.
$tag_expr =~ s/
(
[ ] | # space
\#\d+ | # #123
&& | # literal &&
\|\| | # literal ||
! | # literal !
\( | # literal (
\) # literal )
) |
(
[^#&|!()]+ # some unknown set of characters
)
/ $2 ? '(0)' : $1 /gex;
# Syntax check on 'tag' argument
# Strip out all the valid stuff. if anything is left, we have
# some invalid data in our expression:
my $test_expr = $tag_expr;
$test_expr =~ s/!|&&|\|\||\(0\)|\(|\)|\s|#\d+//g;
return undef if ($test_expr);
# Replace '#TagID' with a hash lookup function.
# Function confirms/denies use of tag on entry (by IDs)
# Translation: exists( PlacementHashRef->{EntryID}{TagID} )
$tag_expr =~ s/#(\d+)/(exists \$p->{$1})/g;
# Create an anonymous subroutine of that lookup function
# and return it if all is well. This code ref will be used
# later to test for existence of specified tags in entries.
my $expr = 'sub{my($p)=@_;' . $tag_expr . '}';
my $cexpr = eval $expr;
$@ ? undef : $cexpr;
}
sub compile_role_filter {
my ( $ctx, $role_expr, $roles ) = @_;
my %roles_used;
foreach my $role (@$roles) {
my $name = $role->name;
my $id = $role->id;
if ( $role_expr =~ s/(?<![#\d])\Q$name\E/#$id/g ) {
$roles_used{$id} = $role;
}
}
@$roles = values %roles_used;
$role_expr =~ s/\bOR\b/||/gi;
$role_expr =~ s/\bAND\b/&&/gi;
$role_expr =~ s/\bNOT\b/!/gi;
$role_expr =~ s/( |#\d+|&&|\|\||!|\(|\))|([^#0-9&|!()]+)/$2?'(0)':$1/ge;
my $test_expr = $role_expr;
$test_expr =~ s/!|&&|\|\||\(0\)|\(|\)|\s|#\d+//g;
return undef if $test_expr;
$role_expr =~ s/#(\d+)/(exists \$p->{\$e}{$1})/g;
my $expr = 'sub{my($e,$p)=@_;' . $role_expr . ';}';
my $cexpr = eval $expr;
$@ ? undef : $cexpr;
}
sub compile_status_filter {
my ( $ctx, $status_expr, $status ) = @_;
foreach my $s (@$status) {
my $name = $s->{name};
my $id = $s->{id};
$status_expr =~ s/(?<![#\d])\Q$name\E/#$id/g;
}
$status_expr =~ s/\bOR\b/||/gi;
$status_expr =~ s/( |#\d+|&&|\|\||!|\(|\))|([^#0-9&|!()]+)/$2?'(0)':$1/ge;
my $test_expr = $status_expr;
$test_expr =~ s/!|&&|\|\||\(0\)|\(|\)|\s|#\d+//g;
return undef if $test_expr;
$status_expr =~ s/#(\d+)/(\$_[0]->status == $1)/g;
my $expr = 'sub{' . $status_expr . ';}';
my $cexpr = eval $expr;
$@ ? undef : $cexpr;
}
sub count_format {
my $ctx = shift;
my ( $count, $args ) = @_;
my $phrase;
$count ||= 0;
if ( $count == 0 ) {
$phrase
= exists $args->{none}
? $args->{none}
: ( exists $args->{plural} ? $args->{plural} : '' );
}
elsif ( $count == 1 ) {
$phrase = exists $args->{singular} ? $args->{singular} : '';
}
elsif ( $count > 1 ) {
$phrase = exists $args->{plural} ? $args->{plural} : '';
}
return $count if $phrase eq '';
return $phrase unless $phrase =~ m/#/;
$phrase =~ s/(?<!\\)#/$count/g;
$phrase =~ s/\\#/#/g;
return $phrase;
}
sub _no_author_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
return $ctx->error(
MT->translate(
"You used an '[_1]' tag outside of the context of a author; "
. "perhaps you mistakenly placed it outside of an 'MTAuthors' "
. "container?",
$tag_name
)
);
}
sub _no_entry_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $_[0]->error(
MT->translate(
"You used an '[_1]' tag outside of the context of an entry; "
. "perhaps you mistakenly placed it outside of an 'MTEntries' container?",
$tag_name
)
);
}
sub _no_website_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $_[0]->error(
MT->translate(
"You used an '[_1]' tag outside of the context of the website; "
. "perhaps you mistakenly placed it outside of an 'MTWebsites' container?",
$tag_name
)
);
}
sub _no_blog_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $_[0]->error(
MT->translate(
"You used an '[_1]' tag outside of the context of the blog; "
. "perhaps you mistakenly placed it outside of an 'MTBlogs' container?",
$tag_name
)
);
}
sub _no_comment_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $ctx->error(
MT->translate(
"You used an '[_1]' tag outside of the context of a comment; "
. "perhaps you mistakenly placed it outside of an 'MTComments' "
. "container?",
$tag_name
)
);
}
sub _no_ping_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $ctx->error(
MT->translate(
"You used an '[_1]' tag outside of the context of "
. "a ping; perhaps you mistakenly placed it outside "
. "of an 'MTPings' container?",
$tag_name
)
);
}
sub _no_asset_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $ctx->error(
MT->translate(
"You used an '[_1]' tag outside of the context of an asset; "
. "perhaps you mistakenly placed it outside of an 'MTAssets' container?",
$tag_name
)
);
}
sub _no_page_error {
my ($ctx) = @_;
my $tag_name = $ctx->stash('tag');
$tag_name = 'mt' . $tag_name unless $tag_name =~ m/^MT/i;
return $ctx->error(
MT->translate(
"You used an '[_1]' tag outside of the context of a page; "
. "perhaps you mistakenly placed it outside of a 'MTPages' container?",
$tag_name
)
);
}
# overridden in other contexts
sub context_script {''}
1;
__END__
=head1 NAME
MT::Template::Context - Movable Type Template Context
=head1 SYNOPSIS
use MT::Template::Context;
MT::Template::Context->add_tag( FooBar => sub {
my($ctx, $args) = @_;
my $foo = $ctx->stash('foo')
or return $ctx->error("No foo in context");
$foo->bar;
} );
## In a template:
## <$MTFooBar$>
=head1 DESCRIPTION
I<MT::Template::Context> provides the implementation for all of the built-in
template tags in Movable Type, as well as the public interface to the
system's plugin interface.
This document focuses only on the public methods needed to implement plugins
in Movable Type, and the methods that plugin developers might wish to make
use of. Of course, plugins can make use of other objects loaded from the
Movable Type database, in which case you may wish to look at the documentation
for the classes in question (for example, I<MT::Entry>).
=head1 USAGE
=head2 MT::Template::Context->add_tag($name, \&subroutine)
I<add_tag> registers a simple "variable tag" with the system. An example of
such a tag might be C<E<lt>$MTEntryTitle$E<gt>>.
I<$name> is the name of the tag, without the I<MT> prefix, and
I<\&subroutine> a reference to a subroutine (either anonymous or named).
I<\&subroutine> should return either an error (see L<ERROR HANDLING>) or
a defined scalar value (returning C<undef> will be treated as an error, so
instead of returning C<undef>, always return the empty string instead).
For example:
MT::Template::Context->add_tag(ServerUptime => sub { `uptime` });
This tag would be used in a template as C<E<lt>$MTServerUptime$E<gt>>.
The subroutine reference will be passed two arguments: the
I<MT::Template::Context> object with which the template is being built, and
a reference to a hash containing the arguments passed in through the template
tag. For example, if a tag C<E<lt>$MTFooBar$E<gt>> were called like
<$MTFooBar baz="1" quux="2"$>
the second argument to the subroutine registered with this tag would be
{
'quux' => 2,
'bar' => 1
};
=head2 MT::Template::Context->add_container_tag($name, \&subroutine)
Registers a "container tag" with the template system. Container tags are
generally used to represent either a loop or a conditional. In practice, you
should probably use I<add_container_tag> just for loops--use
I<add_conditional_tag> for a conditional, because it will take care of much
of the backend work for you (most conditional tag handlers have a similar
structure).
I<$name> is the name of the tag, without the I<MT> prefix, and
I<\&subroutine> a reference to a subroutine (either anonymous or named).
I<\&subroutine> should return either an error (see L<ERROR HANDLING>) or
a defined scalar value (returning C<undef> will be treated as an error, so
instead of returning C<undef>, always return the empty string instead).
The subroutine reference will be passed two arguments: the
I<MT::Template::Context> object with which the template is being built, and
a reference to a hash containing the arguments passed in through the template
tag.
Since a container tag generally represents a loop, inside of your subroutine
you will need to use a loop construct to loop over some list of items, and
build the template tags used inside of the container for each of those
items. These inner template tags have B<already been compiled into a list of
tokens>. You need only use the I<MT::Builder> object to build this list of
tokens into a scalar string, then add the string to your output value. The
list of tokens is in C<$ctx-E<gt>stash('tokens')>, and the I<MT::Builder>
object is in C<$ctx-E<gt>stash('builder')>.
For example, if a tag C<E<lt>MTLoopE<gt>> were used like this:
<MTLoop>
The value of I is: <$MTLoopIValue$>
</MTLoop>
a sample implementation of this set of tags might look like this:
MT::Template::Context->add_container_tag(Loop => sub {
my $ctx = shift;
my $res = '';
my $builder = $ctx->stash('builder');
my $tokens = $ctx->stash('tokens');
for my $i (1..5) {
$ctx->stash('i_value', $i);
defined(my $out = $builder->build($ctx, $tokens))
or return $ctx->error($builder->errstr);
$res .= $out;
}
$res;
});
MT::Template::Context->add_tag(LoopIValue => sub {
my $ctx = shift;
$ctx->stash('i_value');
});
C<E<lt>$MTLoopIValue$E<gt>> is a simple variable tag. C<E<lt>MTLoopE<gt>> is
registered as a container tag, and it loops over the numbers 1 through 5,
building the list of tokens between C<E<lt>MTLoopE<gt>> and
C<E<lt>/MTLoopE<gt>> for each number. It checks for an error return value
from the C<$builder-E<gt>build> invocation each time through.
Use of the tags above would produce:
The value of I is: 1
The value of I is: 2
The value of I is: 3
The value of I is: 4
The value of I is: 5
=head2 MT::Template::Context->add_conditional_tag($name, $condition)
Registers a conditional tag with the template system.
Conditional tags are technically just container tags, but in order to make
it very easy to write conditional tags, you can use the I<add_conditional_tag>
method. I<$name> is the name of the tag, without the I<MT> prefix, and
I<$condition> is a reference to a subroutine which should return true if
the condition is true, and false otherwise. If the condition is true, the
block of tags and markup inside of the conditional tag will be executed and
displayed; otherwise, it will be ignored.
For example, the following code registers two conditional tags:
MT::Template::Context->add_conditional_tag(IfYes => sub { 1 });
MT::Template::Context->add_conditional_tag(IfNo => sub { 0 });
C<E<lt>MTIfYesE<gt>> will always display its contents, because it always
returns 1; C<E<lt>MTIfNoE<gt>> will never display is contents, because it
always returns 0. So if these tags were to be used like this:
<MTIfYes>Yes, this appears.</MTIfYes>
<MTIfNo>No, this doesn't appear.</MTIfNo>
Only "Yes, this appears." would be displayed.
A more interesting example is to add a tag C<E<lt>MTEntryIfTitleE<gt>>,
to be used in entry context, and which will display its contents if the
entry has a title.
MT::Template::Context->add_conditional_tag(EntryIfTitle => sub {
my $e = $_[0]->stash('entry') or return;
defined($e->title) && $e->title ne '';
});
To be used like this:
<MTEntries>
<MTEntryIfTitle>
This entry has a title: <$MTEntryTitle$>
</MTEntryIfTitle>
</MTEntries>
=head2 MT::Template::Context->add_global_filter($name, \&subroutine)
Registers a global tag attribute. More information is available in the
Movable Type manual, in the Template Tags section, in "Global Tag Attributes".
Global tag attributes can be used in any tag, and are essentially global
filters, used to filter the normal output of the tag and modify it in some
way. For example, the I<lower_case> global tag attribute can be used like
this:
<$MTEntryTitle lower_case="1"$>
and will transform all entry titles to lower-case.
Using I<add_global_filter> you can add your own global filters. I<$name>
is the name of the filter (this should be lower-case for consistency), and
I<\&subroutine> is a reference to a subroutine that will be called to
transform the normal output of the tag. I<\&subroutine> will be given three
arguments: the standard scalar output of the tag, the value of the attribute
(C<1> in the above I<lower_case> example), and the I<MT::Template::Context>
object being used to build the template.
For example, the following adds a I<rot13> filter:
MT::Template::Context->add_global_filter(rot13 => sub {
(my $s = shift) =~ tr/a-zA-Z/n-za-mN-ZA-M/;
$s;
});
Which can be used like this:
<$MTEntryTitle rot13="1"$>
Another example: if we wished to implement the built-in I<trim_to> filter
using I<add_global_filter>, we would use this:
MT::Template::Context->add_global_filter(trim_to => sub {
my($str, $len, $ctx) = @_;
$str = substr $str, 0, $len if $len < length($str);
$str;
});
The second argument (I<$len>) is used here to determine the length to which
the string (I<$str>) should be trimmed.
Note: If you add multiple global filters, the order in which they are called
is undefined, so you should not rely on any particular ordering.
=head2 $ctx->stash($key [, $value ])
A simple data stash that can be used to store data between calls to different
tags in your plugin. For example, this is very useful when implementing a
container tag, as we saw above in the implementation of C<E<lt>MTLoopE<gt>>.
I<$key> should be a scalar string identifying the data that you are stashing.
I<$value>, if provided>, should be any scalar value (a string, a number, a
reference, an object, etc).
When called with only I<$key>, returns the stashed value for I<$key>; when
called with both I<$key> and I<$value>, sets the stash for I<$key> to
I<$value>.
=head1 ERROR HANDLING
If an error occurs in one of the subroutine handlers within your plugin,
you should return an error by calling the I<error> method on the I<$ctx>
object:
return $ctx->error("the error message");
In particular, you might wish to use this if your tag expects to be called
in a particular context. For example, the C<E<lt>$MTEntry*$E<gt>> tags all
expect that when they are called, an entry will be in context. So they all
use
my $entry = $ctx->stash('entry')
or return $ctx->error("Tag called without an entry in context");
to ensure this.
=head1 AUTHOR & COPYRIGHT
Please see the I<MT> manpage for author, copyright, and license information.
=cut
|