<?php

declare(strict_types=1);

namespace AC\Formatter\Post;

use AC\Exception\ValueNotFoundException;
use AC\Formatter;
use AC\Type\Value;

class PostDate implements Formatter
{

    public function format(Value $value): Value
    {
        $post = get_post($value->get_id());
        $date = $post ? $post->post_date : null;

        if ( ! $date) {
            throw new ValueNotFoundException();
        }

        return $value->with_value(
            $date
        );
    }

}