Pass full URL into php-mf2’s parse
method
This commit is contained in:
parent
2d1565f6a1
commit
6e04296e2d
1 changed files with 1 additions and 3 deletions
|
@ -44,13 +44,11 @@ class ProcessWebMention extends Job implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function handle(Parser $parser)
|
public function handle(Parser $parser)
|
||||||
{
|
{
|
||||||
$sourceURL = parse_url($this->source);
|
|
||||||
$baseURL = $sourceURL['scheme'] . '://' . $sourceURL['host'];
|
|
||||||
$remoteContent = $this->getRemoteContent($this->source);
|
$remoteContent = $this->getRemoteContent($this->source);
|
||||||
if ($remoteContent === null) {
|
if ($remoteContent === null) {
|
||||||
throw new RemoteContentNotFoundException;
|
throw new RemoteContentNotFoundException;
|
||||||
}
|
}
|
||||||
$microformats = Mf2\parse($remoteContent, $baseURL);
|
$microformats = Mf2\parse($remoteContent, $this->source);
|
||||||
$webmentions = WebMention::where('source', $this->source)->get();
|
$webmentions = WebMention::where('source', $this->source)->get();
|
||||||
foreach ($webmentions as $webmention) {
|
foreach ($webmentions as $webmention) {
|
||||||
//check webmention still references target
|
//check webmention still references target
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue