puggan

branch_status

Sep 5th, 2018 (edited)
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.07 KB | None | 0 0
  1. #!/usr/bin/env php
  2. <?php
  3.  
  4.     $wd = getcwd();
  5.  
  6.     $ref = $argv[1] ?? '' ?: 'master';
  7.  
  8.     $git_dir = shell_exec('git rev-parse --show-toplevel');
  9.  
  10.     if(!$git_dir) {
  11.         fprintf(STDERR, 'Not inside a git path');
  12.         exit(1);
  13.     }
  14.  
  15.     $list_raw = explode(PHP_EOL, trim(shell_exec("git branch --list --format '%(objectname) %(refname:short)  %(committerdate)'")));
  16.     $branches = [];
  17.     $shas = [];
  18.     foreach($list_raw as $row)
  19.     {
  20.         $columns = explode(' ', $row, 3);
  21.         $columns = array_values(array_filter($columns));
  22.         $branches[$columns[1]] = [
  23.             'sha' => $columns[0],
  24.             'name' => $columns[1],
  25.             'date' => $columns[2],
  26.             'time' => strtotime($columns[2]),
  27.         ];
  28.         $shas[$columns[0]] = [];
  29.     }
  30.     foreach(array_keys($shas) as $sha)
  31.     {
  32.         $log = trim(shell_exec('git log --oneline ' . $ref . '..' . $sha));
  33.         if($log)
  34.         {
  35.             $shas[$sha] = count(explode(PHP_EOL, $log));
  36.             continue;
  37.         }
  38.  
  39.         $log = trim(shell_exec('git log --oneline ' . $sha . '..' . $ref));
  40.         if($log)
  41.         {
  42.             $shas[$sha] = -count(explode(PHP_EOL, $log));
  43.             continue;
  44.         }
  45.  
  46.         $shas[$sha] = 0;
  47.     }
  48.     foreach(array_keys($branches) as $branch)
  49.     {
  50.         $branches[$branch]['commits'] = $shas[$branches[$branch]['sha']];
  51.     }
  52.  
  53.     if(empty($branches[$ref]))
  54.     {
  55.         $branches[$ref] = [
  56.             'sha' => $ref,
  57.             'name' => $ref,
  58.             'date' => null,
  59.             'time' => 0,
  60.             'commits' => 0,
  61.         ];
  62.     }
  63.  
  64.     usort($branches, function($a, $b) {
  65.         if($a['commits'] < 1 && $b['commits'] > 0)
  66.         {
  67.             return 1;
  68.         }
  69.         if($a['commits'] > 0 && $b['commits'] < 1)
  70.         {
  71.             return -1;
  72.         }
  73.         if($a['time'] !== $b['time'])
  74.         {
  75.             return $b['time'] - $a['time'];
  76.         }
  77.         if($a['commits'] !== $b['commits'])
  78.         {
  79.             return $b['commits'] - $a['commits'];
  80.         }
  81.         return strcmp($a['name'], $b['name']);
  82.     });
  83.  
  84.     $timelimit = time() - 12*3600;
  85.  
  86.     foreach($branches as $branch)
  87.     {
  88.         if($branch['commits']) {
  89.             printf(
  90.                 "%5d  %10s  %s\n",
  91.                 $branch['commits'],
  92.                 date($branch['time'] < $timelimit ? 'Y-m-d' : ' H:i:s ', $branch['time']),
  93.                 $branch['name']
  94.             );
  95.         } else {
  96.             echo '                -- ', $branch['name'], ' --', PHP_EOL;
  97.         }
  98.     }
  99.  
Add Comment
Please, Sign In to add comment