/usr/share/perl5/Mojolicious/Controller.pm is in libmojolicious-perl 2.98+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Mojolicious::Controller;
use Mojo::Base -base;
use Carp ();
use Mojo::ByteStream;
use Mojo::Cookie::Response;
use Mojo::Exception;
use Mojo::Home;
use Mojo::Transaction::HTTP;
use Mojo::URL;
use Mojo::Util;
use Mojolicious;
use Mojolicious::Routes::Match;
use Scalar::Util ();
# "Scalpel... blood bucket... priest."
has app => sub { Mojolicious->new };
has match => sub {
Mojolicious::Routes::Match->new(GET => '/')->root(shift->app->routes);
};
has tx => sub { Mojo::Transaction::HTTP->new };
# Bundled files
our $H = Mojo::Home->new;
$H->parse($H->parse($H->mojo_lib_dir)->rel_dir('Mojolicious/templates'));
our $MOJOBAR = $H->slurp_rel_file('mojobar.html.ep');
my $EXCEPTION = $H->slurp_rel_file('exception.html.ep');
my $DEV_EXCEPTION = $H->slurp_rel_file('exception.development.html.ep');
my $NOT_FOUND = $H->slurp_rel_file('not_found.html.ep');
my $DEV_NOT_FOUND = $H->slurp_rel_file('not_found.development.html.ep');
# Reserved stash values
my %RESERVED = map { $_ => 1 } (
qw(action app cb controller data extends format handler json layout),
qw(namespace partial path status template text)
);
# "Is all the work done by the children?
# No, not the whipping."
sub AUTOLOAD {
my $self = shift;
# Method
my ($package, $method) = our $AUTOLOAD =~ /^([\w:]+)\:\:(\w+)$/;
Carp::croak("Undefined subroutine &${package}::$method called")
unless Scalar::Util::blessed($self) && $self->isa(__PACKAGE__);
# Call helper
Carp::croak(qq{Can't locate object method "$method" via package "$package"})
unless my $helper = $self->app->renderer->helpers->{$method};
return $self->$helper(@_);
}
sub DESTROY { }
# "For the last time, I don't like lilacs!
# Your first wife was the one who liked lilacs!
# She also liked to shut up!"
sub cookie {
my ($self, $name, $value, $options) = @_;
$options ||= {};
# Response cookie
if (defined $value) {
# Cookie too big
$self->app->log->error(qq{Cookie "$name" is bigger than 4096 bytes.})
if length $value > 4096;
# Create new cookie
$self->res->cookies(
Mojo::Cookie::Response->new(name => $name, value => $value, %$options));
return $self;
}
# Request cookies
return map { $_->value } $self->req->cookie($name) if wantarray;
# Request cookie
return unless my $cookie = $self->req->cookie($name);
return $cookie->value;
}
# "Something's wrong, she's not responding to my poking stick."
sub finish {
my ($self, $chunk) = @_;
# WebSocket
my $tx = $self->tx;
return $tx->finish if $tx->is_websocket;
# Chunked stream
if ($tx->res->is_chunked) {
$self->write_chunk($chunk) if defined $chunk;
return $self->write_chunk('');
}
# Normal stream
$self->write($chunk) if defined $chunk;
$self->write('');
}
# "You two make me ashamed to call myself an idiot."
sub flash {
my $self = shift;
# Check old flash
my $session = $self->session;
return $session->{flash} ? $session->{flash}{$_[0]} : undef
if @_ == 1 && !ref $_[0];
# Initialize new flash and merge values
my $flash = $session->{new_flash} ||= {};
%$flash = (%$flash, %{@_ > 1 ? {@_} : $_[0]});
return $self;
}
# "My parents may be evil, but at least they're stupid."
sub on {
my ($self, $name, $cb) = @_;
my $tx = $self->tx;
$self->rendered(101) if $tx->is_websocket;
$tx->on($name => sub { shift and $self->$cb(@_) });
}
# "Just make a simple cake. And this time, if someone's going to jump out of
# it make sure to put them in *after* you cook it."
sub param {
my ($self, $name) = (shift, shift);
# List names
my $captures = $self->stash->{'mojo.captures'} ||= {};
my $req = $self->req;
unless (defined $name) {
my %seen;
my @keys = grep { !$seen{$_}++ } $req->param;
push @keys, grep { !$seen{$_}++ } map { $_->name } @{$req->uploads};
push @keys, grep { !$RESERVED{$_} && !$seen{$_}++ } keys %$captures;
return sort @keys;
}
# Override values
if (@_) {
$captures->{$name} = @_ > 1 ? [@_] : $_[0];
return $self;
}
# Captured unreserved values
if (!$RESERVED{$name} && defined(my $value = $captures->{$name})) {
return ref $value eq 'ARRAY' ? wantarray ? @$value : $$value[0] : $value;
}
# Upload
my $upload = $req->upload($name);
return $upload if $upload;
# Param values
return $req->param($name);
}
# "Is there an app for kissing my shiny metal ass?
# Several!
# Oooh!"
sub redirect_to {
my $self = shift;
# Don't override 3xx status
my $res = $self->res;
$res->headers->location($self->url_for(@_)->to_abs);
return $self->rendered($res->is_status_class(300) ? undef : 302);
}
# "Mamma Mia! The cruel meatball of war has rolled onto our laps and ruined
# our white pants of peace!"
sub render {
my $self = shift;
# Template may be first argument
my $template = @_ % 2 && !ref $_[0] ? shift : undef;
my $args = ref $_[0] ? $_[0] : {@_};
$args->{template} = $template if $template;
# Template
my $stash = $self->stash;
unless ($args->{template} || $stash->{template}) {
# Normal default template
my $controller = $args->{controller} || $stash->{controller};
my $action = $args->{action} || $stash->{action};
if ($controller && $action) {
$stash->{template} = join '/', split(/-/, $controller), $action;
}
# Try the route name if we don't have controller and action
elsif (my $endpoint = $self->match->endpoint) {
$stash->{template} = $endpoint->name;
}
}
# Render
my ($output, $type) = $self->app->renderer->render($self, $args);
return unless defined $output;
return Mojo::ByteStream->new($output) if $args->{partial};
# Prepare response
my $res = $self->res;
$res->body($output) unless $res->body;
my $headers = $res->headers;
$headers->content_type($type) unless $headers->content_type;
return $self->rendered($stash->{status});
}
sub render_content {
my $self = shift;
my $name = shift || 'content';
my $content = pop;
# Set
my $stash = $self->stash;
my $c = $stash->{'mojo.content'} ||= {};
if (defined $content) {
# Reset with multiple values
if (@_) {
$c->{$name}
= join('', map({ref $_ eq 'CODE' ? $_->() : $_} @_, $content));
}
# First come
else { $c->{$name} ||= ref $content eq 'CODE' ? $content->() : $content }
}
# Get
$content = $c->{$name} // '';
return Mojo::ByteStream->new("$content");
}
sub render_data { shift->render(data => @_) }
# "The path to robot hell is paved with human flesh.
# Neat."
sub render_exception {
my ($self, $e) = @_;
$e = Mojo::Exception->new($e);
# Recursion
my $app = $self->app;
$app->log->error($e);
my $stash = $self->stash;
return if $stash->{'mojo.exception'};
# Filtered stash snapshot
my %snapshot = map { $_ => $stash->{$_} }
grep { !/^mojo\./ and defined $stash->{$_} } keys %$stash;
# Render with fallbacks
my $mode = $app->mode;
my $options = {
template => "exception.$mode",
format => $stash->{format} || 'html',
handler => undef,
status => 500,
snapshot => \%snapshot,
exception => $e,
'mojo.exception' => 1
};
my $inline = $mode eq 'development' ? $DEV_EXCEPTION : $EXCEPTION;
return if $self->_render_fallbacks($options, 'exception', $inline);
$options->{format} = 'html';
$self->_render_fallbacks($options, 'exception', $inline);
}
# "If you hate intolerance and being punched in the face by me,
# please support Proposition Infinity."
sub render_json { shift->render(json => @_) }
sub render_later { shift->stash->{'mojo.rendered'}++ }
# "Excuse me, sir, you're snowboarding off the trail.
# Lick my frozen metal ass."
sub render_not_found {
my $self = shift;
# Recursion
my $stash = $self->stash;
return if $stash->{'mojo.exception'} || $stash->{'mojo.not_found'};
# Render with fallbacks
my $mode = $self->app->mode;
my $options = {
template => "not_found.$mode",
format => $stash->{format} || 'html',
status => 404,
'mojo.not_found' => 1
};
my $inline = $mode eq 'development' ? $DEV_NOT_FOUND : $NOT_FOUND;
return if $self->_render_fallbacks($options, 'not_found', $inline);
$options->{format} = 'html';
$self->_render_fallbacks($options, 'not_found', $inline);
}
# "You called my thesis a fat sack of barf, and then you stole it?
# Welcome to academia."
sub render_partial {
my $self = shift;
my $template = @_ % 2 ? shift : undef;
return $self->render(
{@_, partial => 1, defined $template ? (template => $template) : ()});
}
sub render_static {
my ($self, $file) = @_;
my $app = $self->app;
return $self->rendered if $app->static->serve($self, $file);
$app->log->debug(qq{File "$file" not found, public directory missing?});
return;
}
sub render_text { shift->render(text => @_) }
sub rendered {
my ($self, $status) = @_;
# Disable auto rendering
$self->render_later;
# Make sure we have a status
my $res = $self->res;
$res->code($status) if $status;
# Finish transaction
unless ($self->stash->{'mojo.finished'}++) {
$res->code(200) unless $res->code;
my $app = $self->app;
$app->plugins->emit_hook_reverse(after_dispatch => $self);
$app->sessions->store($self);
}
$self->tx->resume;
return $self;
}
# "A three month calendar? What is this, Mercury?"
sub req { shift->tx->req }
sub res { shift->tx->res }
sub respond_to {
my $self = shift;
my $args = ref $_[0] ? $_[0] : {@_};
# Detect formats
my $app = $self->app;
my @formats = @{$app->types->detect($self->req->headers->accept)};
my $stash = $self->stash;
unless (@formats) {
my $format = $stash->{format} || $self->req->param('format');
push @formats, $format ? $format : $app->renderer->default_format;
}
# Find target
my $target;
for my $format (@formats) {
next unless $target = $args->{$format};
$stash->{format} = $format;
last;
}
# Fallback
unless ($target) {
return $self->rendered(204) unless $target = $args->{any};
delete $stash->{format};
}
# Dispatch
ref $target eq 'CODE' ? $target->($self) : $self->render($target);
}
sub send {
my ($self, $message, $cb) = @_;
my $tx = $self->tx;
Carp::croak('No WebSocket connection to send message to')
unless $tx->is_websocket;
$tx->send($message, sub { shift and $self->$cb(@_) if $cb });
return $self->rendered(101);
}
# "Why am I sticky and naked? Did I miss something fun?"
sub session {
my $self = shift;
# Hash
my $stash = $self->stash;
my $session = $stash->{'mojo.session'} ||= {};
return $session unless @_;
# Get
return $session->{$_[0]} unless @_ > 1 || ref $_[0];
# Set
%$session = (%$session, %{ref $_[0] ? $_[0] : {@_}});
return $self;
}
sub signed_cookie {
my ($self, $name, $value, $options) = @_;
# Response cookie
my $secret = $self->app->secret;
return $self->cookie($name,
"$value--" . Mojo::Util::hmac_md5_sum($value, $secret), $options)
if defined $value;
# Request cookies
my @results;
for my $value ($self->cookie($name)) {
# Check signature
if ($value =~ s/--([^\-]+)$//) {
my $sig = $1;
# Verified
my $check = Mojo::Util::hmac_md5_sum $value, $secret;
if (Mojo::Util::secure_compare $sig, $check) { push @results, $value }
# Bad cookie
else {
$self->app->log->debug(
qq{Bad signed cookie "$name", possible hacking attempt.});
}
}
# Not signed
else { $self->app->log->debug(qq{Cookie "$name" not signed.}) }
}
return wantarray ? @results : $results[0];
}
# "All this knowledge is giving me a raging brainer."
sub stash {
my $self = shift;
# Hash
my $stash = $self->{stash} ||= {};
return $stash unless @_;
# Get
return $stash->{$_[0]} unless @_ > 1 || ref $_[0];
# Set
my $values = ref $_[0] ? $_[0] : {@_};
for my $key (keys %$values) {
$self->app->log->debug(qq{Careful, "$key" is a reserved stash value.})
if $RESERVED{$key};
$stash->{$key} = $values->{$key};
}
return $self;
}
sub ua { shift->app->ua }
sub url_for {
my $self = shift;
my $target = shift // '';
# Absolute URL
return $target if (Scalar::Util::blessed($target) || '') eq 'Mojo::URL';
return Mojo::URL->new($target) if $target =~ m!^\w+\://!;
# Base
my $url = Mojo::URL->new;
my $req = $self->req;
my $base = $url->base($req->url->base->clone)->base->userinfo(undef);
# Relative URL
my $path = $url->path;
if ($target =~ m!^/!) {
if (my $prefix = $self->stash->{path}) {
my $real = Mojo::Util::url_unescape($req->url->path->to_abs_string);
$real = Mojo::Util::decode('UTF-8', $real) // $real;
$real =~ s!/?$prefix$!$target!;
$target = $real;
}
$url->parse($target);
}
# Route
else {
my ($generated, $ws) = $self->match->path_for($target, @_);
$path->parse($generated) if $generated;
# Fix trailing slash
$path->trailing_slash(1)
if (!$target || $target eq 'current') && $req->url->path->trailing_slash;
# Fix scheme for WebSockets
$base->scheme(($base->scheme || '') eq 'https' ? 'wss' : 'ws') if $ws;
}
# Make path absolute
my $base_path = $base->path;
unshift @{$path->parts}, @{$base_path->parts};
$base_path->parts([])->trailing_slash(0);
return $url;
}
sub write {
my ($self, $chunk, $cb) = @_;
($cb, $chunk) = ($chunk, undef) if ref $chunk eq 'CODE';
$self->res->write($chunk, sub { shift and $self->$cb(@_) if $cb });
return $self->rendered;
}
sub write_chunk {
my ($self, $chunk, $cb) = @_;
($cb, $chunk) = ($chunk, undef) if ref $chunk eq 'CODE';
$self->res->write_chunk($chunk, sub { shift and $self->$cb(@_) if $cb });
return $self->rendered;
}
sub _render_fallbacks {
my ($self, $options, $template, $inline) = @_;
# Mode specific template
unless ($self->render($options)) {
# Template
$options->{template} = $template;
unless ($self->render($options)) {
# Inline template
my $stash = $self->stash;
return unless $stash->{format} eq 'html';
delete $stash->{layout};
delete $stash->{extends};
delete $options->{template};
return $self->render(%$options, inline => $inline, handler => 'ep');
}
}
}
1;
=head1 NAME
Mojolicious::Controller - Controller base class
=head1 SYNOPSIS
use Mojo::Base 'Mojolicious::Controller';
=head1 DESCRIPTION
L<Mojolicious::Controller> is the base class for your L<Mojolicious>
controllers. It is also the default controller class for L<Mojolicious>
unless you set C<controller_class> in your application.
=head1 ATTRIBUTES
L<Mojolicious::Controller> inherits all attributes from L<Mojo::Base> and
implements the following new ones.
=head2 C<app>
my $app = $c->app;
$c = $c->app(Mojolicious->new);
A reference back to the application that dispatched to this controller,
defaults to a L<Mojolicious> object.
# Use application logger
$c->app->log->debug('Hello Mojo!');
=head2 C<match>
my $m = $c->match;
$c = $c->match(Mojolicious::Routes::Match->new);
Router results for the current request, defaults to a
L<Mojolicious::Routes::Match> object.
# Introspect
my $foo = $c->match->endpoint->pattern->defaults->{foo};
=head2 C<tx>
my $tx = $c->tx;
$c = $c->tx(Mojo::Transaction::HTTP->new);
The transaction that is currently being processed, usually a
L<Mojo::Transaction::HTTP> or L<Mojo::Transaction::WebSocket> object.
# Check peer information
my $address = $c->tx->remote_address;
=head1 METHODS
L<Mojolicious::Controller> inherits all methods from L<Mojo::Base> and
implements the following new ones.
=head2 C<cookie>
my $value = $c->cookie('foo');
my @values = $c->cookie('foo');
$c = $c->cookie(foo => 'bar');
$c = $c->cookie(foo => 'bar', {path => '/'});
Access request cookie values and create new response cookies.
# Create response cookie with domain
$c->cookie(name => 'sebastian', {domain => 'mojolicio.us'});
=head2 C<finish>
$c->finish;
$c->finish('Bye!');
Gracefully end WebSocket connection or long poll stream.
=head2 C<flash>
my $foo = $c->flash('foo');
$c = $c->flash({foo => 'bar'});
$c = $c->flash(foo => 'bar');
Data storage persistent only for the next request, stored in the C<session>.
# Show message after redirect
$c->flash(message => 'User created successfully!');
$c->redirect_to('show_user', id => 23);
=head2 C<on>
my $cb = $c->on(finish => sub {...});
Subscribe to events of C<tx>, which is usually a L<Mojo::Transaction::HTTP> or
L<Mojo::Transaction::WebSocket> object.
# Emitted when the transaction has been finished
$c->on(finish => sub {
my $c = shift;
$c->app->log->debug('We are done!');
});
# Emitted when new WebSocket messages arrive
$c->on(message => sub {
my ($c, $message) = @_;
$c->app->log->debug("Message: $message");
});
=head2 C<param>
my @names = $c->param;
my $foo = $c->param('foo');
my @foo = $c->param('foo');
$c = $c->param(foo => 'ba;r');
$c = $c->param(foo => qw(ba;r ba;z));
Access GET/POST parameters, file uploads and route captures that are not
reserved stash values.
# Only GET parameters
my $foo = $c->req->url->query->param('foo');
# Only GET and POST parameters
my $foo = $c->req->param('foo');
# Only file uploads
my $foo = $c->req->upload('foo');
=head2 C<redirect_to>
$c = $c->redirect_to('named');
$c = $c->redirect_to('named', foo => 'bar');
$c = $c->redirect_to('/path');
$c = $c->redirect_to('http://127.0.0.1/foo/bar');
Prepare a C<302> redirect response, takes the exact same arguments as
C<url_for>.
# Conditional redirect
return $c->redirect_to('login') unless $c->session('user');
# Moved permanently
$c->res->code(301);
$c->redirect_to('some_route');
=head2 C<render>
my $success = $c->render;
my $success = $c->render(controller => 'foo', action => 'bar');
my $success = $c->render({controller => 'foo', action => 'bar'});
my $success = $c->render(template => 'foo/index');
my $success = $c->render(template => 'index', format => 'html');
my $success = $c->render(data => $bytes);
my $success = $c->render(text => 'Hello!');
my $success = $c->render(json => {foo => 'bar'});
my $success = $c->render(handler => 'something');
my $success = $c->render('foo/index');
my $output = $c->render('foo/index', partial => 1);
This is a wrapper around L<Mojolicious::Renderer/"render"> exposing pretty
much all functionality provided by it. It will set a default template to use
based on the controller and action name or fall back to the route name. You
can call it with a hash or hash reference of options which can be preceded by
an optional template name.
=head2 C<render_content>
my $output = $c->render_content;
my $output = $c->render_content('header');
my $output = $c->render_content(header => 'Hello world!');
my $output = $c->render_content(header => sub { 'Hello world!' });
Contains partial rendered templates, used for the renderers C<layout> and
C<extends> features.
=head2 C<render_data>
$c->render_data($bytes);
$c->render_data($bytes, format => 'png');
Render the given content as raw bytes, similar to C<render_text> but data will
not be encoded.
=head2 C<render_exception>
$c->render_exception('Oops!');
$c->render_exception(Mojo::Exception->new('Oops!'));
Render the exception template C<exception.$mode.$format.*> or
C<exception.$format.*> and set the response status code to C<500>.
=head2 C<render_json>
$c->render_json({foo => 'bar'});
$c->render_json([1, 2, -3], status => 201);
Render a data structure as JSON.
=head2 C<render_later>
$c->render_later;
Disable automatic rendering, especially for long polling this can be quite
useful.
# Delayed rendering
$c->render_later;
Mojo::IOLoop->timer(2 => sub {
$c->render(text => 'Delayed by 2 seconds!');
});
=head2 C<render_not_found>
$c->render_not_found;
Render the not found template C<not_found.$mode.$format.*> or
C<not_found.$format.*> and set the response status code to C<404>.
=head2 C<render_partial>
my $output = $c->render_partial('menubar');
my $output = $c->render_partial('menubar', format => 'txt');
my $output = $c->render_partial(template => 'menubar');
Same as C<render> but returns the rendered result.
=head2 C<render_static>
my $success = $c->render_static('images/logo.png');
my $success = $c->render_static('../lib/MyApp.pm');
Render a static file using L<Mojolicious::Static/"serve">, usually from the
C<public> directory or C<DATA> section of your application.
=head2 C<render_text>
$c->render_text('Hello World!');
$c->render_text('Hello World', layout => 'green');
Render the given content as Perl characters, which will be encoded to bytes.
See C<render_data> for an alternative without encoding. Note that this does
not change the content type of the response, which is
C<text/html;charset=UTF-8> by default.
# Render "text/plain" response
$c->render_text('Hello World!', format => 'txt');
=head2 C<rendered>
$c = $c->rendered;
$c = $c->rendered(302);
Finalize response and run C<after_dispatch> plugin hook.
# Stream content directly from file
$c->res->content->asset(Mojo::Asset::File->new(path => '/etc/passwd'));
$c->res->headers->content_type('text/plain');
$c->rendered(200);
=head2 C<req>
my $req = $c->req;
Alias for C<$c-E<gt>tx-E<gt>req>. Usually refers to a
L<Mojo::Message::Request> object.
# Extract request information
my $userinfo = $c->req->url->userinfo;
=head2 C<res>
my $res = $c->res;
Alias for C<$c-E<gt>tx-E<gt>res>. Usually refers to a
L<Mojo::Message::Response> object.
# Force file download by setting a custom response header
$c->res->headers->content_disposition('attachment; filename=foo.png;');
=head2 C<respond_to>
$c->respond_to(
json => {json => {message => 'Welcome!'}},
html => {template => 'welcome'},
any => sub {...}
);
Automatically select best possible representation for resource from C<Accept>
request header, C<format> stash value or C<format> GET/POST parameter,
defaults to rendering an empty C<204> response. Unspecific C<Accept> request
headers that contain more than one MIME type are currently ignored, since
browsers often don't really know what they actually want.
$c->respond_to(
json => sub { $c->render_json({just => 'works'}) },
xml => {text => '<just>works</just>'},
any => {data => '', status => 204}
);
=head2 C<send>
$c = $c->send({binary => $bytes});
$c = $c->send({text => $bytes});
$c = $c->send([$fin, $rsv1, $rsv2, $rsv3, $op, $payload]);
$c = $c->send('Hi there!');
$c = $c->send('Hi there!', sub {...});
Send message or frame non-blocking via WebSocket, the optional drain callback
will be invoked once all data has been written.
# Send JSON object as text frame
$c->send({text => Mojo::JSON->new->encode({hello => 'world'})});
# Send "Ping" frame
$c->send([1, 0, 0, 0, 9, 'Hello World!']);
For mostly idle WebSockets you might also want to increase the inactivity
timeout, which usually defaults to C<15> seconds.
# Increase inactivity timeout for connection to 300 seconds
Mojo::IOLoop->stream($c->tx->connection)->timeout(300);
=head2 C<session>
my $session = $c->session;
my $foo = $c->session('foo');
$c = $c->session({foo => 'bar'});
$c = $c->session(foo => 'bar');
Persistent data storage, stored C<JSON> serialized in a signed cookie. Note
that cookies are generally limited to 4096 bytes of data.
# Manipulate session
$c->session->{foo} = 'bar';
my $foo = $c->session->{foo};
delete $c->session->{foo};
# Delete whole session
$c->session(expires => 1);
=head2 C<signed_cookie>
my $value = $c->signed_cookie('foo');
my @values = $c->signed_cookie('foo');
$c = $c->signed_cookie(foo => 'bar');
$c = $c->signed_cookie(foo => 'bar', {path => '/'});
Access signed request cookie values and create new signed response cookies.
Cookies failing signature verification will be automatically discarded.
=head2 C<stash>
my $stash = $c->stash;
my $foo = $c->stash('foo');
$c = $c->stash({foo => 'bar'});
$c = $c->stash(foo => 'bar');
Non persistent data storage and exchange, application wide default values can
be set with L<Mojolicious/"defaults">. Many stash values have a special
meaning and are reserved, the full list is currently C<action>, C<app>, C<cb>,
C<controller>, C<data>, C<extends>, C<format>, C<handler>, C<json>, C<layout>,
C<namespace>, C<partial>, C<path>, C<status>, C<template> and C<text>.
# Manipulate stash
$c->stash->{foo} = 'bar';
my $foo = $c->stash->{foo};
delete $c->stash->{foo};
=head2 C<ua>
my $ua = $c->ua;
Alias for L<Mojo/"ua">.
# Blocking
my $tx = $c->ua->get('http://mojolicio.us');
my $tx = $c->ua->post_form('http://kraih.com/login' => {user => 'mojo'});
# Non-blocking
$c->ua->get('http://mojolicio.us' => sub {
my ($ua, $tx) = @_;
$c->render_data($tx->res->body);
});
# Parallel non-blocking
my $delay = Mojo::IOLoop->delay(sub {
my ($delay, @titles) = @_;
$c->render_json(\@titles);
});
for my $url ('http://mojolicio.us', 'https://metacpan.org') {
$delay->begin;
$c->ua->get($url => sub {
my ($ua, $tx) = @_;
$delay->end($tx->res->dom->html->head->title->text);
});
}
=head2 C<url_for>
my $url = $c->url_for;
my $url = $c->url_for(name => 'sebastian');
my $url = $c->url_for('test', name => 'sebastian');
my $url = $c->url_for('/perldoc');
my $url = $c->url_for('http://mojolicio.us/perldoc');
Generate a portable L<Mojo::URL> object with base for a route, path or URL.
# "/perldoc?foo=bar" if application is deployed under "/"
$c->url_for('/perldoc')->query(foo => 'bar');
# "/myapp/perldoc?foo=bar" if application is deployed under "/myapp"
$c->url_for('/perldoc')->query(foo => 'bar');
You can also use the helper L<Mojolicious::Plugin::DefaultHelpers/"url_with">
to inherit query parameters from the current request.
# "/list?q=mojo&page=2" if current request was for "/list?q=mojo&page=1"
$c->url_with->query([page => 2]);
=head2 C<write>
$c->write;
$c->write('Hello!');
$c->write(sub {...});
$c->write('Hello!', sub {...});
Write dynamic content non-blocking, the optional drain callback will be
invoked once all data has been written.
# Keep connection alive (with Content-Length header)
$c->res->headers->content_length(6);
$c->write('Hel', sub {
my $c = shift;
$c->write('lo!')
});
# Close connection when finished (without Content-Length header)
$c->write('Hel', sub {
my $c = shift;
$c->write('lo!', sub {
my $c = shift;
$c->finish;
});
});
For Comet (C<long polling>) you might also want to increase the inactivity
timeout, which usually defaults to C<15> seconds.
# Increase inactivity timeout for connection to 300 seconds
Mojo::IOLoop->stream($c->tx->connection)->timeout(300);
=head2 C<write_chunk>
$c->write_chunk;
$c->write_chunk('Hello!');
$c->write_chunk(sub {...});
$c->write_chunk('Hello!', sub {...});
Write dynamic content non-blocking with C<chunked> transfer encoding, the
optional drain callback will be invoked once all data has been written.
# Make sure previous chunk has been written before continuing
$c->write_chunk('He', sub {
my $c = shift;
$c->write_chunk('ll', sub {
my $c = shift;
$c->finish('o!');
});
});
You can call C<finish> at any time to end the stream.
2
He
2
ll
2
o!
0
=head1 HELPERS
In addition to the attributes and methods above you can also call helpers on
L<Mojolicious::Controller> objects. This includes all helpers from
L<Mojolicious::Plugin::DefaultHelpers> and L<Mojolicious::Plugin::TagHelpers>.
$c->layout('green');
$c->title('Welcome!');
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut
|