Activities & notifications for Django
Project description
Small core for dealing with activities & notifications.
- Source code
Rationale
There are quite some Django apps for dealing with activities & notifications, yet none match my expectations/requirements:
Action URLs: they do not belong in the database/models, as your database records will outlive the URL routing configuration.
Texts & descriptions: these neither belong in the database/models. If you need to change the wording or correct a typ-o, you should not have to go over all existing records to make the change as well. But more importantly, you need to cater for internationalization, so these belong in templates where e.g. {% blocktrans %} can be used.
Views: any views that are offered out of the box are not going to match your requirements, and won’t fit in with your single page application.
Project specific data: actistream allows for storing additional project specific data per activity, and flagging activities in a performant manner.
Concepts
An activity is about an actor, involved in an action of a certain activity type, relating an action object to a target. For example:
John (=the actor) has posted a comment (=the activity type) stating “I don’t get it!” (=the action object) on the blog post titled “actistream for dummies” (the target).
A notice is an action addressed to a user. So, in Jane’s inbox you may want to display that John posted that comment. For that purpose, create a Notice relating the above activity to Jane.
Quick Start
Suppose you have a an app called blog dealing with posts and comments. Create a file named blog/activities.py, containing:
from actistream.types import ActivityWrapper, ActivityType class CommentPosted(ActivityType): verbose_name = 'Comment posted' class Wrapper(ActivityWrapper): """ Wraps the generic ``Activity`` model, expose any helper methods you see fit. Notice that the action URL is not stored in the database. """ def get_action_url(self): return self.activity.action_object.get_absolute_url() def is_active(self): """ Completely optional, but just to show that it handles the case where things get deleted. """ comment = self.activity.action_object return not comment.post.is_deleted
Given the above, whenever a new comment is created, do:
from blog.activities import CommentPosted def some_view(request): ... activity = CommentPosted.create( target=post, # The post that gets commented actor=self.request.user, action_object=comment, # The newly posted comment )
To notice users about this activity, do:
from actistream.models import Notice notice_request = ['john@doe.com', 'jane@doe.com'] Notice.objects.send( activity, notice_recipients)
Notices need to be turned into emails. For that purpose you’ll need to setup a few templates:
blog/activities/commentposted_subject.txt blog/activities/commentposted_message.txt blog/activities/commentposted_message.html
Only one of .txt or .html is required, both are allowed for combined text and HTML mails.
For turning an activity into an HTML snippet, e.g. to be displayed in a feed, do:
{% load actistream %} {% render_activity activity %}
This will try to find a template named:
blog/activities/commentposted_detail.html
Which could look someting like:
{{ activity.actor }} posted a comment to <a href="{{activity.wrapper.get_action_url}}">{{ activity.action_object.post }}</a>.
Status
Running in production since 2012, released as open source in september 2016.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-actistream-1.0.0.tar.gz
.
File metadata
- Download URL: django-actistream-1.0.0.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9846450f95c1ca6509dc0815478869b8f085f0c25dd67a3032fb05db8fb94911 |
|
MD5 | b004ee9d5168c0a717d4fe512eccf47d |
|
BLAKE2b-256 | 30b71287659e6e94d9ade70ec53a4a284f8fcd199ab3c306bb7c2efadf86d906 |