comment.ts 3.8 KB

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