Page 1 of 1

[SOLVED] PHP class trying to get it to recognize the file

Posted: Fri Aug 27, 2004 2:22 pm
by mmixx
I have a class and I am having trouble getting the class to recognize the file that is passed to it. Do I have to have the complete path to the file for it to work?

Code: Select all

<?php
/*
  This Class was made by Fatih Hood.
  v1.0 :: 28 - December - 2003
  May the FORCE be with us!
  http://www.zeb.biz : http://www.zebwars.org
  Email: zw@NOSPAM.zeb.biz
*/

//--- ID3v1.x Read/Write Class ---/
class ID3v1x {
  var $file_name;

  //--- Tag Vars.
  var $tag;
  var $title;
  var $artist;
  var $album;
  var $year;
  var $comm;
  var $track;
  var $genre;

  function ID3v1x($inputfile) {
    $this->file_name = $inputfile;
  }

  //--- ID3v1.x Read Tag Function
  function read_tag() {

    //This is where the script fails because it does not see $this->file_name!!
    $file = fopen($this->file_name, "rb");
    if($file == false) {
      return false;
    }
    else {
      fseek($file, -128, SEEK_END);
      $this->tag = fgets($file, 4);
      if($this->tag == 'TAG') {
        $this->title = fgets($file, 31);
        $this->artist = fgets($file, 31);
        $this->album = fgets($file, 31);
        $this->year = fgets($file, 5);
        $this->comm = fgets($file, 29);
        $this->temp = fgets($file, 2);
        $this->track = fgets($file, 2);
        $this->track = hexdec(bin2hex($this->track));
        $this->genre = fgets($file, 21);
        //$this->genre = hexdec(bin2hex($this->genre));
        /*$genre_list = array("Blues","ClassicRock","Country","Dance","Disco","Funk","Grunge","HipHop","Jazz",
          "Metal","NewAge","Oldies","Other","Pop","R&B","Rap","Reggae","Rock","Techno",
          "Industrial","Alternative","Ska","DeathMetal","Pranks","Soundtrack","Euro-Techno",
          "Ambient","TripHop","Vocal","Jazz-Funk","Fusion","Trance","Classical","Instrumental",
          "Acid", "House", "Game", "SoundClip", "Gospel", "Noise", "Alt.Rock", "Bass", "Soul", "Punk",
          "Space", "Meditative", "InstrumentalPop", "InstrumentalRock", "Ethnic", "Gothic", "Darkwave",
          "Techno-Industrial", "Electronic", "Pop/Folk", "Eurodance", "Dream", "SouthernRock", "Comedy",
          "Cult", "GangstaRap", "Top40", "ChristianRap", "Pop/Funk", "Jungle", "NativeAmerican", "Cabaret",
          "NewWave", "Psychedelic", "Rave", "Showtunes", "Trailer", "Lo-fi", "Tribal", "AcidPunk",
          "AcidJazz", "Polka", "Retro", "Musical", "Rock'n'Roll", "HardRock", "Folk", "Folk/Rock",
          "NationalFolk","Swing", "FastFusion", "Bebob", "Latin", "Revival", "Celtic", "BlueGrass",
          "AvantGarde", "GothicRock", "ProgressiveRock", "PsychedelicRock", "SymphonicRock",
          "SlowRock", "BigBand", "Chorus", "EasyListening", "Acoustic", "Humour", "Speech", "Chanson",
          "Opera", "ChamberMusic", "Sonata", "Symphony", "BootyBass", "Primus", "PornGroove", "Satire",
          "SlowJam", "Club", "Tango", "Samba", "Folklore", "Ballad", "PowerBallad", "RhythmicSoul",
          "Freestyle", "Duet", "PunkRock", "DrumSolo", "Euro-House", "DanceHall", "Goa", "Drum&Bass",
          "Club-House", "Hardcore", "Terror", "Indie", "BritPop", "Negerpunk", "PolskPunk", "Beat",
          "ChristianGangstaRap", "HeavyMetal", "BlackMetal", "Crossover", "ContemporaryChristian",
          "ChristianRock", "Merengue", "Salsa", "ThrashMetal","Anime","JPop","SynthPop");
        $this->genre = @$genre_list[$this->genre];*/
        return true;
      }
      else {
        $this->tag = 'Not found tag informations!';
        return true;
      }
    }
    fclose($file);
  }
  //--- End : ID3v1.x Read Tag Function

