Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at https://github.com/JamesHeinrich/getID3 //
  5. // or https://www.getid3.org //
  6. // or http://getid3.sourceforge.net //
  7. // see readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // module.archive.szip.php //
  11. // module for analyzing SZIP compressed files //
  12. // dependencies: NONE //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers
  16. exit;
  17. }
  18. class getid3_szip extends getid3_handler
  19. {
  20. /**
  21. * @return bool
  22. */
  23. public function Analyze() {
  24. $info = &$this->getid3->info;
  25. $this->fseek($info['avdataoffset']);
  26. $SZIPHeader = $this->fread(6);
  27. if (substr($SZIPHeader, 0, 4) != "SZ\x0A\x04") {
  28. $this->error('Expecting "53 5A 0A 04" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes(substr($SZIPHeader, 0, 4)).'"');
  29. return false;
  30. }
  31. $info['fileformat'] = 'szip';
  32. $info['szip']['major_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 4, 1));
  33. $info['szip']['minor_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 5, 1));
  34. $this->error('SZIP parsing not enabled in this version of getID3() ['.$this->getid3->version().']');
  35. return false;
  36. while (!$this->feof()) {
  37. $NextBlockID = $this->fread(2);
  38. switch ($NextBlockID) {
  39. case 'SZ':
  40. // Note that szip files can be concatenated, this has the same effect as
  41. // concatenating the files. this also means that global header blocks
  42. // might be present between directory/data blocks.
  43. $this->fseek(4, SEEK_CUR);
  44. break;
  45. case 'BH':
  46. $BHheaderbytes = getid3_lib::BigEndian2Int($this->fread(3));
  47. $BHheaderdata = $this->fread($BHheaderbytes);
  48. $BHheaderoffset = 0;
  49. while (strpos($BHheaderdata, "\x00", $BHheaderoffset) > 0) {
  50. //filename as \0 terminated string (empty string indicates end)
  51. //owner as \0 terminated string (empty is same as last file)
  52. //group as \0 terminated string (empty is same as last file)
  53. //3 byte filelength in this block
  54. //2 byte access flags
  55. //4 byte creation time (like in unix)
  56. //4 byte modification time (like in unix)
  57. //4 byte access time (like in unix)
  58. $BHdataArray['filename'] = substr($BHheaderdata, $BHheaderoffset, strcspn($BHheaderdata, "\x00"));
  59. $BHheaderoffset += (strlen($BHdataArray['filename']) + 1);
  60. $BHdataArray['owner'] = substr($BHheaderdata, $BHheaderoffset, strcspn($BHheaderdata, "\x00"));
  61. $BHheaderoffset += (strlen($BHdataArray['owner']) + 1);
  62. $BHdataArray['group'] = substr($BHheaderdata, $BHheaderoffset, strcspn($BHheaderdata, "\x00"));
  63. $BHheaderoffset += (strlen($BHdataArray['group']) + 1);
  64. $BHdataArray['filelength'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 3));
  65. $BHheaderoffset += 3;
  66. $BHdataArray['access_flags'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 2));
  67. $BHheaderoffset += 2;
  68. $BHdataArray['creation_time'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 4));
  69. $BHheaderoffset += 4;
  70. $BHdataArray['modification_time'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 4));
  71. $BHheaderoffset += 4;
  72. $BHdataArray['access_time'] = getid3_lib::BigEndian2Int(substr($BHheaderdata, $BHheaderoffset, 4));
  73. $BHheaderoffset += 4;
  74. $info['szip']['BH'][] = $BHdataArray;
  75. }
  76. break;
  77. default:
  78. break 2;
  79. }
  80. }
  81. return true;
  82. }
  83. }