diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2015-03-01 23:34:50 +0100 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2015-03-03 22:23:47 +0100 |
commit | 6617c932816c843e0eb0045f618213331787d972 (patch) | |
tree | c1e7512c6115197aed4c1f36f06e5f38a35cd5ec /pyaggr3g470r/models/feed.py | |
parent | fixing/restoring logging level (diff) | |
download | newspipe-6617c932816c843e0eb0045f618213331787d972.tar.gz newspipe-6617c932816c843e0eb0045f618213331787d972.tar.bz2 newspipe-6617c932816c843e0eb0045f618213331787d972.zip |
splitting models
Diffstat (limited to 'pyaggr3g470r/models/feed.py')
-rw-r--r-- | pyaggr3g470r/models/feed.py | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/pyaggr3g470r/models/feed.py b/pyaggr3g470r/models/feed.py new file mode 100644 index 00000000..176f0f01 --- /dev/null +++ b/pyaggr3g470r/models/feed.py @@ -0,0 +1,76 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- + +# pyAggr3g470r - A Web based news aggregator. +# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org +# +# For more information : https://bitbucket.org/cedricbonhomme/pyaggr3g470r/ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +__author__ = "Cedric Bonhomme" +__version__ = "$Revision: 0.4 $" +__date__ = "$Date: 2013/11/05 $" +__revision__ = "$Date: 2014/04/12 $" +__copyright__ = "Copyright (c) Cedric Bonhomme" +__license__ = "GPLv3" + +from datetime import datetime +from flask import g +from sqlalchemy import desc + +db = g.db + + +class Feed(db.Model): + """ + Represent a station. + """ + id = db.Column(db.Integer, primary_key=True) + title = db.Column(db.String(), default="No title") + description = db.Column(db.String(), default="FR") + link = db.Column(db.String()) + site_link = db.Column(db.String(), default="") + email_notification = db.Column(db.Boolean(), default=False) + enabled = db.Column(db.Boolean(), default=True) + created_date = db.Column(db.DateTime(), default=datetime.now) + + # cache handling + etag = db.Column(db.String(), default="") + last_modified = db.Column(db.String(), default="") + last_retreived = db.Column(db.DateTime(), default=datetime(1970, 1, 1)) + + # error logging + last_error = db.Column(db.String(), default="") + error_count = db.Column(db.Integer(), default=0) + + # relationship + user_id = db.Column(db.Integer, db.ForeignKey('user.id')) + articles = db.relationship('Article', backref='source', lazy='dynamic', + cascade='all,delete-orphan', + order_by=desc("Article.date")) + + def __repr__(self): + return '<Feed %r>' % (self.title) + + def dump(self): + return {"id": self.id, + "title": self.title, + "description": self.description, + "link": self.link, + "site_link": self.site_link, + "etag": self.etag, + "error_count": self.error_count, + "last_modified": self.last_modified, + "last_retreived": self.last_retreived} |