An error occurred while loading the file. Please try again.
dta_view_submission_utils.php 23.77 KiB
<?php
// This file is part of Moodle - http://moodle.org/.
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
namespace assignsubmission_dta;
use assignsubmission_dta\dta_db_utils;
use assignsubmission_dta\dta_backend_utils;
use assignsubmission_dta\models\dta_result;
use assignsubmission_dta\models\dta_result_summary;
use assignsubmission_dta\models\dta_recommendation;
/**
 * Utility class for DTA submission plugin result display.
 * @package    assignsubmission_dta
 * @copyright  2023 Your Name <you@example.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
class dta_view_submission_utils {
    /**
     * Broadly used in logic, parametrized for easier change.
    public const ASSIGNSUBMISSION_DTA_COMPONENT_NAME = 'assignsubmission_dta';
    /**
     * Generates a short summary HTML.
     * @param int $assignmentid The assignment ID.
     * @param int $submissionid The submission ID to create a report for.
     * @return string HTML summary.
    public static function assignsubmission_dta_generate_summary_html(
        int $assignmentid,
        int $submissionid
    ): string {
        // Fetch data.
        $summary = dta_db_utils::assignsubmission_dta_get_result_summary_from_database(
            $assignmentid,
            $submissionid
        $html = '';
        // Calculate success rate, if no unknown result states or compilation errors.
        $successrate = '?';
        if ($summary->unknown_count() === 0 && $summary->compilation_error_count() === 0) {
            $successrate = round(($summary->successful_count() / $summary->result_count()) * 100, 2);
        // Generate HTML.
        $html .= $summary->successful_count() . '/';
        if ($summary->compilation_error_count() === 0 && $summary->unknown_count() === 0) {
            $html .= $summary->result_count() . ' (' . $successrate . '%)';
        } else {
            $html .= '?';
        $html .= get_string('tests_successful', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) . '<br />';
if ($summary->compilation_error_count() > 0) { $html .= $summary->compilation_error_count() . get_string('compilation_errors', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) . '<br />'; } if ($summary->unknown_count() > 0) { $html .= $summary->unknown_count() . get_string('unknown_state', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) . '<br />'; } $showncompetencies = explode(';', $summary->successfultestcompetencies); $overallcompetencies = explode(';', $summary->overalltestcompetencies); $tmp = ''; for ($index = 0, $size = count($showncompetencies); $index < $size; $index++) { $shown = $showncompetencies[$index]; $comp = $overallcompetencies[$index]; // If the competency was actually assessed, add a summary entry. if ($shown !== '0') { $tmp .= get_string('comp' . $index, self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) . ' ' . (100 * floatval($shown) / floatval($comp)) . '% ' . '<br />'; } } $html .= get_string('success_competencies', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) . '<br />' . $tmp . '<br />'; return \html_writer::div($html, 'dtaSubmissionSummary'); } /** * Generates detailed view HTML. * * @param int $assignmentid The assignment ID. * @param int $submissionid The submission to create a report for. * @return string HTML detail view. */ public static function assignsubmission_dta_generate_detail_html( int $assignmentid, int $submissionid ): string { // Fetch data. $summary = dta_db_utils::assignsubmission_dta_get_result_summary_from_database( $assignmentid, $submissionid ); $recommendations = dta_db_utils::assignsubmission_dta_get_recommendations_from_database( $assignmentid, $submissionid ); $html = ''; // *** Summary Table *** $tableheaderrowattributes = ['class' => 'dtaTableHeaderRow']; $tablerowattributes = ['class' => 'dtaTableRow']; $resultrowattributes = $tablerowattributes; $unknownattributes = 'dtaResultUnknown'; $successattributes = 'dtaResultSuccess'; $failureattributes = 'dtaResultFailure'; $compilationerrorattributes = 'dtaResultCompilationError'; $attributes = ['class' => 'dtaTableData']; // Building summary table. $tmp = \html_writer::tag( 'th', get_string('summary', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME),
['class' => 'dtaTableHeader'] ); $tmp .= \html_writer::empty_tag('th', ['class' => 'dtaTableHeader']); $header = \html_writer::tag('tr', $tmp, $tableheaderrowattributes); $header = \html_writer::tag('thead', $header); $body = ''; // Total items. $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('total_items', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $summary->result_count(), $attributes); $resultrowattributes = $tablerowattributes; $resultrowattributes['class'] .= ' ' . $unknownattributes; $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); // Tests successful. $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('tests_successful', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $summary->successful_count(), $attributes); $resultrowattributes = $tablerowattributes; $successrate = '?'; if ($summary->unknown_count() > 0 || $summary->compilation_error_count() > 0) { $resultrowattributes['class'] .= ' ' . $unknownattributes; } else { $successrate = round( ($summary->successful_count() / $summary->result_count()) * 100, 2 ); if ($successrate < 50) { $resultrowattributes['class'] .= ' ' . $compilationerrorattributes; } else if ($successrate < 75) { $resultrowattributes['class'] .= ' ' . $failureattributes; } else { $resultrowattributes['class'] .= ' ' . $successattributes; } } $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); // Failures. $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('failures', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $summary->failed_count(), $attributes); $resultrowattributes = $tablerowattributes; if ($summary->failed_count() > 0) { $resultrowattributes['class'] .= ' ' . $failureattributes; } else { $resultrowattributes['class'] .= ' ' . $successattributes; } $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); // Compilation errors. $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('compilation_errors', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes );
$tmp .= \html_writer::tag('td', $summary->compilation_error_count(), $attributes); $resultrowattributes = $tablerowattributes; if ($summary->compilation_error_count() > 0) { $resultrowattributes['class'] .= ' ' . $compilationerrorattributes; } else { $resultrowattributes['class'] .= ' ' . $successattributes; } $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); // Unknown state. $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('unknown_state', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $summary->unknown_count(), $attributes); $resultrowattributes = $tablerowattributes; if ($summary->unknown_count() > 0) { $resultrowattributes['class'] .= ' ' . $unknownattributes; } else { $resultrowattributes['class'] .= ' ' . $successattributes; } $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); // Success rate. $tmp = ''; $tmp .= \html_writer::tag( 'td', \html_writer::tag( 'b', get_string('success_rate', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) ), $attributes ); $suffix = '?'; if ($summary->compilation_error_count() === 0 && $summary->unknown_count() === 0) { $suffix = $summary->result_count() . ' (' . $successrate . '%)'; } $tmp .= \html_writer::tag( 'td', \html_writer::tag( 'b', $summary->successful_count() . '/' . $suffix ), $attributes ); $resultrowattributes = $tablerowattributes; if ($summary->unknown_count() > 0 || $summary->compilation_error_count() > 0) { $resultrowattributes['class'] .= ' ' . $unknownattributes; } else { if ($successrate !== '?' && $successrate < 50) { $resultrowattributes['class'] .= ' ' . $compilationerrorattributes; } else if ($successrate !== '?' && $successrate < 75) { $resultrowattributes['class'] .= ' ' . $failureattributes; } else if ($successrate !== '?') { $resultrowattributes['class'] .= ' ' . $successattributes; } } $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); $body = \html_writer::tag('tbody', $body); $table = \html_writer::tag('table', $header . $body, ['class' => 'dtaTable']); $html .= $table; // Add empty div for spacing after summary. $html .= \html_writer::empty_tag('div', ['class' => 'dtaSpacer']);
// *** Recommendations Table *** if (!empty($recommendations)) { // Sorting logic. $allowedsortfields = ['topic', 'exercise_name', 'difficulty', 'score']; $allowedsortdirs = ['asc', 'desc']; $sortby = isset($_POST['sortby']) ? $_POST['sortby'] : 'score'; $sortdir = isset($_POST['sortdir']) ? $_POST['sortdir'] : 'asc'; if (!in_array($sortby, $allowedsortfields)) { $sortby = 'score'; } if (!in_array($sortdir, $allowedsortdirs)) { $sortdir = 'asc'; } usort($recommendations, function ($a, $b) use ($sortby, $sortdir) { $valuea = $a->{$sortby}; $valueb = $b->{$sortby}; if (is_numeric($valuea) && is_numeric($valueb)) { $comparison = $valuea - $valueb; } else { $comparison = strnatcasecmp($valuea, $valueb); } if ($comparison === 0) { return 0; } if ($sortdir === 'asc') { return ($comparison < 0) ? -1 : 1; } else { return ($comparison < 0) ? 1 : -1; } }); $html .= \html_writer::tag( 'h3', get_string('recommendations', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) ); $generatesortableheader = function ($columnname, $displayname) use ($sortby, $sortdir) { $newsortdir = ($sortby === $columnname && $sortdir === 'asc') ? 'desc' : 'asc'; $class = 'dtaTableHeader'; if ($sortby === $columnname) { $class .= ' sorted ' . $sortdir; } // Sort button. $button = \html_writer::empty_tag('input', [ 'type' => 'submit', 'name' => 'sortbutton', 'value' => ($newsortdir === 'asc' ? '↑' : '↓'), 'class' => 'sort-button', ]); // Hidden inputs. $hiddeninputs = \html_writer::empty_tag('input', [ 'type' => 'hidden', 'name' => 'sortby', 'value' => $columnname, ]); $hiddeninputs .= \html_writer::empty_tag('input', [ 'type' => 'hidden', 'name' => 'sortdir', 'value' => $newsortdir, ]); $form = \html_writer::start_tag('form', [
'method' => 'post', 'style' => 'display:inline', ]); $form .= $hiddeninputs; $form .= $displayname . ' ' . $button; $form .= \html_writer::end_tag('form'); return \html_writer::tag('th', $form, ['class' => $class]); }; // Table header for recommendations. $tableheader = ''; $tableheader .= $generatesortableheader( 'topic', get_string('topic', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) ); $tableheader .= $generatesortableheader( 'exercise_name', get_string('exercise_name', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) ); $tableheader .= \html_writer::tag( 'th', get_string('url', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), ['class' => 'dtaTableHeader'] ); $tableheader .= $generatesortableheader( 'difficulty', get_string('difficulty', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) ); $tableheader .= $generatesortableheader( 'score', get_string('score', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME) ); $tableheader = \html_writer::tag('tr', $tableheader, ['class' => 'dtaTableHeaderRow']); $tableheader = \html_writer::tag('thead', $tableheader); // Table body for recommendations. $tablebody = ''; foreach ($recommendations as $recommendation) { $row = ''; $row .= \html_writer::tag('td', $recommendation->topic, $attributes); $row .= \html_writer::tag('td', $recommendation->exercise_name, $attributes); $row .= \html_writer::tag( 'td', \html_writer::link($recommendation->url, $recommendation->url), $attributes ); $row .= \html_writer::tag('td', $recommendation->difficulty, $attributes); $row .= \html_writer::tag('td', $recommendation->score, $attributes); $tablebody .= \html_writer::tag('tr', $row, $tablerowattributes); } $tablebody = \html_writer::tag('tbody', $tablebody); $html .= \html_writer::tag('table', $tableheader . $tablebody, ['class' => 'dtaTable']); // Add empty div for spacing after recommendations. $html .= \html_writer::empty_tag('div', ['class' => 'dtaSpacer']); } // *** Competency Assessment Table *** $body = ''; $tmp = ''; $tmp .= \html_writer::tag( 'th', get_string('competencies', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), ['class' => 'dtaTableHeader'] ); $tmp .= \html_writer::empty_tag('th', ['class' => 'dtaTableHeader']);
$header = \html_writer::tag('tr', $tmp, $tableheaderrowattributes); $header = \html_writer::tag('thead', $header); $showncompetencies = explode(';', $summary->successfultestcompetencies); $overallcompetencies = explode(';', $summary->overalltestcompetencies); for ($index = 0, $size = count($overallcompetencies); $index < $size; $index++) { $comp = $overallcompetencies[$index]; $shown = $showncompetencies[$index]; // If the competency was assessed, add a row in the table. if ($comp !== '0') { $resultrowattributes = $tablerowattributes; $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('comp' . $index, self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $resultrowattributes ); $tmp .= \html_writer::tag( 'td', (100 * floatval($shown) / floatval($comp)) . '% (' . $shown . ' / ' . $comp . ')', $resultrowattributes ); $tmp .= \html_writer::tag( 'td', get_string('comp_expl' . $index, self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $resultrowattributes ); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); } } $body = \html_writer::tag('tbody', $body); $html .= \html_writer::tag('table', $header . $body, ['class' => 'dtaTable']); // Add empty div for spacing. $html .= \html_writer::empty_tag('div', ['class' => 'dtaSpacer']); // *** Details Table *** $tmp = ''; $tmp .= \html_writer::tag( 'th', get_string('details', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), ['class' => 'dtaTableHeader'] ); $tmp .= \html_writer::empty_tag('th', ['class' => 'dtaTableHeader']); $header = \html_writer::tag('tr', $tmp, $tableheaderrowattributes); $header = \html_writer::tag('thead', $header); $body = ''; $spacerrow = null; foreach ($summary->results as $r) { // Add spacer first if not null. if (!is_null($spacerrow)) { $body .= $spacerrow; } $resultrowattributes = $tablerowattributes; // Set CSS class for colored left-border according to results state. if ($r->state === 0) { $resultrowattributes['class'] .= ' dtaResultUnknown'; } else if ($r->state === 1) { $resultrowattributes['class'] .= ' dtaResultSuccess'; } else if ($r->state === 2) { $resultrowattributes['class'] .= ' dtaResultFailure'; } else if ($r->state === 3) { $resultrowattributes['class'] .= ' dtaResultCompilationError'; } $tmp = '';
$tmp .= \html_writer::tag( 'td', get_string('package_name', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->packagename, $attributes); $tmp .= \html_writer::tag( 'td', get_string('unit_name', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->classname, $attributes); $tmp .= \html_writer::tag( 'td', get_string('test_name', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->name, $attributes); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('status', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag( 'td', dta_result::assignsubmission_dta_get_statename($r->state), $attributes ); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); // If state is different than successful, show additional info. if ($r->state !== 1) { $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('failure_type', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->failureType, $attributes); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('failure_reason', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->failureReason, $attributes); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); if (!is_null($r->lineNumber) && $r->lineNumber > 0) { $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('line_no', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->lineNumber, $attributes); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); } if (!is_null($r->columnNumber) && $r->columnNumber > 0) { $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('col_no', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes
); $tmp .= \html_writer::tag('td', $r->columnNumber, $attributes); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); } if (!is_null($r->position) && $r->position > 0) { $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('pos', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag('td', $r->position, $attributes); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); } $tmp = ''; $tmp .= \html_writer::tag( 'td', get_string('stacktrace', self::ASSIGNSUBMISSION_DTA_COMPONENT_NAME), $attributes ); $tmp .= \html_writer::tag( 'td', \html_writer::tag('details', $r->stacktrace, ['class' => 'dtaStacktraceDetails']), $attributes ); $body .= \html_writer::tag('tr', $tmp, $resultrowattributes); } if (is_null($spacerrow)) { $spacerrow = \html_writer::empty_tag('tr', ['class' => 'dtaTableSpacer']); } } $html .= \html_writer::tag('table', $header . $body, ['class' => 'dtaTable']); // Wrap generated HTML into final div. $html = \html_writer::div($html, 'dtaSubmissionDetails'); return $html; } }