12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- from django.contrib.auth import get_user_model
- from misago.threads.models import Subscription
- from . import PostingEndpoint, PostingMiddleware
- UserModel = get_user_model()
- class SubscribeMiddleware(PostingMiddleware):
- def use_this_middleware(self):
- return self.mode != PostingEndpoint.EDIT
- def post_save(self, serializer):
- self.subscribe_new_thread()
- self.subscribe_replied_thread()
- def subscribe_new_thread(self):
- if self.mode != PostingEndpoint.START:
- return
- if self.user.subscribe_to_started_threads == UserModel.SUBSCRIBE_NONE:
- return
- self.user.subscription_set.create(
- category=self.thread.category,
- thread=self.thread,
- send_email=self.user.subscribe_to_started_threads == UserModel.SUBSCRIBE_ALL,
- )
- def subscribe_replied_thread(self):
- if self.mode != PostingEndpoint.REPLY:
- return
- if self.user.subscribe_to_replied_threads == UserModel.SUBSCRIBE_NONE:
- return
- try:
- return self.user.subscription_set.get(thread=self.thread)
- except Subscription.DoesNotExist:
- pass
- # we are replying to thread again?
- if self.user.post_set.filter(thread=self.thread).count() > 1:
- return
- self.user.subscription_set.create(
- category=self.thread.category,
- thread=self.thread,
- send_email=self.user.subscribe_to_replied_threads == UserModel.SUBSCRIBE_ALL,
- )
|