1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | <?php /** * Lists all projects in a given file * * @author Christopher Han <xiphux@gmail.com> * @copyright Copyright (c) 2010 Christopher Han * @package GitPHP * @subpackage Git\ProjectList */ class GitPHP_ProjectListFile extends GitPHP_ProjectListBase { /** * The contents of the project list file * * @var string[] */ protected $fileContents = array(); /** * Whether the file has been read * * @var boolean */ protected $fileRead = false; /** * constructor * * @param string $projectRoot project root * @param string $projectFile file to read * @throws Exception if parameter is not a readable file */ public function __construct($projectRoot, $projectFile) { if (!(is_string($projectFile) && is_file($projectFile))) { throw new GitPHP_InvalidFileException($projectFile); } $this->projectConfig = $projectFile; parent::__construct($projectRoot); } /** * Populates the internal list of projects */ protected function PopulateProjects() { if (!$this->fileRead) $this->ReadFile(); foreach ($this->fileContents as $lineData) { if (isset($lineData['project'])) { $projObj = $this->LoadProject($lineData['project']); if ($projObj) { $this->projects[$lineData['project']] = $projObj; unset($projObj); } } } } /** * Loads a project * * @param string $proj project * @return GitPHP_Project project object */ protected function LoadProject($proj) { if (!$this->fileRead) $this->ReadFile(); $found = false; $owner = null; foreach ($this->fileContents as $lineData) { if (isset($lineData['project']) && ($lineData['project'] == $proj)) { $projectRoot = GitPHP_Util::AddSlash($this->projectRoot); if (is_file($projectRoot . $proj . '/HEAD')) { $found = true; if (isset($lineData['owner'])) { $owner = $lineData['owner']; } } else { $this->Log('Invalid project', $projectRoot . $proj); } break; } } if (!$found) return null; $projectObj = new GitPHP_Project($this->projectRoot, $proj); $this->ApplyGlobalConfig($projectObj); $this->ApplyGitConfig($projectObj); if (!empty($owner)) $projectObj->SetOwner($owner); if ($this->projectSettings && isset($this->projectSettings[$proj])) { $this->ApplyProjectSettings($projectObj, $this->projectSettings[$proj]); } $this->InjectProjectDependencies($projectObj); return $projectObj; } /** * Reads the file contents */ protected function ReadFile() { $this->fileRead = true; $fileString = file_get_contents($this->projectConfig); if ($fileString === false) { throw new GitPHP_ProjectListFileReadException($this->projectConfig); } $this->fileContents = array(); $fileLines = explode("\n", $fileString); foreach ($fileLines as $line) { if (preg_match('/^([^\s]+)(\s.+)?$/', $line, $regs)) { $data = array(); $data['project'] = $regs[1]; $owner = trim($regs[2]); if (!empty($owner)) { $data['owner'] = $owner; } $this->fileContents[] = $data; } } } } |