qotnews/apiserver/feed.py

166 lines
5.4 KiB
Python
Raw Normal View History

2019-08-24 08:49:11 +00:00
import logging
logging.basicConfig(
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.DEBUG)
2019-08-24 08:49:11 +00:00
import requests
2019-08-25 23:49:08 +00:00
import time
2019-10-19 07:33:06 +00:00
from bs4 import BeautifulSoup
import itertools
2019-08-24 08:49:11 +00:00
import settings
from feeds import hackernews, reddit, tildes, substack, manual
from feeds.sitemap import Sitemap
from feeds.category import Category
2020-11-17 02:50:31 +00:00
from scrapers import outline, declutter, headless, simple
2019-08-24 08:49:11 +00:00
INVALID_DOMAINS = ['youtube.com', 'bloomberg.com', 'wsj.com']
substacks = {}
2020-11-03 04:04:46 +00:00
for key, value in settings.SUBSTACK.items():
substacks[key] = substack.Publication(value['url'])
2020-11-03 22:08:50 +00:00
categories = {}
for key, value in settings.CATEGORY.items():
categories[key] = Category(value)
sitemaps = {}
2020-11-03 04:04:46 +00:00
for key, value in settings.SITEMAP.items():
sitemaps[key] = Sitemap(value)
def get_list():
feeds = {}
2020-11-11 09:26:54 +00:00
if settings.NUM_HACKERNEWS:
feeds['hackernews'] = [(x, 'hackernews', x) for x in hackernews.feed()[:settings.NUM_HACKERNEWS]]
if settings.NUM_REDDIT:
feeds['reddit'] = [(x, 'reddit', x) for x in reddit.feed()[:settings.NUM_REDDIT]]
if settings.NUM_TILDES:
feeds['tildes'] = [(x, 'tildes', x) for x in tildes.feed()[:settings.NUM_TILDES]]
if settings.NUM_SUBSTACK:
feeds['substack'] = [(x, 'substack', x) for x in substack.top.feed()[:settings.NUM_SUBSTACK]]
2020-11-03 04:04:46 +00:00
for key, publication in substacks.items():
count = settings.SUBSTACK[key]['count']
2020-11-16 23:54:54 +00:00
feeds[key] = [(x, key, x) for x in publication.feed()[:count]]
2020-11-03 22:08:50 +00:00
for key, sites in categories.items():
count = settings.CATEGORY[key].get('count') or 0
excludes = settings.CATEGORY[key].get('excludes')
2020-11-05 03:30:55 +00:00
tz = settings.CATEGORY[key].get('tz')
feeds[key] = [(x, key, u) for x, u in sites.feed(excludes)[:count]]
2020-11-03 22:08:50 +00:00
2020-11-03 04:04:46 +00:00
for key, sites in sitemaps.items():
count = settings.SITEMAP[key].get('count') or 0
excludes = settings.SITEMAP[key].get('excludes')
feeds[key] = [(x, key, u) for x, u in sites.feed(excludes)[:count]]
values = feeds.values()
feed = itertools.chain.from_iterable(itertools.zip_longest(*values, fillvalue=None))
feed = list(filter(None, feed))
2019-08-24 08:49:11 +00:00
return feed
def get_article(url):
2020-11-04 02:47:12 +00:00
scrapers = {
2020-11-17 02:50:31 +00:00
'headless': headless,
'simple': simple,
2020-11-04 02:47:12 +00:00
'outline': outline,
2020-11-17 02:50:31 +00:00
'declutter': declutter,
2020-11-04 02:47:12 +00:00
}
2020-11-17 02:50:31 +00:00
available = settings.SCRAPERS or ['headless', 'simple']
if 'simple' not in available:
available += ['simple']
2020-11-04 02:47:12 +00:00
for scraper in available:
if scraper not in scrapers.keys():
continue
try:
html = scrapers[scraper].get_html(url)
if html:
return html
except KeyboardInterrupt:
raise
except:
pass
return ''
2019-08-24 08:49:11 +00:00
2020-06-25 23:36:47 +00:00
def get_content_type(url):
try:
2020-11-03 20:27:43 +00:00
headers = {
'User-Agent': 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
'X-Forwarded-For': '66.249.66.1',
}
return requests.get(url, headers=headers, timeout=5).headers['content-type']
2020-06-25 23:36:47 +00:00
except:
pass
try:
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0'}
2020-08-14 03:57:43 +00:00
return requests.get(url, headers=headers, timeout=10).headers['content-type']
except:
2020-08-14 03:57:43 +00:00
return ''
2020-06-25 23:36:47 +00:00
def update_story(story, is_manual=False, urlref=None):
2019-08-24 08:49:11 +00:00
res = {}
if story['source'] == 'hackernews':
res = hackernews.story(story['ref'])
2019-08-24 21:37:43 +00:00
elif story['source'] == 'reddit':
res = reddit.story(story['ref'])
2019-08-25 00:36:26 +00:00
elif story['source'] == 'tildes':
res = tildes.story(story['ref'])
elif story['source'] == 'substack':
res = substack.top.story(story['ref'])
2020-11-03 22:08:50 +00:00
elif story['source'] in categories.keys():
res = categories[story['source']].story(story['ref'], urlref)
elif story['source'] in sitemaps.keys():
res = sitemaps[story['source']].story(story['ref'], urlref)
elif story['source'] in substacks.keys():
res = substacks[story['source']].story(story['ref'])
2019-11-08 05:55:30 +00:00
elif story['source'] == 'manual':
res = manual.story(story['ref'])
2019-08-24 08:49:11 +00:00
if res:
story.update(res) # join dicts
else:
logging.info('Story not ready yet')
return False
2020-11-09 04:54:50 +00:00
if story['date'] and not is_manual and story['date'] + settings.MAX_STORY_AGE < time.time():
logging.info('Story too old, removing')
2019-11-08 21:50:33 +00:00
return False
2019-08-24 08:49:11 +00:00
if story.get('url', '') and not story.get('text', ''):
2020-06-25 23:36:47 +00:00
if not get_content_type(story['url']).startswith('text/'):
logging.info('URL invalid file type / content type:')
logging.info(story['url'])
return False
if any([domain in story['url'] for domain in INVALID_DOMAINS]):
2020-06-25 23:36:47 +00:00
logging.info('URL invalid domain:')
logging.info(story['url'])
return False
logging.info('Getting article ' + story['url'])
story['text'] = get_article(story['url'])
if not story['text']: return False
return True
if __name__ == '__main__':
2019-10-08 08:00:50 +00:00
#test_news_cache = {}
#nid = 'jean'
#ref = 20802050
#source = 'hackernews'
#test_news_cache[nid] = dict(id=nid, ref=ref, source=source)
#news_story = test_news_cache[nid]
#update_story(news_story)
2019-10-19 07:33:06 +00:00
#print(get_article('https://www.bloomberg.com/news/articles/2019-09-23/xi-s-communists-under-pressure-as-high-prices-hit-china-workers'))
a = get_article('https://blog.joinmastodon.org/2019/10/mastodon-3.0/')
print(a)
2019-10-08 08:00:50 +00:00
print('done')