SwampDragon notifications
Project description
# SwampDragon notifications
[ ](https://codeship.com/projects/63149)
Notify your users in real time.
**Note** Since notifications isn't always an essential part of a system, only signed in users receive notifications.
# Prerequisites
* Redis 2.8+
# Installation
pip install swampdragon-notifications
Add the following to `INSTALLED_APPS`:
INSTALLED_APPS = [
...
'swampdragon',
'swampdragon_auth',
'swampdragon_notifications',
]
Set the SwampDragon connection to:
SWAMP_DRAGON_CONNECTION = ('swampdragon_notifications.notification_connection.Connection', '/data')
# Setup
{% load swampdragon_tags static %}
...
<!-- Swamp dragon -->
{% swampdragon_settings %}
<script type="text/javascript" src="{% static 'swampdragon/js/dist/swampdragon.min.js' %}"></script>
<!-- Swamp dragon notifications -->
<script type="text/javascript" src="{% static 'js/dist/swampdragon-notifications.js' %}"></script>
# JavaScript API
## Get number of users online:
notifications.onlineCount(function (count) {
console.log(count);
});
## User count onChange event:
Triggered when a new user comes online or someone goes offline
notifications.onlineCountChange(function (count) {
setUserCount(count);
});
## Desktop notifications
To enable desktop notifications: `notifications.enableDesktopNotifications();`.
To disable desktop notifications: `notifications.disableDesktopNotifications();`.
To trigger a desktop notifications:
var payload = {
body:notification.some_value,
icon: notification.icon // assuming an icon url is available,
tag: 'foo'
}
notifications.desktopNotification('New foo', payload);
# Example setup (settings.py)
The following example setup will send both email notifications and realtime notifications.
To disable the email notifications: remove `'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification'` from `SWAMP_DRAGON_NOTIFICATION_BACKENDS`.
SWAMP_DRAGON_NOTIFICATION_BACKENDS = [
'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification',
'swampdragon_notifications.backends.email_notifications.EmailNotification',
]
SWAMP_DRAGON_NOTIFICATIONS = {
'foo': {
'processor': 'app.subject_renderer.foo_to_dict',
'icon': 'http://placekitten.com/g/64/64'
'subject': 'A new foo',
'template': 'new_foo_notification'
}
}
SWAMP_DRAGON_HEARTBEAT_ENABLED = True
SWAMP_DRAGON_HEARTBEAT_FREQUENCY = 1000 * 60 * 5 # Five minutes
Create a file called subject_renderer.py in your project, and add a new function:
def foo_to_dict(notification, **kwargs):
return {
...
}
The function `foo_to_dict` should return a dictionary with any data you want to pass on to the client.
## Subject processors
A subject processor belongs to a notification type (defined in `SWAMP_DRAGON_NOTIFICATIONS`).
The processor is a function, and takes a `notification` and `**kwargs` as arguments, and returns a dictionary.
Example processor:
def foo_processor(notification, **kwargs):
return {
'foo_id': notification.subject.pk,
'timestamp': now(),
'extra_value:' kwargs.get('extra_value')
}
## Settings
Enable heart beat if you are using realtime notifications.
This helps keep track on who is online.
SWAMP_DRAGON_HEARTBEAT_ENABLED = True
SWAMP_DRAGON_HEARTBEAT_FREQUENCY = 1000 * 60 * 5 # Five minutes
### `SWAMP_DRAGON_NOTIFICATIONS`
To customise notification, add `SWAMP_DRAGON_NOTIFICATIONS` to settings.
This is a dictionary:
SWAMP_DRAGON_NOTIFICATIONS = {
'foo': {
'processor': 'app.subject_renderer.foo_to_dict'
'template': 'standard_email', # Only used by email backend,
'subject': 'Dear {}, you have a new notification', # Only used by email backend
'title': 'Notification',
'icon': 'http://placekitten.com/g/64/64'
}
}
`template` and `subject` only concern the default email backend.
### Notification backends
There are two notification backends: email and realtime.
Set notification backends:
SWAMP_DRAGON_NOTIFICATION_BACKENDS = [
('realtime', 'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification'),
('email', 'swampdragon_notifications.backends.email_notifications.EmailNotification'),
]
`'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification'` is enabled by default.
### Email notification backend
The emails will, by default, be sent from `settings.SERVER_EMAIL`.
To change the sender email address specify `NOTIFICATION_SENDER` in settings.
#### Creating a custom notification backend
Add a new file to your project `foo_notification_backend.py`.
Add a class `FooNotificationBackend`
implement the function `def notify(notification):` in your custom notification backend
from swampdragon_notifications.backends.base_backend import BaseBackend
class FooNotificationBackend(BaseBackend):
def notify(self, notification):
pass
3. Add the new backend to your settings
SWAMP_DRAGON_NOTIFICATION_BACKENDS = [
...
('foo', 'myproj.foo_notification_backend.FooNotificationBackend'),
]
[ ](https://codeship.com/projects/63149)
Notify your users in real time.
**Note** Since notifications isn't always an essential part of a system, only signed in users receive notifications.
# Prerequisites
* Redis 2.8+
# Installation
pip install swampdragon-notifications
Add the following to `INSTALLED_APPS`:
INSTALLED_APPS = [
...
'swampdragon',
'swampdragon_auth',
'swampdragon_notifications',
]
Set the SwampDragon connection to:
SWAMP_DRAGON_CONNECTION = ('swampdragon_notifications.notification_connection.Connection', '/data')
# Setup
{% load swampdragon_tags static %}
...
<!-- Swamp dragon -->
{% swampdragon_settings %}
<script type="text/javascript" src="{% static 'swampdragon/js/dist/swampdragon.min.js' %}"></script>
<!-- Swamp dragon notifications -->
<script type="text/javascript" src="{% static 'js/dist/swampdragon-notifications.js' %}"></script>
# JavaScript API
## Get number of users online:
notifications.onlineCount(function (count) {
console.log(count);
});
## User count onChange event:
Triggered when a new user comes online or someone goes offline
notifications.onlineCountChange(function (count) {
setUserCount(count);
});
## Desktop notifications
To enable desktop notifications: `notifications.enableDesktopNotifications();`.
To disable desktop notifications: `notifications.disableDesktopNotifications();`.
To trigger a desktop notifications:
var payload = {
body:notification.some_value,
icon: notification.icon // assuming an icon url is available,
tag: 'foo'
}
notifications.desktopNotification('New foo', payload);
# Example setup (settings.py)
The following example setup will send both email notifications and realtime notifications.
To disable the email notifications: remove `'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification'` from `SWAMP_DRAGON_NOTIFICATION_BACKENDS`.
SWAMP_DRAGON_NOTIFICATION_BACKENDS = [
'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification',
'swampdragon_notifications.backends.email_notifications.EmailNotification',
]
SWAMP_DRAGON_NOTIFICATIONS = {
'foo': {
'processor': 'app.subject_renderer.foo_to_dict',
'icon': 'http://placekitten.com/g/64/64'
'subject': 'A new foo',
'template': 'new_foo_notification'
}
}
SWAMP_DRAGON_HEARTBEAT_ENABLED = True
SWAMP_DRAGON_HEARTBEAT_FREQUENCY = 1000 * 60 * 5 # Five minutes
Create a file called subject_renderer.py in your project, and add a new function:
def foo_to_dict(notification, **kwargs):
return {
...
}
The function `foo_to_dict` should return a dictionary with any data you want to pass on to the client.
## Subject processors
A subject processor belongs to a notification type (defined in `SWAMP_DRAGON_NOTIFICATIONS`).
The processor is a function, and takes a `notification` and `**kwargs` as arguments, and returns a dictionary.
Example processor:
def foo_processor(notification, **kwargs):
return {
'foo_id': notification.subject.pk,
'timestamp': now(),
'extra_value:' kwargs.get('extra_value')
}
## Settings
Enable heart beat if you are using realtime notifications.
This helps keep track on who is online.
SWAMP_DRAGON_HEARTBEAT_ENABLED = True
SWAMP_DRAGON_HEARTBEAT_FREQUENCY = 1000 * 60 * 5 # Five minutes
### `SWAMP_DRAGON_NOTIFICATIONS`
To customise notification, add `SWAMP_DRAGON_NOTIFICATIONS` to settings.
This is a dictionary:
SWAMP_DRAGON_NOTIFICATIONS = {
'foo': {
'processor': 'app.subject_renderer.foo_to_dict'
'template': 'standard_email', # Only used by email backend,
'subject': 'Dear {}, you have a new notification', # Only used by email backend
'title': 'Notification',
'icon': 'http://placekitten.com/g/64/64'
}
}
`template` and `subject` only concern the default email backend.
### Notification backends
There are two notification backends: email and realtime.
Set notification backends:
SWAMP_DRAGON_NOTIFICATION_BACKENDS = [
('realtime', 'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification'),
('email', 'swampdragon_notifications.backends.email_notifications.EmailNotification'),
]
`'swampdragon_notifications.backends.realtime_notifications.RealtimeNotification'` is enabled by default.
### Email notification backend
The emails will, by default, be sent from `settings.SERVER_EMAIL`.
To change the sender email address specify `NOTIFICATION_SENDER` in settings.
#### Creating a custom notification backend
Add a new file to your project `foo_notification_backend.py`.
Add a class `FooNotificationBackend`
implement the function `def notify(notification):` in your custom notification backend
from swampdragon_notifications.backends.base_backend import BaseBackend
class FooNotificationBackend(BaseBackend):
def notify(self, notification):
pass
3. Add the new backend to your settings
SWAMP_DRAGON_NOTIFICATION_BACKENDS = [
...
('foo', 'myproj.foo_notification_backend.FooNotificationBackend'),
]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
File details
Details for the file swampdragon-notifications-0.1.1.1.zip.
File metadata
- Download URL: swampdragon-notifications-0.1.1.1.zip
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a259ea58559dbcbbc1725abf1e1258090c8c22a1f7671abfd8b29cf542fe77fe
|
|
| MD5 |
bfc0524de15aac98c307a0d13f155e05
|
|
| BLAKE2b-256 |
f55e909b8cf3f43bc158fe95dfc857eecfb5fa12be897cda1c3a22b6a50981c6
|
File details
Details for the file swampdragon-notifications-0.1.1.1.tar.gz.
File metadata
- Download URL: swampdragon-notifications-0.1.1.1.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5d397b6094abfbbfcbe445f512835c950fe3f061a08063b730732285ef0fae9
|
|
| MD5 |
f65a00dd6e15c22d01725b904a9720af
|
|
| BLAKE2b-256 |
513acc8cd5005fb985174406a4b4bbda04e65c055d046eb7a1d248484f2d53a5
|