index.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. require_once("../../api.php");
  3. $q = htmlspecialchars($_GET["q"]);
  4. if (!isset($q) || $q == "" || is_null($q)) {
  5. header("Location: /");
  6. die();
  7. }
  8. $res = get("search/artworks/".$q);
  9. if ($res->error) die();
  10. if (!isset($res->body)) {
  11. header("Location: /404.php");
  12. die();
  13. }
  14. $res = $res->body;
  15. $out = ["title" => $res->alt, "desc" => $res->description];
  16. ?>
  17. <?php include("../../include/header.php"); ?>
  18. <?php
  19. foreach ($res->relatedTags as $t) {
  20. ?>
  21. <a href="/search/?q=<?= $t ?>">#<?= $t ?></a>
  22. <?php
  23. }
  24. ?>
  25. <h2>結果</h2>
  26. <?php
  27. foreach ($res->illustManga->data as $r) {
  28. if (is_null($r->id)) continue;
  29. ?>
  30. <div class="searchres">
  31. <a href="/artworks/?id=<?= $r->id ?>">
  32. <img src="/proxy.php?url=<?= str_replace("https://", "", $r->url) ?>" alt="<?= $r->alt ?>" />
  33. <?= $r->title ?>
  34. </a>
  35. <br />
  36. <a href="/users/?id=<?= $r->userId ?>">
  37. <img src="/proxy.php?url=<?= str_replace("https://", "", $r->profileImageUrl) ?>" alt="<?= $r->userName ?>" style="width: 24px; height: 24px;" />
  38. <?= $r->userName ?>
  39. </a>
  40. </div>
  41. <?php
  42. }
  43. ?>
  44. <?php include("../../include/footer.php"); ?>