]> git.bts.cx Git - cx.git/blobdiff - cx/lib/posts.php
post metadata support (not very good yet)
[cx.git] / cx / lib / posts.php
index 6aca72e54ce59fa30f70836896b74e7719a0193b..2c2dc821e811bfc0fe94d66823a28f0af7940ce3 100644 (file)
@@ -10,6 +10,16 @@ function mk_markdown($markdown) {
        return $Parsedown->text($markdown);
 }
 
        return $Parsedown->text($markdown);
 }
 
+class PostMetadata {
+       public $hero_image;
+       public $hero_image_alt;
+
+       public function __construct($dict) {
+               $this->hero_image = $dict['post_hero_image'];
+               $this->hero_image_alt = $dict['post_hero_image_alt'];
+       }
+}
+
 class Post {
        public $id;
        public $title;
 class Post {
        public $id;
        public $title;
@@ -36,6 +46,22 @@ class Post {
                        $this->html_excerpt = mk_markdown($segments[0]);
                }
        }
                        $this->html_excerpt = mk_markdown($segments[0]);
                }
        }
+
+       public function get_metadata() {
+               $data = [];
+
+               $doc = new DOMDocument();
+               $doc->loadHTML($this->html_content);
+
+               $image_tag = $doc->getElementsByTagName('img')[0];
+
+               if ($image_tag != null) {
+                       $data['post_hero_image'] = $image_tag->getAttribute('src');
+                       $data['post_hero_image_alt'] = htmlspecialchars($image_tag->getAttribute('alt'));
+               }
+
+               return new PostMetadata($data);
+       }
 }
 
 function cx_post_make_slug($title) {
 }
 
 function cx_post_make_slug($title) {