2009-11-01 10:42:45 +00:00
|
|
|
<?php
|
2008-12-29 19:13:56 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// //
|
|
|
|
// NOTICE OF COPYRIGHT //
|
|
|
|
// //
|
|
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
|
|
// http://moodle.org //
|
|
|
|
// //
|
|
|
|
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
|
|
|
// //
|
|
|
|
// This program 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 2 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program 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: //
|
|
|
|
// //
|
|
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
|
|
// //
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
require_once('../../../config.php');
|
|
|
|
require_once($CFG->dirroot.'/'.$CFG->admin.'/report/security/lib.php');
|
|
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
|
|
|
|
|
|
require_login();
|
|
|
|
|
|
|
|
$issue = optional_param('issue', '', PARAM_ALPHANUMEXT); // show detailed info about one issue only
|
|
|
|
|
|
|
|
$issues = report_security_get_issue_list();
|
|
|
|
|
|
|
|
// test if issue valid string
|
|
|
|
if (array_search($issue, $issues, true) === false) {
|
|
|
|
$issue = '';
|
|
|
|
}
|
|
|
|
|
2009-01-27 15:06:40 +00:00
|
|
|
// we may need a bit more memory and this may take a long time to process
|
|
|
|
@raise_memory_limit('128M');
|
|
|
|
@set_time_limit(0);
|
|
|
|
|
2008-12-29 19:13:56 +00:00
|
|
|
// Print the header.
|
|
|
|
admin_externalpage_setup('reportsecurity');
|
2010-03-31 08:05:53 +00:00
|
|
|
echo $OUTPUT->header();
|
2008-12-29 19:13:56 +00:00
|
|
|
|
2009-08-06 08:17:12 +00:00
|
|
|
echo $OUTPUT->heading(get_string('reportsecurity', 'report_security'));
|
2008-12-29 19:13:56 +00:00
|
|
|
|
2009-01-27 16:21:56 +00:00
|
|
|
echo '<div id="timewarning">'.get_string('timewarning', 'report_security').'</div>';
|
|
|
|
while(@ob_end_flush());
|
|
|
|
@flush();
|
|
|
|
|
2008-12-29 19:13:56 +00:00
|
|
|
$strok = '<span class="statusok">'.get_string('statusok', 'report_security').'</span>';
|
|
|
|
$strinfo = '<span class="statusinfo">'.get_string('statusinfo', 'report_security').'</span>';
|
|
|
|
$strwarning = '<span class="statuswarning">'.get_string('statuswarning', 'report_security').'</span>';
|
|
|
|
$strserious = '<span class="statusserious">'.get_string('statusserious', 'report_security').'</span>';
|
|
|
|
$strcritical = '<span class="statuscritical">'.get_string('statuscritical', 'report_security').'</span>';
|
|
|
|
|
|
|
|
$strissue = get_string('issue', 'report_security');
|
|
|
|
$strstatus = get_string('status', 'report_security');
|
|
|
|
$strdesc = get_string('description', 'report_security');
|
|
|
|
$strconfig = get_string('configuration', 'report_security');
|
|
|
|
|
|
|
|
$statusarr = array(REPORT_SECURITY_OK => $strok,
|
|
|
|
REPORT_SECURITY_INFO => $strinfo,
|
|
|
|
REPORT_SECURITY_WARNING => $strwarning,
|
|
|
|
REPORT_SECURITY_SERIOUS => $strserious,
|
|
|
|
REPORT_SECURITY_CRITICAL => $strcritical);
|
|
|
|
|
|
|
|
$url = "$CFG->wwwroot/$CFG->admin/report/security/index.php";
|
|
|
|
|
|
|
|
if ($issue and ($result = $issue(true))) {
|
2009-01-27 16:21:56 +00:00
|
|
|
report_security_hide_timearning();
|
|
|
|
|
2009-08-20 08:39:07 +00:00
|
|
|
$table = new html_table();
|
2008-12-29 19:13:56 +00:00
|
|
|
$table->head = array($strissue, $strstatus, $strdesc, $strconfig);
|
|
|
|
$table->size = array('30%', '10%', '50%', '10%' );
|
|
|
|
$table->align = array('left', 'left', 'left', 'left');
|
|
|
|
$table->width = '90%';
|
|
|
|
$table->data = array();
|
|
|
|
|
|
|
|
// print detail of one issue only
|
|
|
|
$row = array();
|
2009-02-15 09:45:34 +00:00
|
|
|
$row[0] = report_security_doc_link($issue, $result->name);
|
2008-12-29 19:13:56 +00:00
|
|
|
$row[1] = $statusarr[$result->status];
|
|
|
|
$row[2] = $result->info;
|
2009-01-15 18:30:26 +00:00
|
|
|
$row[3] = is_null($result->link) ? ' ' : $result->link;
|
2008-12-29 19:13:56 +00:00
|
|
|
|
2009-05-06 08:48:13 +00:00
|
|
|
$PAGE->set_docs_path('admin/report/security/' . $issue);
|
2009-02-19 07:32:23 +00:00
|
|
|
|
2008-12-29 19:13:56 +00:00
|
|
|
$table->data[] = $row;
|
|
|
|
|
2010-03-20 22:15:54 +00:00
|
|
|
echo html_writer::table($table);
|
2008-12-29 19:13:56 +00:00
|
|
|
|
2009-08-10 04:53:22 +00:00
|
|
|
echo $OUTPUT->box($result->details, 'generalbox boxwidthnormal boxaligncenter'); // TODO: add proper css
|
2008-12-29 19:13:56 +00:00
|
|
|
|
2009-08-18 04:28:40 +00:00
|
|
|
echo $OUTPUT->continue_button($url);
|
2008-12-29 19:13:56 +00:00
|
|
|
|
|
|
|
} else {
|
2009-01-27 16:21:56 +00:00
|
|
|
report_security_hide_timearning();
|
|
|
|
|
2009-08-20 08:39:07 +00:00
|
|
|
$table = new html_table();
|
2008-12-29 19:13:56 +00:00
|
|
|
$table->head = array($strissue, $strstatus, $strdesc);
|
|
|
|
$table->size = array('30%', '10%', '60%' );
|
|
|
|
$table->align = array('left', 'left', 'left');
|
|
|
|
$table->width = '90%';
|
|
|
|
$table->data = array();
|
|
|
|
|
|
|
|
foreach ($issues as $issue) {
|
|
|
|
$result = $issue(false);
|
|
|
|
if (!$result) {
|
|
|
|
// ignore this test
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$row = array();
|
|
|
|
$row[0] = "<a href='$url?issue=$result->issue'>$result->name</a>";
|
|
|
|
$row[1] = $statusarr[$result->status];
|
|
|
|
$row[2] = $result->info;
|
|
|
|
|
|
|
|
$table->data[] = $row;
|
|
|
|
}
|
2010-03-20 22:15:54 +00:00
|
|
|
echo html_writer::table($table);
|
2008-12-29 19:13:56 +00:00
|
|
|
}
|
|
|
|
|
2009-08-06 14:12:46 +00:00
|
|
|
echo $OUTPUT->footer();
|