Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/_rss-allowed-domains.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ export default [
"www.rp.pl",
"meduza.io",
"novayagazeta.eu",
"theins.ru",
"www.bangkokpost.com",
"vnexpress.net",
"www.abc.net.au",
Expand Down
1 change: 1 addition & 0 deletions scripts/shared/rss-allowed-domains.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
"www.rp.pl",
"meduza.io",
"novayagazeta.eu",
"theins.ru",
"www.bangkokpost.com",
"vnexpress.net",
"www.abc.net.au",
Expand Down
2 changes: 2 additions & 0 deletions scripts/shared/source-tiers.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
"BBC Russian": 2,
"Meduza": 2,
"Novaya Gazeta Europe": 2,
"The Insider": 2,
"Moscow Times": 2,
"Bangkok Post": 2,
"Thai PBS": 2,
"ABC News Australia": 2,
Expand Down
6 changes: 6 additions & 0 deletions server/worldmonitor/news/v1/_feeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ export const VARIANT_FEEDS: Record<string, Record<string, ServerFeed[]>> = {
{ name: 'Híradó', url: gnLocale('site:hirado.hu when:2d', 'hu', 'HU', 'HU:hu'), lang: 'hu' },
{ name: 'Portfolio.hu', url: 'https://portfolio.hu/rss/all.xml', lang: 'hu' },
{ name: 'ATV', url: 'https://www.atv.hu/rss', lang: 'hu' },
// Russian independent (RU) — exile/independent journalism only; state outlets excluded
{ name: 'BBC Russian', url: 'https://feeds.bbci.co.uk/russian/rss.xml', lang: 'ru' },
{ name: 'Meduza', url: 'https://meduza.io/rss/all', lang: 'ru' },
{ name: 'Novaya Gazeta Europe', url: 'https://novayagazeta.eu/feed/rss', lang: 'ru' },
{ name: 'The Insider', url: 'https://theins.ru/feed', lang: 'ru' },
{ name: 'Moscow Times', url: 'https://www.themoscowtimes.com/rss/news' },
],
middleeast: [
{ name: 'BBC Middle East', url: 'https://feeds.bbci.co.uk/news/world/middle_east/rss.xml' },
Expand Down
1 change: 1 addition & 0 deletions shared/rss-allowed-domains.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
"www.rp.pl",
"meduza.io",
"novayagazeta.eu",
"theins.ru",
"www.bangkokpost.com",
"vnexpress.net",
"www.abc.net.au",
Expand Down
2 changes: 2 additions & 0 deletions shared/source-tiers.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
"BBC Russian": 2,
"Meduza": 2,
"Novaya Gazeta Europe": 2,
"The Insider": 2,
"Moscow Times": 2,
"Bangkok Post": 2,
"Thai PBS": 2,
"ABC News Australia": 2,
Expand Down
3 changes: 3 additions & 0 deletions src/config/feeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ export const SOURCE_TYPES: Record<string, SourceType> = {
'CSIS': 'intel', 'RAND': 'intel', 'Brookings': 'intel', 'Carnegie': 'intel',
'IAEA': 'gov', 'WHO': 'gov', 'UNHCR': 'gov',
'Xinhua': 'wire', 'TASS': 'wire', 'RT': 'wire', 'RT Russia': 'wire',
// Russian independent (exile journalism)
'The Insider': 'intel', 'Moscow Times': 'mainstream',
'NHK World': 'mainstream', 'Nikkei Asia': 'market',

// Mainstream outlets
Expand Down Expand Up @@ -282,6 +284,7 @@ const FULL_FEEDS: Record<string, Feed[]> = {
{ name: 'BBC Russian', url: rss('https://feeds.bbci.co.uk/russian/rss.xml'), lang: 'ru' },
{ name: 'Meduza', url: rss('https://meduza.io/rss/all'), lang: 'ru' },
{ name: 'Novaya Gazeta Europe', url: rss('https://novayagazeta.eu/feed/rss'), lang: 'ru' },
{ name: 'The Insider', url: rss('https://theins.ru/feed'), lang: 'ru' },
{ name: 'TASS', url: rss('https://news.google.com/rss/search?q=site:tass.com+OR+TASS+Russia+when:1d&hl=en-US&gl=US&ceid=US:en') },
{ name: 'RT', url: rss('https://www.rt.com/rss/') },
{ name: 'RT Russia', url: rss('https://www.rt.com/rss/russia/') },
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ const RSS_PROXY_ALLOWED_DOMAINS = new Set([
'www.fao.org', 'worldbank.org', 'www.imf.org',
// Regional locale feeds
'www.hurriyet.com.tr', 'tvn24.pl', 'www.polsatnews.pl', 'www.rp.pl', 'meduza.io',
'novayagazeta.eu', 'www.bangkokpost.com', 'vnexpress.net', 'www.abc.net.au',
'novayagazeta.eu', 'theins.ru', 'www.bangkokpost.com', 'vnexpress.net', 'www.abc.net.au',
'news.ycombinator.com',
// Hungarian / Central European feeds
'telex.hu', 'index.hu', 'hvg.hu', '444.hu', '24.hu', 'hirado.hu', 'portfolio.hu', 'www.portfolio.hu', 'www.atv.hu',
Expand Down
Loading