2014-07-18 13:19:02 +02:00
< ? php
/**
* WhydBridge
* Returns the newest music from user
*
* @ name Whyd Bridge
* @ homepage http :// www . whyd . com /
* @ description Returns 10 newest music from user profile
* @ maintainer kranack
* @ update 2014 - 07 - 18
2014-07-23 13:11:55 +02:00
* @ use1 ( u = " username/id " )
2014-07-18 13:19:02 +02:00
*
*/
class WhydBridge extends BridgeAbstract {
private $request ;
private $name ;
public function collectData ( array $param ){
$html = '' ;
if ( isset ( $param [ 'u' ]))
{
$this -> request = $param [ 'u' ];
2014-07-18 15:41:33 +02:00
if ( strlen ( preg_replace ( " /[^0-9a-f]/ " , '' , $this -> request )) == 24 ) { // is input the userid ?
2014-07-18 14:06:39 +02:00
$html = file_get_html ( 'http://www.whyd.com/u/' . preg_replace ( " /[^0-9a-f]/ " , '' , $this -> request )) or $this -> returnError ( 'No results for this query.' , 404 );
2014-07-18 15:41:33 +02:00
} else { // input may be the username
$html = file_get_html ( 'http://www.whyd.com/search?q=' . urlencode ( $this -> request )) or $this -> returnError ( 'No results for this query.' , 404 );
for ( $j = 0 ; $j < 5 ; $j ++ ) {
if ( strtolower ( $html -> find ( 'div.user' , $j ) -> find ( 'a' , 0 ) -> plaintext ) == strtolower ( $this -> request )) {
$html = file_get_html ( 'http://www.whyd.com' . $html -> find ( 'div.user' , $j ) -> find ( 'a' , 0 ) -> getAttribute ( 'href' )) or $this -> returnError ( 'No results for this query' , 404 );
break ;
}
}
}
2014-07-18 13:19:02 +02:00
$this -> name = $html -> find ( 'div#profileTop' , 0 ) -> find ( 'h1' , 0 ) -> plaintext ;
}
else
{
2014-07-18 15:41:33 +02:00
$this -> returnError ( 'You must specify username' , 400 );
2014-07-18 13:19:02 +02:00
}
for ( $i = 0 ; $i < 10 ; $i ++ ) {
$track = $html -> find ( 'div.post' , $i );
$item = new \Item ();
$item -> name = $track -> find ( 'h2' , 0 ) -> plaintext ;
$item -> title = $track -> find ( 'h2' , 0 ) -> plaintext ;
$item -> content = $track -> find ( 'a.thumb' , 0 ) . '<br/>' . $track -> find ( 'h2' , 0 ) -> plaintext ;
$item -> id = 'http://www.whyd.com' . $track -> find ( 'a.no-ajaxy' , 0 ) -> getAttribute ( 'href' );
$item -> uri = 'http://www.whyd.com' . $track -> find ( 'a.no-ajaxy' , 0 ) -> getAttribute ( 'href' );
$this -> items [] = $item ;
}
}
public function getName (){
2014-07-18 13:31:40 +02:00
return ( ! empty ( $this -> name ) ? $this -> name . ' - ' : '' ) . 'Whyd Bridge' ;
2014-07-18 13:19:02 +02:00
}
public function getURI (){
2014-07-18 13:33:54 +02:00
return 'http://www.whyd.com/' ;
2014-07-18 13:19:02 +02:00
}
public function getCacheDuration (){
2014-07-18 15:41:33 +02:00
return 600 ; // 10 minutes
2014-07-18 13:19:02 +02:00
}
}
2014-07-18 15:41:33 +02:00
2014-07-23 13:11:55 +02:00