1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 10:57:08 +01:00
psalm/src/Psalm/Plugin/Shepherd.php

75 lines
2.5 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Plugin;
use Psalm\Codebase;
use Psalm\SourceControl\SourceControlInfo;
2019-03-31 20:02:30 +02:00
class Shepherd implements \Psalm\Plugin\Hook\AfterAnalysisInterface
{
/**
* Called after analysis is complete
* @param array<int, array{severity: string, line_from: int, line_to: int, type: string, message: string,
* file_name: string, file_path: string, snippet: string, from: int, to: int,
* snippet_from: int, snippet_to: int, column_from: int, column_to: int, selected_text: string}> $issues
*
* @return void
*/
public static function afterAnalysis(
Codebase $codebase,
array $issues,
array $build_info,
SourceControlInfo $source_control_info = null
) {
2019-03-28 17:06:21 +01:00
if ($source_control_info instanceof \Psalm\SourceControl\Git\GitInfo && $build_info) {
$data = [
'build' => $build_info,
'git' => $source_control_info->toArray(),
'issues' => array_filter(
$issues,
function (array $i) : bool {
return $i['severity'] === 'error';
}
),
'coverage_map' => $codebase->analyzer->getTypeCoverageMap($codebase),
'coverage' => $codebase->analyzer->getTotalTypeCoverage($codebase)
];
$payload = json_encode($data);
2019-03-31 20:02:30 +02:00
$base_address = $codebase->config->shepherd_host;
if (parse_url($base_address, PHP_URL_SCHEME) === null) {
$base_address = 'https://' . $base_address;
}
// Prepare new cURL resource
$ch = curl_init($base_address . '/telemetry');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
// Set HTTP Header for POST request
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
[
'Content-Type: application/json',
'Content-Length: ' . strlen($payload)
]
);
// Submit the POST request
2019-03-28 17:06:21 +01:00
$return = curl_exec($ch);
if ($return !== '') {
2019-03-31 20:02:30 +02:00
echo 'Error with Psalm Shepherd:' . PHP_EOL;
2019-03-28 17:06:21 +01:00
echo $return . PHP_EOL;
}
// Close cURL session handle
curl_close($ch);
}
}
}