Group
Extension

mojo-debugbar/lib/Mojo/Debugbar/Monitor/Session.pm

package Mojo::Debugbar::Monitor::Session;
use Mojo::Base "Mojo::Debugbar::Monitor";

use Mojo::JSON qw(encode_json);


has 'icon' => '<i class="icon-cloud"></i>';
has 'name' => 'Session';

=head2 render

    Returns the html

=cut

sub render {
    my $self = shift;

    return sprintf(
        '<table class="debugbar-templates table" data-debugbar-ref="%s">
            <thead>
                <tr>
                    <th width="30%%">Key</th>
                    <th>Value</th>
                </tr>
            </thead>
            <tbody>
                %s
            </tbody>
        </table>',
        ref($self), $self->rows
    );
}

=head2 rows

    Build the rows

=cut

sub rows {
    my $self = shift;

    my $time = time;
    my ($sec, $min, $hour) = localtime($time);

    my $rows = sprintf('<tr><td colspan="2">Session at %s:%s:%s (%s)</td></tr>', $hour, $min, $sec, scalar @{ $self->items });

    foreach my $item (@{ $self->items }) {
        $rows .= sprintf(
            '<tr>
                <td>%s</td>
                <td>%s</td>
            </tr>',
            $item->{ key }, $item->{ value } || ''
        );
    }

    return $rows;
}

=head2 start

    Listen for "after_dispatch" event and collect session data

=cut

sub start {
    my $self = shift;

    my @items;


    $self->app->hook(after_dispatch => sub {
        my $c = shift;

        my $session = $c->session;

        for my $key (keys(%$session)) {
            my $value = $session->{ $key };
            $value = encode_json($value) if ref($value);

            push(@items, { key => $key, value => $value });
        }
    });

    $self->items(\@items);
}

1;


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.