getScheme(); $schemeValid = in_array($scheme, ["http", "https"]); return $schemeValid && !!filter_var($url, FILTER_VALIDATE_URL); } catch (SyntaxError $e) { return false; } } public function receiveWebmention(string $source, string $target) : void { // Validate that both source and target are actual domains if (!$this->validateUrl($source) || !$this->validateUrl($target)) { throw new InvalidUrlException(); } // Validate that the webmention target is a domain I care about if (!str_contains($target, "https://lewisdale.dev")) { throw new InvalidTargetException(); } // Parse content from the source $response = $this->httpClient->request('GET', $source); if ($response->getStatusCode() < 400) { $content = $this->parseContent($response->getContent(), $target); $author = $this->parseAuthor($response->getContent()); $webmention = new Webmention(null, $target, $source, MentionType::from(""), $content, $author); $this->gateway->save($webmention); } else { throw new SourceNotFoundException(); } } private function parseContent(string $content, string $target) : ?string { $body = new Crawler($content); $anchors = $body->filter('a[href="'. $target . '"]'); if (!$anchors->count()) { throw new TargetNotMentionedException(); } return null; } private function parseAuthor(string $author) : ?string { return null; } }