write.vorbiscomment.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at http://getid3.sourceforge.net //
  5. // or http://www.getid3.org //
  6. // also https://github.com/JamesHeinrich/getID3 //
  7. /////////////////////////////////////////////////////////////////
  8. // See readme.txt for more details //
  9. /////////////////////////////////////////////////////////////////
  10. // //
  11. // write.vorbiscomment.php //
  12. // module for writing VorbisComment tags //
  13. // dependencies: /helperapps/vorbiscomment.exe //
  14. // ///
  15. /////////////////////////////////////////////////////////////////
  16. class getid3_write_vorbiscomment
  17. {
  18. public $filename;
  19. public $tag_data;
  20. public $warnings = array(); // any non-critical errors will be stored here
  21. public $errors = array(); // any critical errors will be stored here
  22. public function __construct() {
  23. return true;
  24. }
  25. public function WriteVorbisComment() {
  26. if (preg_match('#(1|ON)#i', ini_get('safe_mode'))) {
  27. $this->errors[] = 'PHP running in Safe Mode (backtick operator not available) - cannot call vorbiscomment, tags not written';
  28. return false;
  29. }
  30. // Create file with new comments
  31. $tempcommentsfilename = tempnam(GETID3_TEMP_DIR, 'getID3');
  32. if (is_writable($tempcommentsfilename) && is_file($tempcommentsfilename) && ($fpcomments = fopen($tempcommentsfilename, 'wb'))) {
  33. foreach ($this->tag_data as $key => $value) {
  34. foreach ($value as $commentdata) {
  35. fwrite($fpcomments, $this->CleanVorbisCommentName($key).'='.$commentdata."\n");
  36. }
  37. }
  38. fclose($fpcomments);
  39. } else {
  40. $this->errors[] = 'failed to open temporary tags file "'.$tempcommentsfilename.'", tags not written';
  41. return false;
  42. }
  43. $oldignoreuserabort = ignore_user_abort(true);
  44. if (GETID3_OS_ISWINDOWS) {
  45. if (file_exists(GETID3_HELPERAPPSDIR.'vorbiscomment.exe')) {
  46. //$commandline = '"'.GETID3_HELPERAPPSDIR.'vorbiscomment.exe" -w --raw -c "'.$tempcommentsfilename.'" "'.str_replace('/', '\\', $this->filename).'"';
  47. // vorbiscomment works fine if you copy-paste the above commandline into a command prompt,
  48. // but refuses to work with `backtick` if there are "doublequotes" present around BOTH
  49. // the metaflac pathname and the target filename. For whatever reason...??
  50. // The solution is simply ensure that the metaflac pathname has no spaces,
  51. // and therefore does not need to be quoted
  52. // On top of that, if error messages are not always captured properly under Windows
  53. // To at least see if there was a problem, compare file modification timestamps before and after writing
  54. clearstatcache();
  55. $timestampbeforewriting = filemtime($this->filename);
  56. $commandline = GETID3_HELPERAPPSDIR.'vorbiscomment.exe -w --raw -c "'.$tempcommentsfilename.'" "'.$this->filename.'" 2>&1';
  57. $VorbiscommentError = `$commandline`;
  58. if (empty($VorbiscommentError)) {
  59. clearstatcache();
  60. if ($timestampbeforewriting == filemtime($this->filename)) {
  61. $VorbiscommentError = 'File modification timestamp has not changed - it looks like the tags were not written';
  62. }
  63. }
  64. } else {
  65. $VorbiscommentError = 'vorbiscomment.exe not found in '.GETID3_HELPERAPPSDIR;
  66. }
  67. } else {
  68. $commandline = 'vorbiscomment -w --raw -c "'.$tempcommentsfilename.'" "'.$this->filename.'" 2>&1';
  69. $VorbiscommentError = `$commandline`;
  70. }
  71. // Remove temporary comments file
  72. unlink($tempcommentsfilename);
  73. ignore_user_abort($oldignoreuserabort);
  74. if (!empty($VorbiscommentError)) {
  75. $this->errors[] = 'system call to vorbiscomment failed with message: '."\n\n".$VorbiscommentError;
  76. return false;
  77. }
  78. return true;
  79. }
  80. public function DeleteVorbisComment() {
  81. $this->tag_data = array(array());
  82. return $this->WriteVorbisComment();
  83. }
  84. public function CleanVorbisCommentName($originalcommentname) {
  85. // A case-insensitive field name that may consist of ASCII 0x20 through 0x7D, 0x3D ('=') excluded.
  86. // ASCII 0x41 through 0x5A inclusive (A-Z) is to be considered equivalent to ASCII 0x61 through
  87. // 0x7A inclusive (a-z).
  88. // replace invalid chars with a space, return uppercase text
  89. // Thanks Chris Bolt <chris-getid3Øbolt*cx> for improving this function
  90. // note: *reg_replace() replaces nulls with empty string (not space)
  91. return strtoupper(preg_replace('#[^ -<>-}]#', ' ', str_replace("\x00", ' ', $originalcommentname)));
  92. }
  93. }