rsshub
Version:
Make RSS Great Again!
138 lines (134 loc) • 7.18 kB
JavaScript
import "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { t as timezone } from "./timezone-D8cuwzTY.mjs";
import { load } from "cheerio";
import { CookieJar } from "tough-cookie";
//#region lib/routes/parliament/section77.ts
const route = {
path: "/section77/:type?",
categories: ["government"],
example: "/parliament/section77",
parameters: { type: "Type of hearing status, see below" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "Thailand Parliament Draft of Law's public hearing system",
maintainers: ["itpcc"],
handler,
description: `| Presented by MP \* | Presented by People \* | Hearing Ongoing | Hearing ended | Hearing result reported | Waiting for PM approval | Assigned into the session | Processed | PM Rejected |
| ------------------------ | ---------------------- | ------------------- | --------------- | ------------------------ | ----------------------- | ------------------------- | ---------- | ------------- |
| presentbymp | presentbyperson | openwsu | closewsu | reportwsu | substatus1 | substatus2 | substatus3 | closewsubypm |
| เสนอโดยสมาชิกสภาผู้แทนราษฏร | เสนอโดยประชาชน | กำลังเปิดรับฟังความคิดเห็น | ปิดรับฟังความคิดเห็น | รายงานผลการรับฟังความคิดเห็น | รอคำรับรองจากนายกรัฐมนตรี | บรรจุเข้าระเบียบวาระ | พิจารณาแล้ว | นายกฯ ไม่รับรอง |
*Note:* For \`presentbymp\` and \`presentbyperson\`, it can also add:
- \`-m\` for the draft which Speaker of Parliament considered as a monetary draft (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า เป็นร่างการเงิน), or
- \`-nm\` for non-monetary one (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า ไม่เป็นร่างการเงิน).`
};
async function handler(ctx) {
const baseUrl = "https://www.parliament.go.th/section77";
const { type = "" } = ctx.req.param();
const cookieJar = new CookieJar();
let title = "ร่างพระราชบัญญัติที่เปิดรับฟังความคิดเห็นตามมาตรา 77 ของรัฐธรรมนูญ";
if (type) {
const [presenter, isMonetaryAct = ""] = type.split("-");
title += {
presentbymp: "ที่เสนอโดยสมาชิกสภาผู้แทนราษฏร",
presentbyperson: "ที่เสนอโดยประชาชน",
openwsu: "ที่กำลังเปิดรับฟังความคิดเห็น",
closewsu: "ที่ปิดรับฟังความคิดเห็น",
reportwsu: " รายงานผลการรับฟังความคิดเห็น",
substatus1: "ซึ่งรอคำรับรองจากนายกรัฐมนตรี",
substatus2: "ที่บรรจุเข้าระเบียบวาระ",
substatus3: "ที่พิจารณาแล้ว",
closewsubypm: "ที่นายกฯ ไม่รับรอง"
}[presenter] ?? "";
title += {
m: " (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า เป็นร่างการเงิน)",
nm: " (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า ไม่เป็นร่างการเงิน)"
}[isMonetaryAct] ?? "";
}
const result = {
title,
link: `${baseUrl}/survey_more_news.php${type ? "?type=" + type : ""}`,
language: "th-th",
item: []
};
const queryParams = {
page: 1,
type
};
if (type) queryParams.type = type;
const { data: response } = await got_default({
url: `${baseUrl}/ajax/pagination.php?${new URLSearchParams(queryParams).toString()}`,
cookieJar
});
const $ = load(response);
if ($.text() === "ยังไม่มีข้อมูล") return result;
const actList = $("div.item-77").toArray().map((item) => {
item = $(item);
return {
title: item.find("a").text(),
link: `${baseUrl}/${item.find("a").attr("href")}`,
category: item.find("label").toArray().map((l) => $(l).text())
};
});
if (!actList.length) return result;
const actListFull = await Promise.all(actList.map((item) => cache_default.tryGet(item.link, async () => {
const { data: response$1 } = await got_default({
url: item.link,
cookieJar
});
const $$1 = load(response$1);
item.title = $$1(".title h5").first().text();
item.author = $$1(".present-by").first().text().replaceAll(/^\s*เสนอโดย\s*/g, "");
item.description = $$1(".des").first().html();
const [, presenter, monetaryType] = $$1(".type77 h5").text().split(" ");
item.category = [
...item.category,
$$1(".container-fluid .bg-status .col-md-8.p-0 h5 span,a").toArray().map((statusElem) => $$1(statusElem).text()),
presenter,
monetaryType
];
const voteText = $$1(".row.bg-status .col-md-4.text-right").text().trim();
const voteRegex = /^ผู้แสดงความคิดเห็น\s*(\d+)\s*คน\s*(\d+(?:\.\d+)?)%\s*(\d+(?:\.\d+)?)%/g.exec(voteText);
if (voteRegex) {
const voteTotal = Number.parseInt(voteRegex[0]);
const upvotePercent = Number.parseFloat(voteRegex[1]);
const downvotePercent = Number.parseFloat(voteRegex[2]);
item.upvotes = Number.parseInt(upvotePercent / 100 * voteTotal);
item.downvotes = Number.parseInt(downvotePercent / 100 * voteTotal);
}
const dateText = $$1(".banner-detail .banner-detail-caption .blockquote p:last-child").text();
const dateRegex = /^รับฟังตั้งแต่วันที่\s(\d{1,2})\s*([\u0E00-\u0E7F]+)\s*(\d{4})/g.exec(dateText);
if (dateRegex) item.pubDate = timezone(new Date(Number.parseInt(dateRegex[3]) - 543, {
มกราคม: 0,
กุมภาพันธ์: 1,
มีนาคม: 2,
เมษายน: 3,
พฤษภาคม: 4,
มิถุนายน: 5,
กรกฎาคม: 6,
สิงหาคม: 7,
กันยายน: 8,
ตุลาคม: 9,
พฤศจิกายน: 10,
ธันวาคม: 11
}[dateRegex[2].trim()], Number.parseInt(dateRegex[1])), 7);
return item;
})));
if (!actListFull.length) return result;
result.item = actListFull;
return result;
}
//#endregion
export { route };