Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
		
			
				
	
	
		
			84 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
$root = dirname(dirname(dirname(__FILE__)));
 | 
						|
require_once $root.'/scripts/__init_script__.php';
 | 
						|
 | 
						|
$args = new PhutilArgumentParser($argv);
 | 
						|
$args->setTagline('manage open Audit requests');
 | 
						|
$args->setSynopsis(<<<EOSYNOPSIS
 | 
						|
**audit.php** __repository_callsign__
 | 
						|
    Close all open audit requests in a repository. This is intended to
 | 
						|
    reset the state of an imported repository which triggered a bunch of
 | 
						|
    spurious audit requests during import.
 | 
						|
 | 
						|
EOSYNOPSIS
 | 
						|
  );
 | 
						|
$args->parseStandardArguments();
 | 
						|
$args->parse(
 | 
						|
  array(
 | 
						|
    array(
 | 
						|
      'name'      => 'more',
 | 
						|
      'wildcard'  => true,
 | 
						|
    ),
 | 
						|
  ));
 | 
						|
 | 
						|
$more = $args->getArg('more');
 | 
						|
if (count($more) !== 1) {
 | 
						|
  $args->printHelpAndExit();
 | 
						|
}
 | 
						|
$callsign = reset($more);
 | 
						|
 | 
						|
$repository = id(new PhabricatorRepository())->loadOneWhere(
 | 
						|
  'callsign = %s',
 | 
						|
  $callsign);
 | 
						|
if (!$repository) {
 | 
						|
  throw new Exception("No repository exists with callsign '{$callsign}'!");
 | 
						|
}
 | 
						|
 | 
						|
$ok = phutil_console_confirm(
 | 
						|
  'This will reset all open audit requests ("Audit Required" or "Concern '.
 | 
						|
  'Raised") for commits in this repository to "Audit Not Required". This '.
 | 
						|
  'operation destroys information and can not be undone! Are you sure '.
 | 
						|
  'you want to proceed?');
 | 
						|
if (!$ok) {
 | 
						|
  echo "OK, aborting.\n";
 | 
						|
  die(1);
 | 
						|
}
 | 
						|
 | 
						|
echo "Loading commits...\n";
 | 
						|
$all_commits = id(new PhabricatorRepositoryCommit())->loadAllWhere(
 | 
						|
  'repositoryID = %d',
 | 
						|
  $repository->getID());
 | 
						|
 | 
						|
echo "Clearing audit requests...\n";
 | 
						|
 | 
						|
foreach ($all_commits as $commit) {
 | 
						|
  $query = id(new PhabricatorAuditQuery())
 | 
						|
    ->withStatus(PhabricatorAuditQuery::STATUS_OPEN)
 | 
						|
    ->withCommitPHIDs(array($commit->getPHID()));
 | 
						|
  $requests = $query->execute();
 | 
						|
 | 
						|
  echo "Clearing ".$commit->getPHID()."... ";
 | 
						|
 | 
						|
  if (!$requests) {
 | 
						|
    echo "nothing to do.\n";
 | 
						|
    continue;
 | 
						|
  } else {
 | 
						|
    echo count($requests)." requests to clear";
 | 
						|
  }
 | 
						|
 | 
						|
  foreach ($requests as $request) {
 | 
						|
    $request->setAuditStatus(
 | 
						|
      PhabricatorAuditStatusConstants::AUDIT_NOT_REQUIRED);
 | 
						|
    $request->save();
 | 
						|
    echo ".";
 | 
						|
  }
 | 
						|
 | 
						|
  $commit->setAuditStatus(PhabricatorAuditCommitStatusConstants::NONE);
 | 
						|
  $commit->save();
 | 
						|
  echo "\n";
 | 
						|
}
 | 
						|
 | 
						|
echo "Done.\n";
 |