ImplicitCoder / django-invitations_code

Generic invitations app for Django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

###Django-invitations - Extended to allow for user code

This is a fork of the original django-invitations app developed by bee-keeper https://github.com/bee-keeper/django-invitations

The app was modified to allow a code to be logged when an invitation has been created. This code will show up in the invitations table of the database and can be coupled to the user name like for example as follows:

In models.py add something like:

class RespondentProfile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)
    last_task = models.DateTimeField(default='2000-01-01 00:01', blank=True)
    respondent_id = models.CharField(max_length=20, default="000", blank=True)
    respondent_email = models.EmailField(max_length=100, default="none@nothing.com", blank=True)

def create_respondent(sender, **kwargs):
    user = kwargs["instance"]
    if kwargs["created"]:
        respondent_profile = RespondentProfile(user=user)
        invite = Invitation.objects.get(email=user.email)
        resp_id = invite.respondent_id
        repsondent_profile.respondent_email = user.email
        respondent_profile.respondent_id= resp_id
        respondent_profile.save()

post_save.connect(create_respondent, sender=User)

###Original readme here:

##Django-invitations - Generic invitations app

Build Status

Coverage Status

###About Generic invitations solution with adaptable backend and support for django-allauth. All emails and messages are fully customisable.

Originally written as an invitations solution for the excellent django-allauth, this app has been refactored to remove the allauth dependency whilst retaining 100% backwards compatibility.

Generic Invitation flow:

  • Priviledged user invites prospective user by email (via either Django admin, form post, JSON post or programmatically)
  • User receives invitation email with confirmation link
  • User clicks link and is redirected to a preconfigured url (default is accounts/signup)

Allauth Invitation flow:

  • As above but..
  • User clicks link, their email is confirmed and they are redirected to signup
  • The signup URL has the email prefilled and upon signing up the user is logged into the site

###Generic Installation

pip install django-invitations

# Add to settings.py, INSTALLED_APPS
'invitations',

# Append to urls.py
url(r'^invitations/', include('invitations.urls', namespace='invitations')),

###Allauth Integration

As above but note that invitations must come after allauth in the INSTALLED_APPS

# Add to settings.py
ACCOUNT_ADAPTER = 'invitations.models.InvitationsAdapter'

###Sending Invites

# inviter argument is optional
invite = Invitation.create('email@example.com', inviter=request.user)
invite.send_invitation(request)

To send invites via django admin, just add an invite and save.

###Bulk Invites

Bulk invites are supported via JSON. Post a list of comma separated emails to the dedicated URL and Invitations will return a data object containing a list of valid and invalid invitations.

###Testing

python manage.py test or tox

###Additional Configuration

  • INVITATIONS_INVITATION_EXPIRY (default=3)

    Integer. How many days before the invitation expires.

  • INVITATIONS_INVITATION_ONLY (default=False)

    Boolean. If the site is invite only, or open to all (only relevant when using allauth).

  • INVITATIONS_CONFIRM_INVITE_ON_GET (default=True)

    Boolean. If confirmations can be accepted via a GET request.

  • INVITATIONS_ACCEPT_INVITE_AFTER_SIGNUP (default=False)

    Boolean. If True, invitations will be accepted after users finish signup. If False, invitations will be accepted right after the invitation link is clicked. Note that this only works with Allauth for now, which means ACCOUNT_ADAPTER has to be 'invitations.models.InvitationsAdapter'.

  • INVITATIONS_GONE_ON_ACCEPT_ERROR (default=True)

    Boolean. If True, return an HTTP 410 GONE response if the invitation key is invalid, or the invitation is expired or previously accepted when accepting an invite. If False, display an error message and redirect on errors:

    • Redirects to INVITATIONS_SIGNUP_REDIRECT on an expired key
    • Otherwise, redirects to INVITATIONS_LOGIN_REDIRECT on other errors.
  • INVITATIONS_ALLOW_JSON_INVITES (default=False)

    Expose a URL for authenticated posting of invitees

  • INVITATIONS_SIGNUP_REDIRECT (default='account_signup')

    URL name of your signup URL.

  • INVITATIONS_LOGIN_REDIRECT (default=LOGIN_URL from Django settings)

    URL name of your login URL.

  • INVITATIONS_ADAPTER (default='invitations.adapters.BaseInvitationsAdapter')

    Used for custom integrations. Set this to ACCOUNT_ADAPTER if using django-allauth.

  • INVITATIONS_EMAIL_MAX_LENGTH (default=254)

    If set to None (the default), invitation email max length will be set up to 254. Set this to an integer value to set up a custome email max length value.

  • INVITATIONS_EMAIL_SUBJECT_PREFIX (default=None)

    If set to None (the default), invitation email subjects will be prefixed with the name of the current Site in brackets (such as [example.com]). Set this to a string to for a custom email subject prefix, or an empty string for no prefix.

###Signals

The following signals are emitted:

  • invite_url_sent
  • invite_accepted

###Management Commands Expired and accepted invites can be cleared as so:

python manage.py clear_expired_invitations

About

Generic invitations app for Django

License:GNU General Public License v3.0


Languages

Language:Python 98.6%Language:HTML 1.4%