<?php
declare(strict_types=1);
namespace Shimmie2;
class OuroborosAPIInfo extends ExtensionInfo
{
public const KEY = "ouroboros_api";
public string $key = self::KEY;
public string $name = "Ouroboros API";
public array $authors = ["Diftraku" => "diftraku[at]derpy.me"];
public string $description = "Ouroboros-like API for Shimmie";
public ExtensionCategory $category = ExtensionCategory::INTEGRATION;
public ?string $documentation =
"Currently working features
<ul>
<li>Post:
<li>Index/List</li>
<li>Show</li>
<li>Create</li>
</ul>
</li>
<li>Tag:
Tested to work with CartonBox using \"Danbooru 1.18.x\" as site type.
Does not work with Andbooru or Danbooru Gallery for reasons beyond me, took me a while to figure rating \"u\" is bad...
Lots of Ouroboros/Danbooru specific values use their defaults (or what I gathered them to be default)
and tons of stuff not supported directly in Shimmie is botched to work";
}