Merge branch 'feature/webmentions' into develop
This commit is contained in:
commit
7ffe9437a3
9 changed files with 95 additions and 62 deletions
|
@ -6,6 +6,7 @@ use Exception;
|
||||||
use Illuminate\Validation\ValidationException;
|
use Illuminate\Validation\ValidationException;
|
||||||
use Illuminate\Session\TokenMismatchException;
|
use Illuminate\Session\TokenMismatchException;
|
||||||
use Illuminate\Auth\Access\AuthorizationException;
|
use Illuminate\Auth\Access\AuthorizationException;
|
||||||
|
use Symfony\Component\Debug\Exception\FlattenException;
|
||||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||||
use Symfony\Component\HttpKernel\Exception\HttpException;
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
||||||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||||||
|
@ -78,10 +79,11 @@ class Handler extends ExceptionHandler
|
||||||
});
|
});
|
||||||
$whoops->pushHandler($handler);
|
$whoops->pushHandler($handler);
|
||||||
|
|
||||||
|
$flattened = FlattenException::create($exc);
|
||||||
return new \Illuminate\Http\Response(
|
return new \Illuminate\Http\Response(
|
||||||
$whoops->handleException($exc),
|
$whoops->handleException($exc),
|
||||||
$exc->getStatusCode(),
|
$flattened->getStatusCode(),
|
||||||
$exc->getHeaders()
|
$flattened->getHeaders()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,12 @@ use App\Services\NoteService;
|
||||||
|
|
||||||
class NotesAdminController extends Controller
|
class NotesAdminController extends Controller
|
||||||
{
|
{
|
||||||
|
protected $noteService;
|
||||||
|
|
||||||
|
public function __construct(NoteService $noteService = null)
|
||||||
|
{
|
||||||
|
$this->noteService = $noteService ?? new NoteService();
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Show the form to make a new note.
|
* Show the form to make a new note.
|
||||||
*
|
*
|
||||||
|
|
|
@ -5,7 +5,6 @@ namespace App\Http\Controllers;
|
||||||
use App\Note;
|
use App\Note;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Http\Response;
|
use Illuminate\Http\Response;
|
||||||
use App\Jobs\SendWebMentions;
|
|
||||||
use App\Jobs\ProcessWebMention;
|
use App\Jobs\ProcessWebMention;
|
||||||
use Jonnybarnes\IndieWeb\Numbers;
|
use Jonnybarnes\IndieWeb\Numbers;
|
||||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||||
|
@ -64,37 +63,4 @@ class WebMentionsController extends Controller
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Send a webmention.
|
|
||||||
*
|
|
||||||
* @param \App\Note $note
|
|
||||||
* @return array An array of successful then failed URLs
|
|
||||||
*/
|
|
||||||
public function send(Note $note)
|
|
||||||
{
|
|
||||||
//grab the URLs
|
|
||||||
$urlsInReplyTo = explode(' ', $note->in_reply_to);
|
|
||||||
$urlsNote = $this->getLinks($note->note);
|
|
||||||
$urls = array_filter(array_merge($urlsInReplyTo, $urlsNote)); //filter out none URLs
|
|
||||||
foreach ($urls as $url) {
|
|
||||||
$this->dispatch(new SendWebMentions($url, $note->longurl));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the URLs from a note.
|
|
||||||
*/
|
|
||||||
private function getLinks($html)
|
|
||||||
{
|
|
||||||
$urls = [];
|
|
||||||
$dom = new \DOMDocument();
|
|
||||||
$dom->loadHTML($html);
|
|
||||||
$anchors = $dom->getElementsByTagName('a');
|
|
||||||
foreach ($anchors as $anchor) {
|
|
||||||
$urls[] = ($anchor->hasAttribute('href')) ? $anchor->getAttribute('href') : false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $urls;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
namespace App\Jobs;
|
namespace App\Jobs;
|
||||||
|
|
||||||
|
use App\Note;
|
||||||
use GuzzleHttp\Client;
|
use GuzzleHttp\Client;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
|
@ -11,18 +12,20 @@ class SendWebMentions extends Job implements ShouldQueue
|
||||||
{
|
{
|
||||||
use InteractsWithQueue, SerializesModels;
|
use InteractsWithQueue, SerializesModels;
|
||||||
|
|
||||||
protected $url;
|
protected $note;
|
||||||
protected $source;
|
protected $guzzle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new job instance.
|
* Create the job instance, inject dependencies.
|
||||||
*
|
*
|
||||||
|
* @param User $user
|
||||||
|
* @param Note $note
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function __construct($url, $source)
|
public function __construct(Note $note, Client $guzzle = null)
|
||||||
{
|
{
|
||||||
$this->url = $url;
|
$this->note = $note;
|
||||||
$this->source = $source;
|
$this->guzzle = $guzzle ?? new Client();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -30,16 +33,22 @@ class SendWebMentions extends Job implements ShouldQueue
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function handle(Client $client)
|
public function handle(Note $note)
|
||||||
{
|
{
|
||||||
$endpoint = $this->discoverWebmentionEndpoint($this->url, $client);
|
//grab the URLs
|
||||||
if ($endpoint) {
|
$urlsInReplyTo = explode(' ', $this->note->in_reply_to);
|
||||||
$client->post($endpoint, [
|
$urlsNote = $this->getLinks($this->note->note);
|
||||||
'form_params' => [
|
$urls = array_filter(array_merge($urlsInReplyTo, $urlsNote)); //filter out none URLs
|
||||||
'source' => $this->source,
|
foreach ($urls as $url) {
|
||||||
'target' => $this->url,
|
$endpoint = $this->discoverWebmentionEndpoint($url);
|
||||||
],
|
if ($endpoint) {
|
||||||
]);
|
$this->guzzle->post($endpoint, [
|
||||||
|
'form_params' => [
|
||||||
|
'source' => $this->note->longurl,
|
||||||
|
'target' => $url
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,11 +59,16 @@ class SendWebMentions extends Job implements ShouldQueue
|
||||||
* @param \GuzzleHttp\Client $client
|
* @param \GuzzleHttp\Client $client
|
||||||
* @return string The webmention endpoint URL
|
* @return string The webmention endpoint URL
|
||||||
*/
|
*/
|
||||||
private function discoverWebmentionEndpoint($url, $client)
|
private function discoverWebmentionEndpoint($url)
|
||||||
{
|
{
|
||||||
|
//let’s not send webmentions to myself
|
||||||
|
if (parse_url($url, PHP_URL_HOST) == env('LONG_URL', 'localhost')) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$endpoint = null;
|
$endpoint = null;
|
||||||
|
|
||||||
$response = $client->get($url);
|
$response = $this->guzzle->get($url);
|
||||||
//check HTTP Headers for webmention endpoint
|
//check HTTP Headers for webmention endpoint
|
||||||
$links = \GuzzleHttp\Psr7\parse_header($response->getHeader('Link'));
|
$links = \GuzzleHttp\Psr7\parse_header($response->getHeader('Link'));
|
||||||
foreach ($links as $link) {
|
foreach ($links as $link) {
|
||||||
|
@ -83,4 +97,20 @@ class SendWebMentions extends Job implements ShouldQueue
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the URLs from a note.
|
||||||
|
*/
|
||||||
|
private function getLinks($html)
|
||||||
|
{
|
||||||
|
$urls = [];
|
||||||
|
$dom = new \DOMDocument();
|
||||||
|
$dom->loadHTML($html);
|
||||||
|
$anchors = $dom->getElementsByTagName('a');
|
||||||
|
foreach ($anchors as $anchor) {
|
||||||
|
$urls[] = ($anchor->hasAttribute('href')) ? $anchor->getAttribute('href') : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $urls;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ namespace App\Services;
|
||||||
use App\Note;
|
use App\Note;
|
||||||
use App\Place;
|
use App\Place;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
use App\Jobs\SendWebMentions;
|
||||||
use App\Jobs\SyndicateToTwitter;
|
use App\Jobs\SyndicateToTwitter;
|
||||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
||||||
use App\Http\Controllers\WebMentionsController;
|
use App\Http\Controllers\WebMentionsController;
|
||||||
|
@ -45,10 +46,7 @@ class NoteService
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($request->input('webmentions')) {
|
$this->dispatch(new SendWebMentions($note));
|
||||||
$wmc = new WebMentionsController();
|
|
||||||
$wmc->send($note);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (//micropub request, syndication sent as array
|
if (//micropub request, syndication sent as array
|
||||||
(is_array($request->input('mp-syndicate-to'))
|
(is_array($request->input('mp-syndicate-to'))
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Version {next}
|
## Version {next}
|
||||||
|
- Automatically send webmentions
|
||||||
|
|
||||||
## Version 0.0.4 (2016-06-21)
|
## Version 0.0.4 (2016-06-21)
|
||||||
- Move bower components into their own subdir
|
- Move bower components into their own subdir
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
<legend>New Note</legend>
|
<legend>New Note</legend>
|
||||||
<label for="in-reply-to" accesskey="r">Reply-to: </label><input type="text" name="in-reply-to" id="in-reply-to" placeholder="in-reply-to-1 in-reply-to-2 …" value="{{ old('in-reply-to') }}">
|
<label for="in-reply-to" accesskey="r">Reply-to: </label><input type="text" name="in-reply-to" id="in-reply-to" placeholder="in-reply-to-1 in-reply-to-2 …" value="{{ old('in-reply-to') }}">
|
||||||
<label for="content" accesskey="n">Note: </label><textarea name="content" id="content" placeholder="Note" autofocus>{{ old('content') }}</textarea>
|
<label for="content" accesskey="n">Note: </label><textarea name="content" id="content" placeholder="Note" autofocus>{{ old('content') }}</textarea>
|
||||||
<label for="webmentions" accesskey="w">Send webmentions: </label><input type="checkbox" name="webmentions" id="webmentions" checked="checked"><br>
|
|
||||||
@if ($micropub === true)
|
@if ($micropub === true)
|
||||||
<label for="syndication" accesskey="s">Syndication: </label>@if($syndication)<ul class="syndication-targets-list" name="syndication">@foreach($syndication as $target)<li><input type="checkbox" name="mp-syndicate-to[]" id="{{ $target }}" value="{{ $target }}" checked="checked"> <label for="{{ $target }}">{{ $target }}</label></li>@endforeach</ul>@endif
|
<label for="syndication" accesskey="s">Syndication: </label>@if($syndication)<ul class="syndication-targets-list" name="syndication">@foreach($syndication as $target)<li><input type="checkbox" name="mp-syndicate-to[]" id="{{ $target }}" value="{{ $target }}" checked="checked"> <label for="{{ $target }}">{{ $target }}</label></li>@endforeach</ul>@endif
|
||||||
<a href="/refresh-syndication-targets">Refresh Syndication Targets</a><br>
|
<a href="/refresh-syndication-targets">Refresh Syndication Targets</a><br>
|
||||||
|
|
|
@ -38,7 +38,7 @@ class MicropubTest extends TestCase
|
||||||
public function testMicropubRequestWithValidToken()
|
public function testMicropubRequestWithValidToken()
|
||||||
{
|
{
|
||||||
$this->call('GET', $this->appurl . '/api/post', [], [], [], ['HTTP_Authorization' => 'Bearer ' . $this->getToken()]);
|
$this->call('GET', $this->appurl . '/api/post', [], [], [], ['HTTP_Authorization' => 'Bearer ' . $this->getToken()]);
|
||||||
$this->see('me=https%3A%2F%2Fjbl5.dev');
|
$this->see('me=https%3A%2F%2Fjonnybarnes.localhost');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testMicropubRequestForSyndication()
|
public function testMicropubRequestForSyndication()
|
||||||
|
@ -79,8 +79,6 @@ class MicropubTest extends TestCase
|
||||||
|
|
||||||
public function testMicropubRequestCreateNewPlace()
|
public function testMicropubRequestCreateNewPlace()
|
||||||
{
|
{
|
||||||
$faker = \Faker\Factory::create();
|
|
||||||
$note = $faker->text;
|
|
||||||
$this->call(
|
$this->call(
|
||||||
'POST',
|
'POST',
|
||||||
$this->appurl . '/api/post',
|
$this->appurl . '/api/post',
|
||||||
|
@ -101,7 +99,7 @@ class MicropubTest extends TestCase
|
||||||
$signer = new Sha256();
|
$signer = new Sha256();
|
||||||
$token = (new Builder())
|
$token = (new Builder())
|
||||||
->set('client_id', 'https://quill.p3k.io')
|
->set('client_id', 'https://quill.p3k.io')
|
||||||
->set('me', 'https://jbl5.dev')
|
->set('me', 'https://jonnybarnes.localhost')
|
||||||
->set('scope', 'post')
|
->set('scope', 'post')
|
||||||
->set('issued_at', time())
|
->set('issued_at', time())
|
||||||
->sign($signer, env('APP_KEY'))
|
->sign($signer, env('APP_KEY'))
|
||||||
|
|
33
tests/NotesAdminTest.php
Normal file
33
tests/NotesAdminTest.php
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Tests;
|
||||||
|
|
||||||
|
use TestCase;
|
||||||
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
|
||||||
|
class NotesAdminTest extends TestCase
|
||||||
|
{
|
||||||
|
use DatabaseTransactions;
|
||||||
|
|
||||||
|
protected $appurl;
|
||||||
|
protected $notesAdminController;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
$this->appurl = config('app.url');
|
||||||
|
$this->notesAdminController = new \App\Http\Controllers\NotesAdminController();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testCreatedNoteDispatchesSendWebmentionsJob()
|
||||||
|
{
|
||||||
|
$this->expectsJobs(\App\Jobs\SendWebMentions::class);
|
||||||
|
|
||||||
|
$this->withSession(['loggedin' => true])
|
||||||
|
->visit($this->appurl . '/admin/note/new')
|
||||||
|
->type('Mentioning', 'content')
|
||||||
|
->press('Submit');
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue