12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064 |
- # -*- coding: utf-8 -*-
- """
- flaskbb.forum.models
- ~~~~~~~~~~~~~~~~~~~~
- It provides the models for the forum
- :copyright: (c) 2014 by the FlaskBB Team.
- :license: BSD, see LICENSE for more details.
- """
- from datetime import datetime, timedelta
- from flask import url_for, abort
- from sqlalchemy.orm import aliased
- from flaskbb.extensions import db
- from flaskbb.utils.decorators import can_access_forum, can_access_topic
- from flaskbb.utils.helpers import slugify, get_categories_and_forums, get_forums
- from flaskbb.utils.settings import flaskbb_config
- moderators = db.Table(
- 'moderators',
- db.Column('user_id', db.Integer(), db.ForeignKey('users.id'),
- nullable=False),
- db.Column('forum_id', db.Integer(),
- db.ForeignKey('forums.id', use_alter=True, name="fk_forum_id"),
- nullable=False))
- topictracker = db.Table(
- 'topictracker',
- db.Column('user_id', db.Integer(), db.ForeignKey('users.id'),
- nullable=False),
- db.Column('topic_id', db.Integer(),
- db.ForeignKey('topics.id',
- use_alter=True, name="fk_tracker_topic_id"),
- nullable=False))
- # m2m table for group-forum permission mapping
- forumgroups = db.Table(
- 'forumgroups',
- db.Column(
- 'group_id',
- db.Integer(),
- db.ForeignKey('groups.id'),
- nullable=False
- ),
- db.Column(
- 'forum_id',
- db.Integer(),
- db.ForeignKey('forums.id', use_alter=True, name="fk_forum_id"),
- nullable=False
- )
- )
- class TopicsRead(db.Model):
- __tablename__ = "topicsread"
- user_id = db.Column(db.Integer, db.ForeignKey("users.id"),
- primary_key=True)
- topic_id = db.Column(db.Integer,
- db.ForeignKey("topics.id", use_alter=True,
- name="fk_tr_topic_id"),
- primary_key=True)
- forum_id = db.Column(db.Integer,
- db.ForeignKey("forums.id", use_alter=True,
- name="fk_tr_forum_id"),
- primary_key=True)
- last_read = db.Column(db.DateTime, default=datetime.utcnow())
- def __repr__(self):
- return "<{}>".format(self.__class__.__name__)
- def save(self):
- """Saves a TopicsRead entry."""
- db.session.add(self)
- db.session.commit()
- return self
- def delete(self):
- """Deletes a TopicsRead entry."""
- db.session.delete(self)
- db.session.commit()
- return self
- class ForumsRead(db.Model):
- __tablename__ = "forumsread"
- user_id = db.Column(db.Integer, db.ForeignKey("users.id"),
- primary_key=True)
- forum_id = db.Column(db.Integer,
- db.ForeignKey("forums.id", use_alter=True,
- name="fk_fr_forum_id"),
- primary_key=True)
- last_read = db.Column(db.DateTime, default=datetime.utcnow())
- cleared = db.Column(db.DateTime)
- def __repr__(self):
- return "<{}>".format(self.__class__.__name__)
- def save(self):
- """Saves a ForumsRead entry."""
- db.session.add(self)
- db.session.commit()
- return self
- def delete(self):
- """Deletes a ForumsRead entry."""
- db.session.delete(self)
- db.session.commit()
- return self
- class Report(db.Model):
- __tablename__ = "reports"
- id = db.Column(db.Integer, primary_key=True)
- reporter_id = db.Column(db.Integer, db.ForeignKey("users.id"),
- nullable=False)
- reported = db.Column(db.DateTime, default=datetime.utcnow())
- post_id = db.Column(db.Integer, db.ForeignKey("posts.id"), nullable=False)
- zapped = db.Column(db.DateTime)
- zapped_by = db.Column(db.Integer, db.ForeignKey("users.id"))
- reason = db.Column(db.Text)
- post = db.relationship("Post", backref="report", lazy="joined")
- reporter = db.relationship("User", lazy="joined",
- foreign_keys=[reporter_id])
- zapper = db.relationship("User", lazy="joined", foreign_keys=[zapped_by])
- def __repr__(self):
- return "<{} {}>".format(self.__class__.__name__, self.id)
- def save(self, post=None, user=None):
- """Saves a report.
- :param post: The post that should be reported
- :param user: The user who has reported the post
- :param reason: The reason why the user has reported the post
- """
- if self.id:
- db.session.add(self)
- db.session.commit()
- return self
- if post and user:
- self.reporter_id = user.id
- self.reported = datetime.utcnow()
- self.post_id = post.id
- db.session.add(self)
- db.session.commit()
- return self
- def delete(self):
- """Deletes a report."""
- db.session.delete(self)
- db.session.commit()
- return self
- class Post(db.Model):
- __tablename__ = "posts"
- __searchable__ = ['content', 'username']
- id = db.Column(db.Integer, primary_key=True)
- topic_id = db.Column(db.Integer,
- db.ForeignKey("topics.id",
- use_alter=True,
- name="fk_post_topic_id",
- ondelete="CASCADE"))
- user_id = db.Column(db.Integer, db.ForeignKey("users.id"), nullable=True)
- username = db.Column(db.String(200), nullable=False)
- content = db.Column(db.Text, nullable=False)
- date_created = db.Column(db.DateTime, default=datetime.utcnow())
- date_modified = db.Column(db.DateTime)
- modified_by = db.Column(db.String(200))
- # Properties
- @property
- def url(self):
- """Returns the url for the post"""
- return url_for("forum.view_post", post_id=self.id)
- # Methods
- def __init__(self, content=None):
- if content:
- self.content = content
- def __repr__(self):
- """
- Set to a unique key specific to the object in the database.
- Required for cache.memoize() to work across requests.
- """
- return "<{} {}>".format(self.__class__.__name__, self.id)
- def save(self, user=None, topic=None):
- """Saves a new post. If no parameters are passed we assume that
- you will just update an existing post. It returns the object after the
- operation was successful.
- :param user: The user who has created the post
- :param topic: The topic in which the post was created
- """
- # update/edit the post
- if self.id:
- db.session.add(self)
- db.session.commit()
- return self
- # Adding a new post
- if user and topic:
- self.user_id = user.id
- self.username = user.username
- self.topic_id = topic.id
- self.date_created = datetime.utcnow()
- topic.last_updated = datetime.utcnow()
- # This needs to be done before I update the last_post_id.
- db.session.add(self)
- db.session.commit()
- # Now lets update the last post id
- topic.last_post_id = self.id
- # Update the last post info for the forum
- topic.forum.last_post_id = self.id
- topic.forum.last_post_title = topic.title
- topic.forum.last_post_user_id = user.id
- topic.forum.last_post_username = user.username
- topic.forum.last_post_created = datetime.utcnow()
- # Update the post counts
- user.post_count += 1
- topic.post_count += 1
- topic.forum.post_count += 1
- # And commit it!
- db.session.add(topic)
- db.session.commit()
- return self
- def delete(self):
- """Deletes a post and returns self"""
- # This will delete the whole topic
- if self.topic.first_post_id == self.id:
- self.topic.delete()
- return self
- # Delete the last post
- if self.topic.last_post_id == self.id:
- # update the last post in the forum
- if self.topic.last_post_id == self.topic.forum.last_post_id:
- # We need the second last post in the forum here,
- # because the last post will be deleted
- second_last_post = Post.query.\
- filter(Post.topic_id == Topic.id,
- Topic.forum_id == self.topic.forum.id).\
- order_by(Post.id.desc()).limit(2).offset(0).\
- all()
- second_last_post = second_last_post[1]
- self.topic.forum.last_post_id = second_last_post.id
- # check if there is a second last post, else it is the first post
- if self.topic.second_last_post:
- # Now the second last post will be the last post
- self.topic.last_post_id = self.topic.second_last_post
- # there is no second last post, now the last post is also the
- # first post
- else:
- self.topic.last_post_id = self.topic.first_post_id
- # Update the post counts
- self.user.post_count -= 1
- self.topic.post_count -= 1
- self.topic.forum.post_count -= 1
- db.session.commit()
- db.session.delete(self)
- db.session.commit()
- return self
- class Topic(db.Model):
- __tablename__ = "topics"
- __searchable__ = ['title', 'username']
- id = db.Column(db.Integer, primary_key=True)
- forum_id = db.Column(db.Integer,
- db.ForeignKey("forums.id",
- use_alter=True,
- name="fk_topic_forum_id"),
- nullable=False)
- title = db.Column(db.String(255), nullable=False)
- user_id = db.Column(db.Integer, db.ForeignKey("users.id"))
- username = db.Column(db.String(200), nullable=False)
- date_created = db.Column(db.DateTime, default=datetime.utcnow())
- last_updated = db.Column(db.DateTime, default=datetime.utcnow())
- locked = db.Column(db.Boolean, default=False)
- important = db.Column(db.Boolean, default=False)
- views = db.Column(db.Integer, default=0)
- post_count = db.Column(db.Integer, default=0)
- # One-to-one (uselist=False) relationship between first_post and topic
- first_post_id = db.Column(db.Integer, db.ForeignKey("posts.id",
- ondelete="CASCADE"))
- first_post = db.relationship("Post", backref="first_post", uselist=False,
- foreign_keys=[first_post_id])
- # One-to-one
- last_post_id = db.Column(db.Integer, db.ForeignKey("posts.id"))
- last_post = db.relationship("Post", backref="last_post", uselist=False,
- foreign_keys=[last_post_id])
- # One-to-many
- posts = db.relationship("Post", backref="topic", lazy="dynamic",
- primaryjoin="Post.topic_id == Topic.id",
- cascade="all, delete-orphan", post_update=True)
- # Properties
- @property
- def second_last_post(self):
- """Returns the second last post."""
- return self.posts[-2].id
- @property
- def slug(self):
- """Returns a slugified version from the topic title"""
- return slugify(self.title)
- @property
- def url(self):
- """Returns the slugified url for the topic"""
- return url_for("forum.view_topic", topic_id=self.id, slug=self.slug)
- # Methods
- def __init__(self, title=None):
- if title:
- self.title = title
- def __repr__(self):
- """
- Set to a unique key specific to the object in the database.
- Required for cache.memoize() to work across requests.
- """
- return "<{} {}>".format(self.__class__.__name__, self.id)
- @classmethod
- @can_access_topic
- def get_topic(cls, topic_id, user):
- topic = Topic.query.filter_by(id=topic_id).first()
- return topic
- def tracker_needs_update(self, forumsread, topicsread):
- """Returns True if the topicsread tracker needs an update.
- Also, if the ``TRACKER_LENGTH`` is configured, it will just recognize
- topics that are newer than the ``TRACKER_LENGTH`` (in days) as unread.
- TODO: Couldn't think of a better name for this method - ideas?
- :param forumsread: The ForumsRead object is needed because we also
- need to check if the forum has been cleared
- sometime ago.
- :param topicsread: The topicsread object is used to check if there is
- a new post in the topic.
- """
- read_cutoff = None
- if flaskbb_config['TRACKER_LENGTH'] > 0:
- read_cutoff = datetime.utcnow() - timedelta(
- days=flaskbb_config['TRACKER_LENGTH'])
- # The tracker is disabled - abort
- if read_cutoff is None:
- return False
- # Else the topic is still below the read_cutoff
- elif read_cutoff > self.last_post.date_created:
- return False
- # Can be None (cleared) if the user has never marked the forum as read.
- # If this condition is false - we need to update the tracker
- if forumsread and forumsread.cleared is not None and \
- forumsread.cleared >= self.last_post.date_created:
- return False
- if topicsread and topicsread.last_read >= self.last_post.date_created:
- return False
- return True
- def update_read(self, user, forum, forumsread):
- """Updates the topicsread and forumsread tracker for a specified user,
- if the topic contains new posts or the user hasn't read the topic.
- Returns True if the tracker has been updated.
- :param user: The user for whom the readstracker should be updated.
- :param forum: The forum in which the topic is.
- :param forumsread: The forumsread object. It is used to check if there
- is a new post since the forum has been marked as
- read.
- """
- # User is not logged in - abort
- if not user.is_authenticated():
- return False
- topicsread = TopicsRead.query.\
- filter(TopicsRead.user_id == user.id,
- TopicsRead.topic_id == self.id).first()
- if not self.tracker_needs_update(forumsread, topicsread):
- return False
- # Because we return True/False if the trackers have been
- # updated, we need to store the status in a temporary variable
- updated = False
- # A new post has been submitted that the user hasn't read.
- # Updating...
- if topicsread:
- topicsread.last_read = datetime.utcnow()
- topicsread.save()
- updated = True
- # The user has not visited the topic before. Inserting him in
- # the TopicsRead model.
- elif not topicsread:
- topicsread = TopicsRead()
- topicsread.user_id = user.id
- topicsread.topic_id = self.id
- topicsread.forum_id = self.forum_id
- topicsread.last_read = datetime.utcnow()
- topicsread.save()
- updated = True
- # No unread posts
- else:
- updated = False
- # Save True/False if the forums tracker has been updated.
- updated = forum.update_read(user, forumsread, topicsread)
- return updated
- def move(self, forum):
- """Moves a topic to the given forum.
- Returns True if it could successfully move the topic to forum.
- :param forum: The new forum for the topic
- """
- # if the target forum is the current forum, abort
- if self.forum_id == forum.id:
- return False
- old_forum = self.forum
- self.forum.post_count -= self.post_count
- self.forum.topic_count -= 1
- self.forum_id = forum.id
- forum.post_count += self.post_count
- forum.topic_count += 1
- db.session.commit()
- forum.update_last_post()
- old_forum.update_last_post()
- TopicsRead.query.filter_by(topic_id=self.id).delete()
- return True
- def merge(self, topic):
- """Merges a topic with another topic
- :param topic: The new topic for the posts in this topic
- """
- # You can only merge a topic with a differrent topic in the same forum
- if self.id == topic.id or not self.forum_id == topic.forum_id:
- return False
- # Update the topic id
- Post.query.filter_by(topic_id=self.id).\
- update({Post.topic_id: topic.id})
- # Update the last post
- if topic.last_post.date_created < self.last_post.date_created:
- topic.last_post_id = self.last_post_id
- # Increase the post and views count
- topic.post_count += self.post_count
- topic.views += self.views
- topic.save()
- # Finally delete the old topic
- Topic.query.filter_by(id=self.id).delete()
- return True
- def save(self, user=None, forum=None, post=None):
- """Saves a topic and returns the topic object. If no parameters are
- given, it will only update the topic.
- :param user: The user who has created the topic
- :param forum: The forum where the topic is stored
- :param post: The post object which is connected to the topic
- """
- # Updates the topic
- if self.id:
- db.session.add(self)
- db.session.commit()
- return self
- # Set the forum and user id
- self.forum_id = forum.id
- self.user_id = user.id
- self.username = user.username
- # Set the last_updated time. Needed for the readstracker
- self.last_updated = datetime.utcnow()
- self.date_created = datetime.utcnow()
- # Insert and commit the topic
- db.session.add(self)
- db.session.commit()
- # Create the topic post
- post.save(user, self)
- # Update the first post id
- self.first_post_id = post.id
- # Update the topic count
- forum.topic_count += 1
- db.session.commit()
- return self
- def delete(self, users=None):
- """Deletes a topic with the corresponding posts. If a list with
- user objects is passed it will also update their post counts
- :param users: A list with user objects
- """
- # Grab the second last topic in the forum + parents/childs
- topic = Topic.query.\
- filter_by(forum_id=self.forum_id).\
- order_by(Topic.last_post_id.desc()).limit(2).offset(0).all()
- # do want to delete the topic with the last post?
- if topic and topic[0].id == self.id:
- try:
- # Now the second last post will be the last post
- self.forum.last_post_id = topic[1].last_post_id
- self.forum.last_post_title = topic[1].title
- self.forum.last_post_user_id = topic[1].user_id
- self.forum.last_post_username = topic[1].username
- self.forum.last_post_created = topic[1].last_updated
- # Catch an IndexError when you delete the last topic in the forum
- # There is no second last post
- except IndexError:
- self.forum.last_post_id = None
- self.forum.last_post_title = None
- self.forum.last_post_user_id = None
- self.forum.last_post_username = None
- self.forum.last_post_created = None
- # Commit the changes
- db.session.commit()
- # These things needs to be stored in a variable before they are deleted
- forum = self.forum
- TopicsRead.query.filter_by(topic_id=self.id).delete()
- # Delete the topic
- db.session.delete(self)
- db.session.commit()
- # Update the post counts
- if users:
- for user in users:
- user.post_count = Post.query.filter_by(user_id=user.id).count()
- db.session.commit()
- forum.topic_count = Topic.query.\
- filter_by(forum_id=self.forum_id).\
- count()
- forum.post_count = Post.query.\
- filter(Post.topic_id == Topic.id,
- Topic.forum_id == self.forum_id).\
- count()
- db.session.commit()
- return self
- class Forum(db.Model):
- __tablename__ = "forums"
- __searchable__ = ['title', 'description']
- id = db.Column(db.Integer, primary_key=True)
- category_id = db.Column(db.Integer, db.ForeignKey("categories.id"),
- nullable=False)
- title = db.Column(db.String(255), nullable=False)
- description = db.Column(db.Text)
- position = db.Column(db.Integer, default=1, nullable=False)
- locked = db.Column(db.Boolean, default=False, nullable=False)
- show_moderators = db.Column(db.Boolean, default=False, nullable=False)
- external = db.Column(db.String(200))
- post_count = db.Column(db.Integer, default=0, nullable=False)
- topic_count = db.Column(db.Integer, default=0, nullable=False)
- # One-to-one
- last_post_id = db.Column(db.Integer, db.ForeignKey("posts.id"))
- last_post = db.relationship("Post", backref="last_post_forum",
- uselist=False, foreign_keys=[last_post_id])
- # Not nice, but needed to improve the performance
- last_post_title = db.Column(db.String(255))
- last_post_user_id = db.Column(db.Integer, db.ForeignKey("users.id"))
- last_post_username = db.Column(db.String(255))
- last_post_created = db.Column(db.DateTime, default=datetime.utcnow())
- # One-to-many
- topics = db.relationship(
- "Topic",
- backref="forum",
- lazy="dynamic",
- cascade="all, delete-orphan"
- )
- # Many-to-many
- moderators = db.relationship(
- "User",
- secondary=moderators,
- primaryjoin=(moderators.c.forum_id == id),
- backref=db.backref("forummoderator", lazy="dynamic"),
- lazy="joined"
- )
- groups = db.relationship(
- "Group",
- secondary=forumgroups,
- primaryjoin=(forumgroups.c.forum_id == id),
- backref="forumgroups",
- lazy="joined",
- )
- # Properties
- @property
- def slug(self):
- """Returns a slugified version from the forum title"""
- return slugify(self.title)
- @property
- def url(self):
- """Returns the slugified url for the forum"""
- if self.external:
- return self.external
- return url_for("forum.view_forum", forum_id=self.id, slug=self.slug)
- @property
- def last_post_url(self):
- """Returns the url for the last post in the forum"""
- return url_for("forum.view_post", post_id=self.last_post_id)
- # Methods
- def __repr__(self):
- """Set to a unique key specific to the object in the database.
- Required for cache.memoize() to work across requests.
- """
- return "<{} {}>".format(self.__class__.__name__, self.id)
- def update_last_post(self):
- """Updates the last post in the forum."""
- last_post = Post.query.\
- filter(Post.topic_id == Topic.id,
- Topic.forum_id == self.id).\
- order_by(Post.date_created.desc()).\
- first()
- # Last post is none when there are no topics in the forum
- if last_post is not None:
- # a new last post was found in the forum
- if not last_post.id == self.last_post_id:
- self.last_post_id = last_post.id
- # No post found..
- else:
- self.last_post_id = None
- db.session.commit()
- def update_read(self, user, forumsread, topicsread):
- """Updates the ForumsRead status for the user. In order to work
- correctly, be sure that `topicsread is **not** `None`.
- :param user: The user for whom we should check if he has read the
- forum.
- :param forumsread: The forumsread object. It is needed to check if
- if the forum is unread. If `forumsread` is `None`
- and the forum is unread, it will create a new entry
- in the `ForumsRead` relation, else (and the forum
- is still unread) we are just going to update the
- entry in the `ForumsRead` relation.
- :param topicsread: The topicsread object is used in combination
- with the forumsread object to check if the
- forumsread relation should be updated and
- therefore is unread.
- """
- if not user.is_authenticated() or topicsread is None:
- return False
- read_cutoff = None
- if flaskbb_config['TRACKER_LENGTH'] > 0:
- read_cutoff = datetime.utcnow() - timedelta(
- days=flaskbb_config['TRACKER_LENGTH'])
- # fetch the unread posts in the forum
- unread_count = Topic.query.\
- outerjoin(TopicsRead,
- db.and_(TopicsRead.topic_id == Topic.id,
- TopicsRead.user_id == user.id)).\
- outerjoin(ForumsRead,
- db.and_(ForumsRead.forum_id == Topic.forum_id,
- ForumsRead.user_id == user.id)).\
- filter(Topic.forum_id == self.id,
- Topic.last_updated > read_cutoff,
- db.or_(TopicsRead.last_read == None,
- TopicsRead.last_read < Topic.last_updated)).\
- count()
- # No unread topics available - trying to mark the forum as read
- if unread_count == 0:
- if forumsread and forumsread.last_read > topicsread.last_read:
- return False
- # ForumRead Entry exists - Updating it because a new topic/post
- # has been submitted and has read everything (obviously, else the
- # unread_count would be useless).
- elif forumsread:
- forumsread.last_read = datetime.utcnow()
- forumsread.save()
- return True
- # No ForumRead Entry existing - creating one.
- forumsread = ForumsRead()
- forumsread.user_id = user.id
- forumsread.forum_id = self.id
- forumsread.last_read = datetime.utcnow()
- forumsread.save()
- return True
- # Nothing updated, because there are still more than 0 unread topicsread
- return False
- def save(self, groups=None):
- """Saves a forum
- :param groups: A list with group objects."""
- if self.id:
- db.session.merge(self)
- else:
- if groups is None:
- # importing here because of circular dependencies
- from flaskbb.user.models import Group
- self.groups = Group.query.order_by(Group.name.asc()).all()
- db.session.add(self)
- db.session.commit()
- return self
- def delete(self, users=None):
- """Deletes forum. If a list with involved user objects is passed,
- it will also update their post counts
- :param users: A list with user objects
- """
- # Delete the forum
- db.session.delete(self)
- db.session.commit()
- # Delete the entries for the forum in the ForumsRead and TopicsRead
- # relation
- ForumsRead.query.filter_by(forum_id=self.id).delete()
- TopicsRead.query.filter_by(forum_id=self.id).delete()
- # Update the users post count
- if users:
- users_list = []
- for user in users:
- user.post_count = Post.query.filter_by(user_id=user.id).count()
- users_list.append(user)
- db.session.add_all(users_list)
- db.session.commit()
- return self
- # Classmethods
- @classmethod
- @can_access_forum
- def get_forum(cls, forum_id, user):
- """Returns the forum and forumsread object as a tuple for the user.
- :param forum_id: The forum id
- :param user: The user object is needed to check if we also need their
- forumsread object.
- """
- if user.is_authenticated():
- forum, forumsread = Forum.query.\
- filter(Forum.id == forum_id).\
- options(db.joinedload("category")).\
- outerjoin(ForumsRead,
- db.and_(ForumsRead.forum_id == Forum.id,
- ForumsRead.user_id == user.id)).\
- add_entity(ForumsRead).\
- first_or_404()
- else:
- forum = Forum.query.filter(Forum.id == forum_id).first_or_404()
- forumsread = None
- return forum, forumsread
- @classmethod
- def get_topics(cls, forum_id, user, page=1, per_page=20):
- """Get the topics for the forum. If the user is logged in,
- it will perform an outerjoin for the topics with the topicsread and
- forumsread relation to check if it is read or unread.
- :param forum_id: The forum id
- :param user: The user object
- :param page: The page whom should be loaded
- :param per_page: How many topics per page should be shown
- """
- if user.is_authenticated():
- topics = Topic.query.filter_by(forum_id=forum_id).\
- outerjoin(TopicsRead,
- db.and_(TopicsRead.topic_id == Topic.id,
- TopicsRead.user_id == user.id)).\
- add_entity(TopicsRead).\
- order_by(Topic.important.desc(), Topic.last_updated.desc()).\
- paginate(page, per_page, True)
- else:
- topics = Topic.query.filter_by(forum_id=forum_id).\
- order_by(Topic.important.desc(), Topic.last_updated.desc()).\
- paginate(page, per_page, True)
- topics.items = [(topic, None) for topic in topics.items]
- return topics
- class Category(db.Model):
- __tablename__ = "categories"
- __searchable__ = ['title', 'description']
- id = db.Column(db.Integer, primary_key=True)
- title = db.Column(db.String(255), nullable=False)
- description = db.Column(db.Text)
- position = db.Column(db.Integer, default=1, nullable=False)
- # One-to-many
- forums = db.relationship("Forum", backref="category", lazy="dynamic",
- primaryjoin='Forum.category_id == Category.id',
- order_by='asc(Forum.position)',
- cascade="all, delete-orphan")
- # Properties
- @property
- def slug(self):
- """Returns a slugified version from the category title"""
- return slugify(self.title)
- @property
- def url(self):
- """Returns the slugified url for the category"""
- return url_for("forum.view_category", category_id=self.id,
- slug=self.slug)
- # Methods
- def __repr__(self):
- """Set to a unique key specific to the object in the database.
- Required for cache.memoize() to work across requests.
- """
- return "<{} {}>".format(self.__class__.__name__, self.id)
- def save(self):
- """Saves a category"""
- db.session.add(self)
- db.session.commit()
- return self
- def delete(self, users=None):
- """Deletes a category. If a list with involved user objects is passed,
- it will also update their post counts
- :param users: A list with user objects
- """
- # and finally delete the category itself
- db.session.delete(self)
- db.session.commit()
- # Update the users post count
- if users:
- for user in users:
- user.post_count = Post.query.filter_by(user_id=user.id).count()
- db.session.commit()
- return self
- # Classmethods
- @classmethod
- def get_all(cls, user):
- """Get all categories with all associated forums.
- It returns a list with tuples. Those tuples are containing the category
- and their associated forums (whose are stored in a list).
- For example::
- [(<Category 1>, [(<Forum 2>, <ForumsRead>), (<Forum 1>, None)]),
- (<Category 2>, [(<Forum 3>, None), (<Forum 4>, None)])]
- :param user: The user object is needed to check if we also need their
- forumsread object.
- """
- # import Group model locally to avoid cicular imports
- from flaskbb.user.models import Group
- if user.is_authenticated():
- # get list of user group ids
- user_groups = [gr.id for gr in user.groups]
- # filter forums by user groups
- user_forums = Forum.query.filter(Forum.groups.any(
- Group.id.in_(user_groups))
- ).subquery()
- forum_alias = aliased(Forum, user_forums)
- # get all
- forums = cls.query.join(
- forum_alias,
- cls.id == forum_alias.category_id
- ).outerjoin(
- ForumsRead,
- db.and_(
- ForumsRead.forum_id == forum_alias.id,
- ForumsRead.user_id == user.id
- )
- ).add_entity(
- forum_alias
- ).add_entity(
- ForumsRead
- ).order_by(
- Category.position, Category.id, forum_alias.position
- ).all()
- else:
- guest_group = Group.get_guest_group()
- # filter forums by guest groups
- guest_forums = Forum.query.filter(
- Forum.groups.any(Group.id==guest_group.id)
- ).subquery()
- forum_alias = aliased(Forum, guest_forums)
- forums = cls.query.join(
- forum_alias,
- cls.id == forum_alias.category_id
- ).add_entity(
- forum_alias
- ).order_by(
- Category.position, Category.id, forum_alias.position
- ).all()
- return get_categories_and_forums(forums, user)
- @classmethod
- def get_forums(cls, category_id, user):
- """Get the forums for the category.
- It returns a tuple with the category and the forums with their
- forumsread object are stored in a list.
- A return value can look like this for a category with two forums::
- (<Category 1>, [(<Forum 1>, None), (<Forum 2>, None)])
- :param category_id: The category id
- :param user: The user object is needed to check if we also need their
- forumsread object.
- """
- from flaskbb.user.models import Group
- if user.is_authenticated():
- # get list of user group ids
- user_groups = [gr.id for gr in user.groups]
- # filter forums by user groups
- user_forums = Forum.query.filter(Forum.groups.any(
- Group.id.in_(user_groups))
- ).subquery()
- forum_alias = aliased(Forum, user_forums)
- forums = cls.query.filter(
- cls.id == category_id
- ).join(
- forum_alias,
- cls.id == forum_alias.category_id
- ).outerjoin(
- ForumsRead,
- db.and_(
- ForumsRead.forum_id == forum_alias.id,
- ForumsRead.user_id == user.id)
- ).add_entity(
- forum_alias
- ).add_entity(
- ForumsRead
- ).order_by(
- forum_alias.position
- ).all()
- else:
- guest_group = Group.get_guest_group()
- # filter forums by guest groups
- guest_forums = Forum.query.filter(
- Forum.groups.any(Group.id==guest_group.id)
- ).subquery()
- forum_alias = aliased(Forum, guest_forums)
- forums = cls.query.filter(
- cls.id == category_id
- ).join(
- forum_alias, cls.id == forum_alias.category_id
- ).add_entity(
- forum_alias
- ).order_by(
- forum_alias.position
- ).all()
- if not forums:
- abort(404)
- return get_forums(forums, user)
|