From 751fb1e7a562aa5435026133e5272888782ab0f0 Mon Sep 17 00:00:00 2001 From: ta Date: Thu, 15 Jun 2023 17:05:09 +0700 Subject: [PATCH] improve firstmedia --- sites/firstmedia.com/firstmedia.com.config.js | 12 +++++++----- sites/firstmedia.com/firstmedia.com.test.js | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sites/firstmedia.com/firstmedia.com.config.js b/sites/firstmedia.com/firstmedia.com.config.js index ef23c35f..942b9f1b 100644 --- a/sites/firstmedia.com/firstmedia.com.config.js +++ b/sites/firstmedia.com/firstmedia.com.config.js @@ -1,14 +1,16 @@ const dayjs = require("dayjs"); const timezone = require("dayjs/plugin/timezone"); +const utc = require('dayjs/plugin/utc'); + dayjs.extend(timezone); +dayjs.extend(utc); module.exports = { site: "firstmedia.com", - days: 2, + days: 1, url: function ({ channel, date }) { - return `https://www.firstmedia.com/ajax/schedule?date=${ - date.format("DD/MM/YYYY") - }&channel=${channel.site_id}&start_time=1&end_time=24&need_channels=0`; + return `https://www.firstmedia.com/ajax/schedule?date=${date.format("DD/MM/YYYY") + }&channel=${channel.site_id}&start_time=1&end_time=24&need_channels=0`; }, parser: function ({ content, channel }) { if (!content || !channel) return []; @@ -29,7 +31,7 @@ module.exports = { }; function parseItems(content, channel) { - return JSON.parse(content).entries[channel]; + return JSON.parse(content.trim()).entries[channel]; } function parseTitle(item) { diff --git a/sites/firstmedia.com/firstmedia.com.test.js b/sites/firstmedia.com/firstmedia.com.test.js index a705106b..8792b5fa 100644 --- a/sites/firstmedia.com/firstmedia.com.test.js +++ b/sites/firstmedia.com/firstmedia.com.test.js @@ -19,7 +19,7 @@ it('can parse response', () => { start: '2023-06-13T03:55:00.000Z', stop: '2023-06-13T04:30:00.000Z', title: 'China Tonight', - description: 'China is a superpower that dominates global news but it\'s also home to 1.4 billion stories. Sam Yang is back for a new season, hearing from the people who make this extraordinary nation what it is today.' + description: 'China is a superpower that dominates global news but it\'s also home to 1.4 billion stories. Sam Yang is back for a new season, hearing from the people who make this extraordinary nation what it is today.' } ]) })