class SiteAuditCheckInsightsAnalyze in Site Audit 7
Class SiteAuditCheckInsightsAnalyze.
Hierarchy
- class \SiteAuditCheckAbstract
Expanded class hierarchy of SiteAuditCheckInsightsAnalyze
File
- Check/
Insights/ Analyze.php, line 10 - Contains \SiteAudit\Check\Insights\Analyze.
View source
class SiteAuditCheckInsightsAnalyze extends SiteAuditCheckAbstract {
/**
* Implements \SiteAudit\Check\Abstract\getLabel().
*/
public function getLabel() {
return dt('Report');
}
/**
* Implements \SiteAudit\Check\Abstract\getDescription().
*/
public function getDescription() {
return dt('Analysis by the Google PageSpeed Insights service');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultFail().
*/
public function getResultFail() {
if (!empty($this->registry['errors'])) {
if (drush_get_option('html')) {
$ret_val = '<ul><li>' . implode('</li><li>', $this->registry['errors']) . '</li></ul>';
}
else {
$ret_val = implode(PHP_EOL, $this->registry['errors']);
}
return $ret_val;
}
$this
->getResultPass();
}
/**
* Implements \SiteAudit\Check\Abstract\getResultInfo().
*/
public function getResultInfo() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultPass().
*/
public function getResultPass() {
if ($this->abort) {
return;
}
$ret_val = '';
if (drush_get_option('detail')) {
// Page Stats.
$stats = array();
foreach ($this->registry['json_result']->pageStats as $stat_name => $count) {
$formatted_stat_name = ucfirst(preg_replace('/(?<!^)((?<![[:upper:]])[[:upper:]]|[[:upper:]](?![[:upper:]]))/', ' $1', $stat_name));
if (stripos($stat_name, 'bytes') !== FALSE) {
$stats[$formatted_stat_name] = round($count / 1024, 2) . 'kB';
}
else {
$stats[$formatted_stat_name] = $count;
}
}
if (drush_get_option('html')) {
$ret_val .= '<h3>' . dt('Page stats') . '</h3>';
$ret_val .= '<dl class="dl-horizontal">';
foreach ($stats as $name => $count) {
$ret_val .= '<dt>' . $name . '</dt>';
$ret_val .= '<dd>' . $count . '</dd>';
}
$ret_val .= '</dl>';
}
else {
$ret_val .= dt('Page stats');
foreach ($stats as $name => $count) {
$ret_val .= PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 6);
}
$ret_val .= '- ' . $name . ': ' . $count;
}
}
$impact_filter = drush_get_option('impact');
// Results.
if (drush_get_option('html')) {
$ret_val .= '<h3>' . dt('Detailed results') . '</h3>';
}
else {
$ret_val .= PHP_EOL . str_repeat(' ', 6) . dt('Detailed results:');
}
$rendered_result_count = 0;
// @codingStandardsIgnoreStart
foreach ($this->registry['json_result']->formattedResults->ruleResults as $resultValues) {
rtrim($ret_val);
// Filter out based on impact threshold.
if ($resultValues->ruleImpact < $impact_filter) {
continue;
}
$rendered_result_count++;
// Build impact label.
$impact = '';
if ($resultValues->ruleImpact >= 3) {
$impact = dt('(HIGH impact: @ruleImpact)', array(
'@ruleImpact' => $resultValues->ruleImpact,
));
}
elseif ($resultValues->ruleImpact > 0) {
$impact = dt('(low impact: @ruleImpact)', array(
'@ruleImpact' => $resultValues->ruleImpact,
));
}
// Render Rule, score and impact.
$rule_score_impact = dt('@localizedRuleName: @ruleScore @impact', array(
'@localizedRuleName' => $resultValues->localizedRuleName,
'@ruleScore' => $resultValues->ruleScore,
'@impact' => $impact,
));
if (drush_get_option('html')) {
$ret_val .= '<div class="alert alert-block ';
if ($resultValues->ruleScore >= 80) {
$ret_val .= 'alert-success';
}
elseif ($resultValues->ruleScore >= 60) {
$ret_val .= 'alert-warning';
}
else {
$ret_val .= 'alert-danger';
}
$ret_val .= '">' . $rule_score_impact . '</div>';
}
else {
$ret_val .= PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 8);
}
$ret_val .= $rule_score_impact;
}
if (isset($resultValues->urlBlocks)) {
foreach ($resultValues->urlBlocks as $block) {
// @codingStandardsIgnoreEnd
// Header.
if (!isset($block->header->args)) {
$header = google_json_text_replacement($block->header->format);
}
else {
$header = google_json_text_replacement($block->header->format, $block->header->args);
}
$limit = drush_get_option('limit', 0);
if ($limit > 0 && isset($block->urls) && $limit != count($block->urls) && $limit < count($block->urls)) {
$header .= ' ' . dt('Showing @limit out of @total total:', array(
'@limit' => $limit,
'@total' => count($block->urls),
));
}
if (drush_get_option('html')) {
$ret_val .= '<blockquote>' . $header;
}
else {
$ret_val .= PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 10);
}
$ret_val .= $header;
}
if (isset($block->urls) && !empty($block->urls)) {
$urls = array();
$count = 0;
foreach ($block->urls as $url) {
if ($limit > 0) {
if (++$count > $limit) {
continue;
}
}
$urls[] = google_json_text_replacement($url->result->format, $url->result->args);
}
if (drush_get_option('html')) {
$ret_val .= '<small>' . dt('URLs:');
$ret_val .= '<ul><li>' . implode('</li><li>', $urls) . '</li></ul>';
$ret_val .= '</small>';
}
else {
foreach ($urls as $url) {
$ret_val .= PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 12);
}
$ret_val .= $url;
}
}
}
if (drush_get_option('html')) {
$ret_val .= '</blockquote>';
}
}
}
}
// Explain if there are no results so it doesn't look like its broken.
if ($rendered_result_count == 0) {
if ($impact_filter) {
$ret_val .= dt('Nice, no problems to report!');
}
else {
$ret_val .= dt('No results, which is unusual...');
}
}
}
return $ret_val;
}
/**
* Implements \SiteAudit\Check\Abstract\getResultWarn().
*/
public function getResultWarn() {
return $this
->getResultPass();
}
/**
* Implements \SiteAudit\Check\Abstract\getAction().
*/
public function getAction() {
if ($this->score !== SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL) {
return dt('Full report at https://developers.google.com/speed/pagespeed/insights');
}
}
/**
* Implements \SiteAudit\Check\Abstract\calculateScore().
*/
public function calculateScore() {
$pso_url = 'https://www.googleapis.com/pagespeedonline/v1/runPagespeed';
$pso_url .= '?url=' . $this->registry['url'];
$pso_url .= '&key=' . $this->registry['key'];
$request = drupal_http_request($pso_url);
$result = $request->data;
$this->registry['json_result'] = json_decode($result);
// Failure.
if (isset($this->registry['json_result']->error)) {
$this->abort = TRUE;
$this->registry['errors'] = array();
foreach ($this->registry['json_result']->error->errors as $error) {
$this->registry['errors'][] = dt('@message (@domain - @reason)', array(
'@message' => $error->message,
'@domain' => $error->domain,
'@reason' => $error->reason,
));
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL;
}
// Access problem.
if (isset($this->registry['json_result']->responseCode) && $this->registry['json_result']->responseCode != 200) {
$this->abort = TRUE;
$this->registry['errors'] = array();
$this->registry['errors'][] = dt('@id is not accessible by PageSpeed Insights - response code (@responsecode)', array(
'@id' => $this->registry['json_result']->id,
'@responsecode' => $this->registry['json_result']->responseCode,
));
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL;
}
// Overview.
if ($this->registry['json_result']->score > 80) {
$this->percentOverride = $this->registry['json_result']->score;
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS;
}
elseif ($this->registry['json_result']->score > 60) {
$this->percentOverride = $this->registry['json_result']->score;
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN;
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SiteAuditCheckAbstract:: |
protected | property | Indicate that no other checks should be run after this check. | |
SiteAuditCheckAbstract:: |
protected | property | User has opted out of this check in configuration. | |
SiteAuditCheckAbstract:: |
protected | property | If set, will override the Report's percentage. | |
SiteAuditCheckAbstract:: |
protected | property | Use for passing data between checks within a report. | |
SiteAuditCheckAbstract:: |
protected | property | Quantifiable number associated with result on a scale of 0 to 2. | |
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
public | function | Get the report percent override, if any. | |
SiteAuditCheckAbstract:: |
public | function | Get the check registry. | |
SiteAuditCheckAbstract:: |
public | function | Gives path relative to DRUPAL_ROOT of the path is inside Drupal. | |
SiteAuditCheckAbstract:: |
public | function | Determine the result message based on the score. | |
SiteAuditCheckAbstract:: |
public | function | Get a quantifiable number representing a check result; lazy initialization. | |
SiteAuditCheckAbstract:: |
public | function | Get the CSS class associated with a score. | |
SiteAuditCheckAbstract:: |
public | function | Get the Drush message level associated with a score. | |
SiteAuditCheckAbstract:: |
public | function | Get a human readable label for a score. | |
SiteAuditCheckAbstract:: |
public | function | Display action items for a user to perform. | |
SiteAuditCheckAbstract:: |
public | function | Determine whether the check failed so badly that the report must stop. | |
SiteAuditCheckAbstract:: |
public | function | Constructor. | |
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\calculateScore(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getAction(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getDescription(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getLabel(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultFail(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultInfo(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultPass(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckInsightsAnalyze:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultWarn(). Overrides SiteAuditCheckAbstract:: |