comment.ts 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. // @deno-types="https://unpkg.com/pocketbase@0.8.0/dist/pocketbase.es.d.ts"
  2. import PocketBase from "https://unpkg.com/pocketbase@0.8.0/dist/pocketbase.es.mjs";
  3. import { serve } from "https://deno.land/std/http/server.ts";
  4. import { Md5 } from "https://deno.land/std@0.160.0/hash/md5.ts";
  5. import "https://deno.land/std/dotenv/load.ts"
  6. const allowOrigin = ["http://localhost:5173", Deno.env.get("ALLOW_ORIGIN")];
  7. let allowedOrigin = "*";
  8. const pb = new PocketBase(Deno.env.get("PB_URL"));
  9. const _authData = await pb.collection("users").authWithPassword(
  10. Deno.env.get("PB_USER"),
  11. Deno.env.get("PB_PASSWORD"),
  12. );
  13. async function handler(req: Request): Promise<Response> {
  14. const url = new URL(req.url);
  15. console.log(req.method, url.pathname, "uri:", url.searchParams.get("uri"));
  16. const reqestOrigin = req.headers.get("origin");
  17. if (reqestOrigin === null || !allowOrigin.includes(reqestOrigin)) {
  18. return new Response("Request is rejected.");
  19. } else {
  20. allowedOrigin = reqestOrigin;
  21. }
  22. // List comments for a given page uri
  23. if (req.method === "GET" && url.searchParams.get("uri") !== null) {
  24. const resultList = await pb.collection("comments").getFullList(0, {
  25. filter: `uri='${url.searchParams.get("uri")}'`,
  26. sort: "created,-parent",
  27. });
  28. const commentlist: {
  29. id: string;
  30. author: string;
  31. avatar: string;
  32. website: string;
  33. content: string;
  34. created: string;
  35. reply: unknown[];
  36. }[] = [];
  37. resultList.forEach((item) => {
  38. if (item.parent === "") {
  39. commentlist.push({
  40. id: item.id,
  41. author: item.author,
  42. avatar: new Md5().update(item.email).toString(),
  43. website: item.website,
  44. content: item.content,
  45. created: item.created,
  46. reply: [],
  47. });
  48. } else {
  49. const index = commentlist.findIndex((e) => e.id === item.parent);
  50. commentlist[index].reply.push({
  51. id: item.id,
  52. author: item.author,
  53. avatar: new Md5().update(item.email).toString(),
  54. website: item.website,
  55. content: item.content,
  56. created: item.created,
  57. });
  58. }
  59. });
  60. const body = JSON.stringify({
  61. count: resultList.length,
  62. list: commentlist.reverse(),
  63. });
  64. return new Response(body, {
  65. status: 200,
  66. headers: {
  67. "Content-Type": "application/json; charset=UTF-8",
  68. "Access-Control-Allow-Origin": allowedOrigin,
  69. },
  70. });
  71. }
  72. // handle new comments
  73. if (req.method === "POST") {
  74. const newComment = await req.json();
  75. if (!newComment.author || !newComment.email || !newComment.content) {
  76. return new Response("名字、邮箱、评论内容不能为空");
  77. } else {
  78. const record = await pb.collection("comments").create({
  79. "uri": newComment.uri,
  80. "author": newComment.author,
  81. "email": newComment.email,
  82. "website": newComment.website,
  83. "content": newComment.content,
  84. "parent": newComment.parent,
  85. });
  86. const body = JSON.stringify({
  87. id: record.id,
  88. author: record.author,
  89. avatar: new Md5().update(record.email).toString(),
  90. website: record.website,
  91. content: record.content,
  92. created: record.created,
  93. });
  94. return new Response(body, {
  95. status: 200,
  96. headers: {
  97. "Content-Type": "application/json; charset=UTF-8",
  98. "Access-Control-Allow-Origin": allowedOrigin,
  99. },
  100. });
  101. }
  102. }
  103. if (req.method === "OPTIONS") {
  104. return new Response(null, {
  105. status: 204,
  106. headers: {
  107. "Access-Control-Allow-Methods": "GET, POST",
  108. "Access-Control-Allow-Origin": allowedOrigin,
  109. "Access-Control-Allow-Headers": "Origin, Referer, Content-Type",
  110. },
  111. });
  112. }
  113. return new Response("Bad request!");
  114. }
  115. serve(handler);