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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 | <?php /** * GitPHP Blob * * Represents a single blob * * @author Christopher Han <xiphux@gmail.com> * @copyright Copyright (c) 2010 Christopher Han * @package GitPHP * @subpackage Git */ require_once(GITPHP_GITOBJECTDIR . 'FilesystemObject.class.php'); require_once(GITPHP_GITOBJECTDIR . 'GitExe.class.php'); /** * Commit class * * @package GitPHP * @subpackage Git */ class GitPHP_Blob extends GitPHP_FilesystemObject { /** * data * * Stores the file data * * @access protected */ protected $data; /** * dataRead * * Stores whether data has been read * * @access protected */ protected $dataRead = false; /** * size * * Stores the size * * @access protected */ protected $size = null; /** * history * * Stores the history * * @access protected */ protected $history = array(); /** * historyRead * * Stores whether the history has been read * * @access protected */ protected $historyRead = false; /** * blame * * Stores blame info * * @access protected */ protected $blame = array(); /** * blameRead * * Stores whether blame was read * * @access protected */ protected $blameRead = false; /** * __construct * * Instantiates object * * @access public * @param mixed $project the project * @param string $hash object hash * @return mixed blob object * @throws Exception exception on invalid hash */ public function __construct($project, $hash) { parent::__construct($project, $hash); } /** * GetData * * Gets the blob data * * @access public * @param boolean $explode true to explode data into an array of lines * @return string blob data */ public function GetData($explode = false) { if (!$this->dataRead) $this->ReadData(); if ($explode) return explode("\n", $this->data); else return $this->data; } /** * ReadData * * Reads the blob data * * @access private */ private function ReadData() { $this->dataRead = true; if (GitPHP_Config::GetInstance()->GetValue('compat', false)) { $exe = new GitPHP_GitExe($this->GetProject()); $args = array(); $args[] = 'blob'; $args[] = $this->hash; $this->data = $exe->Execute(GIT_CAT_FILE, $args); } else { $this->data = $this->GetProject()->GetObject($this->hash); } GitPHP_Cache::GetInstance()->Set($this->GetCacheKey(), $this); } /** * FileType * * Gets a file type from its octal mode * * @access public * @static * @param string $octMode octal mode * @param boolean $local true if caller wants localized type * @return string file type */ public static function FileType($octMode, $local = false) { $mode = octdec($octMode); if (($mode & 0x4000) == 0x4000) { if ($local) { return __('directory'); } else { return 'directory'; } } else if (($mode & 0xA000) == 0xA000) { if ($local) { return __('symlink'); } else { return 'symlink'; } } else if (($mode & 0x8000) == 0x8000) { if ($local) { return __('file'); } else { return 'file'; } } if ($local) { return __('unknown'); } else { return 'unknown'; } } /** * GetSize * * Gets the blob size * * @access public * @return integer size */ public function GetSize() { if ($this->size !== null) { return $this->size; } if (!$this->dataRead) $this->ReadData(); return strlen($this->data); } /** * SetSize * * Sets the blob size * * @access public * @param integer $size size */ public function SetSize($size) { $this->size = $size; } /** * IsBinary * * Tests if this blob is a binary file * * @access public * @return boolean true if binary file */ public function IsBinary() { if (!$this->dataRead) $this->ReadData(); $data = $this->data; if (strlen($this->data) > 8000) $data = substr($data, 0, 8000); return strpos($data, chr(0)) !== false; } /** * FileMime * * Get the file mimetype * * @access public * @param boolean $short true to only the type group * @return string mime */ public function FileMime($short = false) { $mime = $this->FileMime_Fileinfo(); if (empty($mime)) $mime = $this->FileMime_File(); if (empty($mime)) $mime = $this->FileMime_Extension(); if ((!empty($mime)) && $short) { $mime = strtok($mime, '/'); } return $mime; } /** * FileMime_Fileinfo * * Get the file mimetype using fileinfo * * @access private * @return string mimetype */ private function FileMime_Fileinfo() { if (!function_exists('finfo_buffer')) return ''; if (!$this->dataRead) $this->ReadData(); if (!$this->data) return ''; $mime = ''; $magicdb = GitPHP_Config::GetInstance()->GetValue('magicdb', null); if (empty($magicdb)) { if (GitPHP_Util::IsWindows()) { $magicdb = 'C:\\wamp\\php\\extras\\magic'; } else { $magicdb = '/usr/share/misc/magic'; } } $finfo = @finfo_open(FILEINFO_MIME, $magicdb); if ($finfo) { $mime = finfo_buffer($finfo, $this->data, FILEINFO_MIME); if ($mime && strpos($mime, '/')) { if (strpos($mime, ';')) { $mime = strtok($mime, ';'); } } finfo_close($finfo); } return $mime; } /** * FileMime_File * * Get the file mimetype using file command * * @access private * @return string mimetype */ private function FileMime_File() { if (GitPHP_Util::IsWindows()) { return ''; } if (!$this->dataRead) $this->ReadData(); if (!$this->data) return ''; $descspec = array( 0 => array('pipe', 'r'), 1 => array('pipe', 'w') ); $proc = proc_open('file -b --mime -', $descspec, $pipes); if (is_resource($proc)) { fwrite($pipes[0], $this->data); fclose($pipes[0]); $mime = stream_get_contents($pipes[1]); fclose($pipes[1]); proc_close($proc); if ($mime && strpos($mime, '/')) { if (strpos($mime, ';')) { $mime = strtok($mime, ';'); } return $mime; } } return ''; } /** * FileMime_Extension * * Get the file mimetype using the file extension * * @access private * @return string mimetype */ private function FileMime_Extension() { $file = $this->GetName(); if (empty($file)) return ''; $dotpos = strrpos($file, '.'); if ($dotpos !== FALSE) $file = substr($file, $dotpos+1); switch ($file) { case 'jpg': case 'jpeg': case 'jpe': return 'image/jpeg'; break; case 'gif': return 'image/gif'; break; case 'png'; return 'image/png'; break; } return ''; } /** * GetHistory * * Gets the history of this file * * @access public * @return array array of filediff changes */ public function GetHistory() { if (!$this->historyRead) $this->ReadHistory(); return $this->history; } /** * ReadHistory * * Reads the file history * * @access private */ private function ReadHistory() { $this->historyRead = true; $exe = new GitPHP_GitExe($this->GetProject()); $args = array(); if (isset($this->commit)) $args[] = $this->commit->GetHash(); else $args[] = 'HEAD'; $args[] = '|'; $args[] = $exe->GetBinary(); $args[] = '--git-dir=' . $this->GetProject()->GetPath(); $args[] = GIT_DIFF_TREE; $args[] = '-r'; $args[] = '--stdin'; $args[] = '--'; $args[] = $this->GetPath(); $historylines = explode("\n", $exe->Execute(GIT_REV_LIST, $args)); $commit = null; foreach ($historylines as $line) { if (preg_match('/^([0-9a-fA-F]{40})/', $line, $regs)) { $commit = $this->GetProject()->GetCommit($regs[1]); } else if ($commit) { try { $history = new GitPHP_FileDiff($this->GetProject(), $line); $history->SetCommit($commit); $this->history[] = $history; } catch (Exception $e) { } unset ($commit); } } } /** * GetBlame * * Gets blame info * * @access public * @return array blame array (line to commit mapping) */ public function GetBlame() { if (!$this->blameRead) $this->ReadBlame(); return $this->blame; } /** * ReadBlame * * Read blame info * * @access private */ private function ReadBlame() { $this->blameRead = true; $exe = new GitPHP_GitExe($this->GetProject()); $args = array(); $args[] = '-s'; $args[] = '-l'; if ($this->commit) $args[] = $this->commit->GetHash(); else $args[] = 'HEAD'; $args[] = '--'; $args[] = $this->GetPath(); $blamelines = explode("\n", $exe->Execute(GIT_BLAME, $args)); $lastcommit = ''; foreach ($blamelines as $line) { if (preg_match('/^([0-9a-fA-F]{40})(\s+.+)?\s+([0-9]+)\)/', $line, $regs)) { if ($regs[1] != $lastcommit) { $this->blame[(int)($regs[3])] = $this->GetProject()->GetCommit($regs[1]); $lastcommit = $regs[1]; } } } } /** * __sleep * * Called to prepare the object for serialization * * @access public * @return array list of properties to serialize */ public function __sleep() { $properties = array('data', 'dataRead'); return array_merge($properties, parent::__sleep()); } /** * GetCacheKey * * Gets the cache key to use for this object * * @access public * @return string cache key */ public function GetCacheKey() { $key = parent::GetCacheKey(); if (!empty($key)) $key .= '|'; $key .= 'blob|' . $this->hash; return $key; } } |