1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace App\Services; |
4
|
|
|
|
5
|
|
|
use App\Models\Song; |
6
|
|
|
use Cache; |
7
|
|
|
use GuzzleHttp\Client; |
8
|
|
|
use Log; |
9
|
|
|
|
10
|
|
|
class Musixmatch extends RESTfulService |
11
|
|
|
{ |
12
|
|
|
/** |
13
|
|
|
* Construct an instance of Musixmatch service. |
14
|
|
|
* |
15
|
|
|
* @param string $key The Musixmatch API key |
16
|
|
|
* @param Client|null $client The Guzzle HTTP client |
17
|
|
|
*/ |
18
|
|
View Code Duplication |
public function __construct($key = null, Client $client = null) |
|
|
|
|
19
|
|
|
{ |
20
|
|
|
parent::__construct( |
21
|
|
|
$key ?: config('koel.musixmatch.key'), |
22
|
|
|
null, |
23
|
|
|
'https://api.musixmatch.com/ws/1.1', |
24
|
|
|
$client ?: new Client() |
25
|
|
|
); |
26
|
|
|
} |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Determine if our application is using Musixmatch. |
30
|
|
|
* |
31
|
|
|
* @return bool |
32
|
|
|
*/ |
33
|
|
|
public function enabled() |
34
|
|
|
{ |
35
|
|
|
return (bool) config('koel.musixmatch.key'); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* @param App\Models\Song $song |
40
|
|
|
* |
41
|
|
|
* @return mixed|null |
42
|
|
|
*/ |
43
|
|
|
public function searchLyricsRelatedToSong(Song $song) |
44
|
|
|
{ |
45
|
|
|
if($song->hasLyrics() == false) |
|
|
|
|
46
|
|
|
{ |
47
|
|
|
if (!$song->artist->isUnknown() && !$song->artist->isVarious()) { |
|
|
|
|
48
|
|
|
$lyrics = $this->search($song->title, $song->artist->name); |
49
|
|
|
} else { |
50
|
|
|
$lyrics = $this->search($song->title); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
return $song->updateSingle($song->title, $song->album->name, $song->artist->name, $lyrics, $song->track, (int) $song->compilationState); |
|
|
|
|
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
return false; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @param string $name |
61
|
|
|
* @param string $artistName |
62
|
|
|
* |
63
|
|
|
* @return mixed|false |
64
|
|
|
*/ |
65
|
|
|
public function search(string $name, string $artistName = null) |
66
|
|
|
{ |
67
|
|
|
if (!$this->enabled()) { |
68
|
|
|
return false; |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
$uri = sprintf('matcher.lyrics.get?format=jsonp&callback=callback&q_track=%s&q_artist=%s&apikey=%s', |
72
|
|
|
urlencode($name), |
73
|
|
|
urlencode($artistName), |
74
|
|
|
$this->key |
75
|
|
|
); |
76
|
|
|
|
77
|
|
|
try{ |
78
|
|
|
$response = $this->jsonpDecode($this->get($uri)); |
|
|
|
|
79
|
|
|
|
80
|
|
|
return $this->getLyrics($response); |
81
|
|
|
}catch(\Exception $e){ |
82
|
|
|
Log::error($e); |
83
|
|
|
|
84
|
|
|
return false; |
85
|
|
|
} |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
/** |
89
|
|
|
* @param string $response |
90
|
|
|
* |
91
|
|
|
* @return mixed |
92
|
|
|
*/ |
93
|
|
|
private function jsonpDecode($response) |
94
|
|
|
{ |
95
|
|
|
return json_decode(substr(preg_replace("/[^(]*\((.*)\)/","$1",$response), 0, -1)); |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
/** |
99
|
|
|
* @param JSON $response |
100
|
|
|
* |
101
|
|
|
* @return string|null |
102
|
|
|
*/ |
103
|
|
|
private function getLyrics($response) |
104
|
|
|
{ |
105
|
|
|
$lyrics = $response->message->body->lyrics->lyrics_body; |
106
|
|
|
|
107
|
|
|
if(strlen($lyrics)) |
108
|
|
|
{ |
109
|
|
|
// Correct Musixmatch spelling mistake (is for are). |
110
|
|
|
return substr($lyrics, 0, strpos($lyrics, "******* This Lyrics is NOT for Commercial use *******")). |
111
|
|
|
"*** This Lyrics are NOT for Commercial use ***"; |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
return false; |
115
|
|
|
} |
116
|
|
|
} |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.