Skip to content

Commit 9bb48e6

Browse files
committed
Added insert methods
1 parent d5b6df3 commit 9bb48e6

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

models/article.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,19 @@ class Article(db.Model):
1414
date_published = db.Column(db.DateTime)
1515
__table_args__ = (
1616
db.UniqueConstraint('source_id', 'guid', name='uc_source_guid'),
17-
)
17+
)
18+
19+
@classmethod
20+
def insert_from_feed(cls, source_id, feed_articles):
21+
stmt = Article.__table__.insert().prefix_with('IGNORE')
22+
articles = []
23+
for article in feed_articles:
24+
articles.append({
25+
'title': article['title'],
26+
'body': article['summary'],
27+
'link': article['link'],
28+
'guid': article['id'],
29+
'source_id': source_id,
30+
'date_published': article['published'],
31+
})
32+
db.engine.execute(stmt, articles)

models/source.py

+10
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,13 @@ class Source(db.Model):
88
link = db.Column(db.Text, nullable=False)
99
feed = db.Column(db.Text, nullable=False)
1010
date_added = db.Column(db.DateTime, default=datetime.datetime.utcnow)
11+
12+
@classmethod
13+
def insert_from_feed(cls, feed, feed_source):
14+
link = feed_source['link']
15+
title = feed_source['title']
16+
subtitle = feed_source['subtitle']
17+
source = Source(feed=feed, link=link, title=title, subtitle=subtitle)
18+
db.session.add(source)
19+
db.session.commit()
20+
return source

0 commit comments

Comments
 (0)