  //--- ID3v1.x Write Tag Function
  function write_tag($tip=1, $wtitle, $wartist, $walbum, $wyear, $wcomm, $wtrack, $wgenre) {

    //This is where the script fails because it does not see $this->file_name !!
    $file = fopen($this->file_name, "r+b");
    if($file == false) {
      return false;
    }
    else {
      if($tip == 1) {
        fseek($file, -128, SEEK_END);
        fputs($file, 'TAG', 3);
        fputs($file, str_pad($wtitle, 30), 30);
        fputs($file, str_pad($wartist, 30), 30);
        fputs($file, str_pad($walbum, 30), 30);
        fputs($file, str_pad($wyear, 4), 4);
        fputs($file, str_pad($wcomm, 28), 28);
        fputs($file, str_pad(chr('null'), 1), 1);
        fputs($file, str_pad(chr($wtrack), 1), 1);
        fputs($file, str_pad($wgenre, 20), 1);
        return true;
      }
      else if($tip == 2) {
        fseek($file, -128, SEEK_END);
        $empty = chr('null') . chr('null') . chr('null');
        fputs($file, $empty, 3);
        return true;
      }
    }
    fclose($file);
  }
  //--- End : ID3v1.x Write Tag Function
}

//--- ID3v1.x Read/Write Class ---/


$filename="/home/Michael/PHP/id3test.txt";

$fr = fopen($filename, "r");
if (!$fr) {
	echo("Could not open file");
	}else {
	
	$contents = fread($fr, filesize($filename));
}

$delimiter = "\n";
$delimiter2 = ",";
$splitline = explode($delimiter, $contents);

foreach ($splitline as $val){

	//echo ("$val<br>");
	$splitval = explode($delimiter2, $val);
	
					
					//echo ("$splitval[2]<br>");
					openFolder($splitval);
				   //echo "<br><br>";
}

function openFolder($splitval) {
		//echo("Content ID: $contentid <br>");
		
		$contentid=$splitval[3];
		$title=$splitval[0];
		$artist=$splitval[1]. " " .$splitval[2];
		$descr=$splitval[4];
		$classname=$splitval[5];
		
		$path1 = 999;
	while ($contentid > $path1):
		$path1 = $path1 + 1000;
	
	endwhile;
	
	$path1 = $path1 - 999;
	$path2 = $contentid;

$pathname="/$path1/$path2/source";
echo ($pathname);
if (is_dir($pathname)) {
	echo ("$pathname number2");
	//if ($dh = opendir($pathname)){
	$dh = opendir($pathname);
		echo ("It opened $pathname");
			while (false !== ($file = readdir($dh))){
				if ($file != "." && $file != ".."){
					echo("filename: $file <br><br>");
					$destpath="/home/Michael/PHP/Test/$file";
					if (!copy($pathname, $destpath)){
						//echo "Error File not Copied!!!";
					}
						//--- Example ---//						
						$ID3 = new ID3v1x($file);
						echo ($classname);
						if($ID3->write_tag(1, $title, $artist, $contentid, "none", $descr, 0, $classname) == true) {
						  echo "Successful!";
						}
						else {
						  echo "Error!";
						}
						
						echo "<hr size="1">";
						
						if($ID3->read_tag() == true) {
						  echo "-] : File : $mp3_file<br>";
						  echo "-] : ----------------------------------<br>";
						  echo "-] : ID3v1 : $ID3->tag<br>";
						  echo "-] : Title : $ID3->title<br>";
						  echo "-] : Artist : $ID3->artist<br>";
						  echo "-] : Album : $ID3->album<br>";
						  echo "-] : Year : $ID3->year<br>";
						  echo "-] : Comment : $ID3->comm<br>";
						  echo "-] : Track : $ID3->track<br>";
						  echo "-] : Genre : $ID3->genre<br>";
						  echo "-] : ----------------------------------<br>";
						}
						else {
						  echo "Error!";
						}
						
						//--- Example ---//
				}
			}
	//}
}



}	
	
?>
Please help
Thanks

Posted: Fri Aug 27, 2004 2:48 pm
by feyd
what's it kicking out?

Posted: Fri Aug 27, 2004 3:07 pm
by mmixx
Thanks for checking so quickly but i figured it out I needed the path to the file and change the permissions on it.

Thanks for checking