add support for media endpoints
[shpub.git] / src / shpub / Config / Endpoints.php
index 62e7c4905ecd2698c572cc0bac605635747af726..c3435505d131f9bc1d59315ae1533c311c3967b4 100644 (file)
@@ -41,39 +41,87 @@ class Config_Endpoints
     public function discover($server)
     {
         //TODO: discovery via link headers
-        $sx = simplexml_load_file($server);
+        $baseUrl = new \Net_URL2($server);
+
+        $doc = new \DOMDocument();
+        @$doc->loadHTMLFile($server);
+        $sx = simplexml_import_dom($doc);
         if ($sx === false) {
             Log::err('Error loading URL: ' . $server);
             exit(1);
         }
-        $sx->registerXPathNamespace('h', 'http://www.w3.org/1999/xhtml');
+        //$sx->registerXPathNamespace('h', 'http://www.w3.org/1999/xhtml');
 
         $auths = $sx->xpath(
-            '/h:html/h:head/h:link[@rel="authorization_endpoint" and @href]'
+            '/html/head/link[@rel="authorization_endpoint" and @href]'
         );
         if (!count($auths)) {
-            Log::err('No authorization endpoint found');
+            Log::err('No authorization endpoint found at ' . $server);
             exit(1);
         }
-        $this->authorization = (string) $auths[0]['href'];
+        $this->authorization = (string) $baseUrl->resolve(
+            (string) $auths[0]['href']
+        );
 
         $tokens = $sx->xpath(
-            '/h:html/h:head/h:link[@rel="token_endpoint" and @href]'
+            '/html/head/link[@rel="token_endpoint" and @href]'
         );
         if (!count($tokens)) {
             Log::err('No token endpoint found');
             exit(1);
         }
-        $this->token = (string) $tokens[0]['href'];
+        $this->token = (string) $baseUrl->resolve(
+            (string) $tokens[0]['href']
+        );
 
         $mps = $sx->xpath(
-            '/h:html/h:head/h:link[@rel="micropub" and @href]'
+            '/html/head/link[@rel="micropub" and @href]'
         );
         if (!count($mps)) {
             Log::err('No micropub endpoint found');
             exit(1);
         }
-        $this->micropub = (string) $mps[0]['href'];
+        $this->micropub = (string) $baseUrl->resolve(
+            (string) $mps[0]['href']
+        );
+    }
+
+    public function discoverMedia($accessToken)
+    {
+        $configUrl = $this->micropub;
+        if (strpos($configUrl, '?') === false) {
+            $configUrl .= '?q=config';
+        } else {
+            $configUrl .= '&q=config';
+        }
+
+        $ctx = stream_context_create(
+            [
+                'http' => [
+                    'header' => [
+                        'Accept: application/json',
+                        'Authorization: Bearer ' . $accessToken
+                    ],
+                ]
+            ]
+        );
+        $json = @file_get_contents($configUrl, false, $ctx);
+        if ($json === false) {
+            //does not exist
+            return;
+        }
+        $configData = json_decode($json);
+        if ($configData === null) {
+            //json could not be decoded
+            Log::err('micropub configuration is invalid');
+            return;
+        }
+        if (isset($configData->{'media-endpoint'})) {
+            $configUrlObj = new \Net_URL2($configUrl);
+            $this->media = (string) $configUrlObj->resolve(
+                $configData->{'media-endpoint'}
+            );
+        }
     }
 
     public function load($server)
@@ -102,10 +150,11 @@ class Config_Endpoints
 
         file_put_contents(
             $file,
-            'micropub=' . $this->micropub . "\n"
-            . 'media=' . $this->media . "\n"
-            . 'token=' . $this->token . "\n"
-             . 'authorization=' . $this->authorization . "\n"
+            'micropub=' . Config::quoteIniValue($this->micropub) . "\n"
+            . 'media=' . Config::quoteIniValue($this->media) . "\n"
+            . 'token=' . Config::quoteIniValue($this->token) . "\n"
+            . 'authorization='
+            . Config::quoteIniValue($this->authorization) . "\n"
         );
     }