write.metaflac.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. /////////////////////////////////////////////////////////////////
  7. // See readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // write.metaflac.php //
  11. // module for writing metaflac tags //
  12. // dependencies: /helperapps/metaflac.exe //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. class getid3_write_metaflac
  16. {
  17. var $filename;
  18. var $tag_data;
  19. var $warnings = array(); // any non-critical errors will be stored here
  20. var $errors = array(); // any critical errors will be stored here
  21. function getid3_write_metaflac() {
  22. return true;
  23. }
  24. function WriteMetaFLAC() {
  25. if (!ini_get('safe_mode')) {
  26. // Create file with new comments
  27. $tempcommentsfilename = tempnam('*', 'getID3');
  28. if ($fpcomments = @fopen($tempcommentsfilename, 'wb')) {
  29. foreach ($this->tag_data as $key => $value) {
  30. foreach ($value as $commentdata) {
  31. fwrite($fpcomments, $this->CleanmetaflacName($key).'='.$commentdata."\n");
  32. }
  33. }
  34. fclose($fpcomments);
  35. } else {
  36. $this->errors[] = 'failed to open temporary tags file "'.$tempcommentsfilename.'", tags not written';
  37. return false;
  38. }
  39. $oldignoreuserabort = ignore_user_abort(true);
  40. if (GETID3_OS_ISWINDOWS) {
  41. if (file_exists(GETID3_HELPERAPPSDIR.'metaflac.exe')) {
  42. //$commandline = '"'.GETID3_HELPERAPPSDIR.'metaflac.exe" --no-utf8-convert --remove-all-tags --import-tags-from="'.$tempcommentsfilename.'" "'.str_replace('/', '\\', $this->filename).'"';
  43. // metaflac works fine if you copy-paste the above commandline into a command prompt,
  44. // but refuses to work with `backtick` if there are "doublequotes" present around BOTH
  45. // the metaflac pathname and the target filename. For whatever reason...??
  46. // The solution is simply ensure that the metaflac pathname has no spaces,
  47. // and therefore does not need to be quoted
  48. // On top of that, if error messages are not always captured properly under Windows
  49. // To at least see if there was a problem, compare file modification timestamps before and after writing
  50. clearstatcache();
  51. $timestampbeforewriting = filemtime($this->filename);
  52. $commandline = GETID3_HELPERAPPSDIR.'metaflac.exe --no-utf8-convert --remove-all-tags --import-tags-from="'.$tempcommentsfilename.'" "'.$this->filename.'" 2>&1';
  53. $metaflacError = `$commandline`;
  54. if (empty($metaflacError)) {
  55. clearstatcache();
  56. if ($timestampbeforewriting == filemtime($this->filename)) {
  57. $metaflacError = 'File modification timestamp has not changed - it looks like the tags were not written';
  58. }
  59. }
  60. } else {
  61. $metaflacError = 'metaflac.exe not found in '.GETID3_HELPERAPPSDIR;
  62. }
  63. } else {
  64. // It's simpler on *nix
  65. $commandline = 'metaflac --no-utf8-convert --remove-all-tags --import-tags-from='.$tempcommentsfilename.' "'.$this->filename.'" 2>&1';
  66. $metaflacError = `$commandline`;
  67. }
  68. // Remove temporary comments file
  69. unlink($tempcommentsfilename);
  70. ignore_user_abort($oldignoreuserabort);
  71. if (!empty($metaflacError)) {
  72. $this->errors[] = 'System call to metaflac failed with this message returned: '."\n\n".$metaflacError;
  73. return false;
  74. }
  75. return true;
  76. }
  77. $this->errors[] = 'PHP running in Safe Mode (backtick operator not available) - cannot call metaflac, tags not written';
  78. return false;
  79. }
  80. function DeleteMetaFLAC() {
  81. if (!ini_get('safe_mode')) {
  82. $oldignoreuserabort = ignore_user_abort(true);
  83. if (GETID3_OS_ISWINDOWS) {
  84. if (file_exists(GETID3_HELPERAPPSDIR.'metaflac.exe')) {
  85. // To at least see if there was a problem, compare file modification timestamps before and after writing
  86. clearstatcache();
  87. $timestampbeforewriting = filemtime($this->filename);
  88. $commandline = GETID3_HELPERAPPSDIR.'metaflac.exe --remove-all-tags "'.$this->filename.'" 2>&1';
  89. $metaflacError = `$commandline`;
  90. if (empty($metaflacError)) {
  91. clearstatcache();
  92. if ($timestampbeforewriting == filemtime($this->filename)) {
  93. $metaflacError = 'File modification timestamp has not changed - it looks like the tags were not deleted';
  94. }
  95. }
  96. } else {
  97. $metaflacError = 'metaflac.exe not found in '.GETID3_HELPERAPPSDIR;
  98. }
  99. } else {
  100. // It's simpler on *nix
  101. $commandline = 'metaflac --remove-all-tags "'.$this->filename.'" 2>&1';
  102. $metaflacError = `$commandline`;
  103. }
  104. ignore_user_abort($oldignoreuserabort);
  105. if (!empty($metaflacError)) {
  106. $this->errors[] = 'System call to metaflac failed with this message returned: '."\n\n".$metaflacError;
  107. return false;
  108. }
  109. return true;
  110. }
  111. $this->errors[] = 'PHP running in Safe Mode (backtick operator not available) - cannot call metaflac, tags not deleted';
  112. return false;
  113. }
  114. function CleanmetaflacName($originalcommentname) {
  115. // A case-insensitive field name that may consist of ASCII 0x20 through 0x7D, 0x3D ('=') excluded.
  116. // ASCII 0x41 through 0x5A inclusive (A-Z) is to be considered equivalent to ASCII 0x61 through
  117. // 0x7A inclusive (a-z).
  118. // replace invalid chars with a space, return uppercase text
  119. // Thanks Chris Bolt <chris-getid3Øbolt*cx> for improving this function
  120. // note: ereg_replace() replaces nulls with empty string (not space)
  121. return strtoupper(ereg_replace('[^ -<>-}]', ' ', str_replace("\x00", ' ', $originalcommentname)));
  122. }
  123. }
  124. ?>