Browse Source

Merge branch 'master' of github.com:aaronpk/Telegraph

main
Aaron Parecki 4 years ago
parent
commit
544a7fb6e0
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 21 additions and 1 deletions
  1. +21
    -1
      lib/Telegraph/Webmention.php

+ 21
- 1
lib/Telegraph/Webmention.php View File

@ -67,6 +67,7 @@ class Webmention {
$payload['http_body'] = $raw;
}
echo "Sending result to callback URL: $webmention->callback\n";
return self::$http->post($webmention->callback, $payload);
}
}
@ -79,6 +80,8 @@ class Webmention {
echo 'Webmention '.$id.' was not found'."\n";
return;
}
echo "Processing webmention $id from ".$webmention->source."\n";
if(!$client)
$client = new MentionClient();
@ -88,25 +91,35 @@ class Webmention {
self::$http = $http;
echo "Finding webmention endpoint for $webmention->target\n";
// Discover the webmention or pingback endpoint
$endpoint = $client->discoverWebmentionEndpoint($webmention->target);
if(!$endpoint) {
echo "No webmention endpoint, checking for pingback\n";
// If no webmention endpoint found, try to send a pingback
$pingbackEndpoint = $client->discoverPingbackEndpoint($webmention->target);
// If no pingback endpoint was found, we can't do anything else
if(!$pingbackEndpoint) {
echo "No webmention or pingback endpoint found\n";
return self::updateStatus($webmention, null, 'not_supported');
}
echo "Found pingback endpoint $pingbackEndpoint\n";
$webmention->pingback_endpoint = $pingbackEndpoint;
$webmention->save();
echo "Sending pingback now...\n";
$success = $client->sendPingbackToEndpoint($pingbackEndpoint, $webmention->source, $webmention->target);
echo "Result: ".($success?'accepted':'error')."\n";
return self::updateStatus($webmention, null, ($success ? 'accepted' : 'error'));
}
echo "Found webmention endpoint $endpoint\n";
// There is a webmention endpoint, send the webmention now
$webmention->webmention_endpoint = $endpoint;
@ -121,8 +134,13 @@ class Webmention {
if($webmention->vouch) {
$params['vouch'] = $webmention->vouch;
}
echo "Sending webmention now...\n";
$response = $client->sendWebmentionToEndpoint($endpoint, $webmention->source, $webmention->target, $params);
echo "Response code: ".$response['code']."\n";
if(in_array($response['code'], [200,201,202])) {
$status = 'accepted';
@ -131,6 +149,7 @@ class Webmention {
// Check if the endpoint returned a status URL
if(array_key_exists('Location', $response['headers'])) {
$webmention->webmention_status_url = \Mf2\resolveUrl($endpoint, $response['headers']['Location']);
echo "Endpoint returned a status URL: ".$webmention->webmention_status_url."\n";
// TODO: queue a job to poll the endpoint for updates and deliver to the callback URL
} else {
// No status URL was returned, so we can't follow up with this later. Mark as complete.
@ -145,6 +164,7 @@ class Webmention {
$webmention->save();
$result = self::updateStatus($webmention, $response['code'], $status, $response['body']);
echo "Done\n";
$pdo = ORM::get_db();
$pdo = null;
return $result;

Loading…
Cancel
Save