package Test2::Harness::UI::Controller::Events;
use strict;
use warnings;
our $VERSION = '0.000127';
use Data::GUID;
use List::Util qw/max/;
use Test2::Harness::UI::Response qw/resp error/;
use Test2::Harness::Util::JSON qw/encode_json decode_json/;
use parent 'Test2::Harness::UI::Controller';
use Test2::Harness::UI::Util::HashBase;
sub title { 'Events' }
sub handle {
my $self = shift;
my ($route) = @_;
my $req = $self->{+REQUEST};
my $res = resp(200);
my $user = $req->user;
my $schema = $self->{+CONFIG}->schema;
die error(404 => 'Missing route') unless $route;
my $it = $route->{id} or die error(404 => 'No name or id');
my $p = $req->parameters;
my (%query, %attrs, $rs, $meth, $event);
my $event_id = $it;
if ($route->{from} eq 'single_event') {
$event = $schema->resultset('Event')->find({event_id => $event_id}, {remove_columns => [qw/orphan/]})
or die error(404 => 'Invalid Event');
}
else {
$event = $schema->resultset('Event')->find({event_id => $event_id}, {remove_columns => [qw/orphan facets/]})
or die error(404 => 'Invalid Event');
}
$attrs{order_by} = {-asc => 'event_ord'};
if ($route->{from} eq 'single_event') {
$res->content_type('application/json');
$res->raw_body($event);
return $res;
}
if ($p->{load_subtests}) {
# If we are loading subtests then we want ALL descendants, so here
# we take the parent event and find the next event of the same
# nesting level, then we want all events with an event_ord between
# them (in the same job);
my $end_at = $schema->resultset('Event')->find(
{%query, nested => $event->nested, event_ord => {'>' => $event->event_ord}},
{
columns => [qw/event_ord/],
%attrs,
},
);
$query{event_ord} = {'>' => $event->event_ord, '<' => $end_at->event_ord};
}
else {
# We want direct descendants only
$query{'parent_id'} = $event_id;
}
$rs = $schema->resultset('Event')->search(
\%query,
{
remove_columns => ['orphan'],
'+select' => [
'facets IS NOT NULL AS has_facets',
'orphan IS NOT NULL AS has_orphan',
],
'+as' => [
'has_facets',
'has_orphan',
],
%attrs
},
);
$res->stream(
env => $req->env,
content_type => 'application/x-jsonl; charset=utf-8',
resultset => $rs,
data_method => 'st_line_data',
);
return $res;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test2::Harness::UI::Controller::Events
=head1 DESCRIPTION
=head1 SYNOPSIS
TODO
=head1 SOURCE
The source code repository for Test2-Harness-UI can be found at
F<http://github.com/Test-More/Test2-Harness-UI/>.
=head1 MAINTAINERS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 AUTHORS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 COPYRIGHT
Copyright 2019 Chad Granum E<lt>exodist7@gmail.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
=cut