mirror of
https://github.com/ivuorinen/branch-usage-checker.git
synced 2026-03-05 18:55:55 +00:00
Initial commit
This commit is contained in:
0
app/Commands/.gitkeep
Normal file
0
app/Commands/.gitkeep
Normal file
155
app/Commands/CheckCommand.php
Normal file
155
app/Commands/CheckCommand.php
Normal file
@@ -0,0 +1,155 @@
|
||||
<?php
|
||||
|
||||
namespace App\Commands;
|
||||
|
||||
use App\Dto\PackagistApiPackagePayload;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use LaravelZero\Framework\Commands\Command;
|
||||
|
||||
class CheckCommand extends Command {
|
||||
protected $signature = 'check
|
||||
{vendor : Package vendor (required)}
|
||||
{package : Package name (required)}
|
||||
{months=9 : How many months should we return for review (optional)}
|
||||
';
|
||||
protected $description = 'Check package branch usage';
|
||||
|
||||
private string $vendor = '';
|
||||
private string $package = '';
|
||||
private string $filter = '';
|
||||
private int $total_branches = 0;
|
||||
|
||||
public function handle() : int {
|
||||
$this->vendor = (string) $this->argument( 'vendor' );
|
||||
$this->package = (string) $this->argument( 'package' );
|
||||
$months = (int) $this->argument( 'months' );
|
||||
|
||||
$this->info( 'Checking: ' . sprintf( '%s/%s', $this->vendor, $this->package ) );
|
||||
$this->info( 'Months: ' . $months );
|
||||
|
||||
$payload = Http::get( sprintf(
|
||||
'https://packagist.org/packages/%s/%s.json',
|
||||
$this->vendor,
|
||||
$this->package
|
||||
) );
|
||||
|
||||
$this->filter = now()->subMonths( $months )->day( 1 )->toDateString();
|
||||
|
||||
try {
|
||||
$pkg = new PackagistApiPackagePayload( $payload->json() );
|
||||
$this->info( 'Found the package. Type: ' . $pkg->type );
|
||||
|
||||
$versions = collect( $pkg->versions ?? [] )
|
||||
->keys()
|
||||
// Filter actual versions out.
|
||||
->filter( fn( $version ) => \str_starts_with( $version, 'dev-' ) )
|
||||
->sort();
|
||||
|
||||
$this->total_branches = $versions->count();
|
||||
|
||||
$this->info( sprintf(
|
||||
'Package has %d branches. Starting to download statistics.',
|
||||
$this->total_branches
|
||||
) );
|
||||
|
||||
$statistics = collect( $versions )
|
||||
->mapWithKeys( fn( $branch ) => $this->get_statistics( $branch ) )
|
||||
->toArray();
|
||||
|
||||
$this->info( 'Downloaded statistics...' );
|
||||
|
||||
$this->output_table( $statistics );
|
||||
$this->output_suggestions( $statistics );
|
||||
}
|
||||
catch ( \Exception $e ) {
|
||||
$this->error( $e->getMessage(), $e );
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
private function get_statistics( $branch ) : array {
|
||||
$payload = Http::get( sprintf(
|
||||
'https://packagist.org/packages/%s/%s/stats/%s.json?average=monthly&from=%s',
|
||||
$this->vendor,
|
||||
$this->package,
|
||||
$branch,
|
||||
$this->filter
|
||||
) );
|
||||
|
||||
$data = collect( $payload->json() );
|
||||
$labels = collect( $data->get( 'labels', [] ) )->toArray();
|
||||
$values = collect( $data->get( 'values', [] ) )->flatten()->toArray();
|
||||
|
||||
$labels[] = 'Total';
|
||||
$values[] = array_sum( $values );
|
||||
|
||||
return [ $branch => \array_combine( $labels, $values ) ];
|
||||
}
|
||||
|
||||
private function output_table( array $statistics ) : void {
|
||||
if ( empty( $statistics ) ) {
|
||||
$this->info( 'No statistics found... Stopping.' );
|
||||
exit( 0 );
|
||||
}
|
||||
|
||||
$tableHeaders = [ '' => 'Branch' ];
|
||||
$tableBranches = [];
|
||||
|
||||
foreach ( $statistics as $branch => $stats ) {
|
||||
foreach ( $stats as $m => $v ) {
|
||||
$tableHeaders[ $m ] = (string) $m;
|
||||
$tableBranches[ $branch ][ $branch ] = $branch;
|
||||
$tableBranches[ $branch ][ $m ] = (string) $v;
|
||||
}
|
||||
}
|
||||
|
||||
$this->line('');
|
||||
$this->table( $tableHeaders, $tableBranches );
|
||||
}
|
||||
|
||||
private function output_suggestions( array $statistics = [] ) : void {
|
||||
$deletable = [];
|
||||
if ( empty( $statistics ) ) {
|
||||
$this->info( 'No statistics to give suggestions for. Quitting...' );
|
||||
exit( 0 );
|
||||
}
|
||||
|
||||
foreach ( $statistics as $k => $values ) {
|
||||
if ( ! empty( $values['Total'] ) ) {
|
||||
continue;
|
||||
}
|
||||
$deletable[ $k ] = $values['Total'];
|
||||
}
|
||||
|
||||
if ( empty( $deletable ) ) {
|
||||
$this->info( 'No suggestions available. Good job!' );
|
||||
exit( 0 );
|
||||
}
|
||||
|
||||
$keys = array_keys( $deletable );
|
||||
|
||||
$branches = collect( $keys )->mapWithKeys( function ( $branch ) {
|
||||
return [
|
||||
$branch => [
|
||||
$branch,
|
||||
sprintf(
|
||||
'https://packagist.org/packages/%s/%s#%s',
|
||||
$this->vendor,
|
||||
$this->package,
|
||||
$branch
|
||||
),
|
||||
],
|
||||
];
|
||||
} );
|
||||
|
||||
$this->line('');
|
||||
$this->info( sprintf(
|
||||
'Found %d branches (out of %d total) with no downloads since %s',
|
||||
$branches->count(),
|
||||
$this->total_branches,
|
||||
$this->filter
|
||||
) );
|
||||
$this->table( [ 'Branch', 'URL' ], $branches );
|
||||
}
|
||||
}
|
||||
52
app/Commands/InspireCommand.php
Normal file
52
app/Commands/InspireCommand.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
namespace App\Commands;
|
||||
|
||||
use Illuminate\Console\Scheduling\Schedule;
|
||||
use LaravelZero\Framework\Commands\Command;
|
||||
use function Termwind\{render};
|
||||
|
||||
class InspireCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The signature of the command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'inspire {name=Artisan}';
|
||||
|
||||
/**
|
||||
* The description of the command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Display an inspiring quote';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
render(<<<'HTML'
|
||||
<div class="py-1 ml-2">
|
||||
<div class="px-1 bg-blue-300 text-black">Laravel Zero</div>
|
||||
<em class="ml-1">
|
||||
Simplicity is the ultimate sophistication.
|
||||
</em>
|
||||
</div>
|
||||
HTML);
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the command's schedule.
|
||||
*
|
||||
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
||||
* @return void
|
||||
*/
|
||||
public function schedule(Schedule $schedule)
|
||||
{
|
||||
// $schedule->command(static::class)->everyMinute();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user