Metadata-Version: 1.0
Name: django-social-auth
Version: 0.1.0
Summary: Django social authentication made simple.
Home-page: https://github.com/omab/django-social-auth
Author: Matías Aguirre
Author-email: matiasaguirre@gmail.com
License: GPL
Description: ==================
        Django Social Auth
        ==================
        
        Django Social Auth is an easy to setup social authentication/registration
        mechanism for Django projects.
        
        Crafted using base code from django-twitter-oauth_ and django-openid-auth_,
        implements a common interface to define new authentication providers from
        third parties.
        
        
        --------
        Features
        --------
        This application provides user registration and login using social sites
        credentials, some features are:
        
        - Registration and Login using social sites using the following providers
          at the moment:
        
            * `Google OpenID`_
            * `Yahoo OpenID`_
            * OpenId_ like myOpenID_
            * `Twitter OAuth`_
            * `Facebook OAuth`_
            * `Orkut OAuth`_
        
        - Basic user data population and signaling, to allows custom fields values
          from providers response
        
        - Multiple social accounts association to single users
        
        - Custom User model override if needed (`auth.User`_ by default)
        
        
        ------------
        Dependencies
        ------------
        Dependencies that must be meet to use the app:
        
        - OpenId_ support depends on python-openid_
        
        - OAuth_ support depends on python-oauth_
        
        - Twitter and Facebook support demands an application registration
          on their corresponding sites.
        
        ------------
        Installation
        ------------
        
        From pypi_::
        
            $ pip install django-social-auth
        
        or clone from github_::
        
            $ git clone git://github.com/omab/django-social-auth.git
        
        and add social_auth to PYTHONPATH::
        
            $ export PYTHONPATH=$PYTHONPATH:$(pwd)/django-social-auth/
        
        or::
        
            $ cd django-social-auth
            $ sudo python setup.py install
        
        
        -------------
        Configuration
        -------------
        - Add social_auth to PYTHONPATH and installed applications::
        
            INSTALLED_APPS = (
                ...
                'social_auth'
            )
        
        - Add desired authentication backends to AUTHENTICATION_BACKENDS_ setting::
        
            AUTHENTICATION_BACKENDS = (
                'social_auth.backends.TwitterOAuthBackend',
                'social_auth.backends.FacebookOAuthBackend',
                'social_auth.backends.OrkutOAuthBackend',
                'social_auth.backends.GoogleOpenIDBackend',
                'social_auth.backends.YahooOpenIDBackend',
                'social_auth.backends.OpenIDBackend',
                'django.contrib.auth.backends.ModelBackend',
            )
        
        - Setup Twitter and Facebook keys (see OAuth_ section for details)::
        
            TWITTER_CONSUMER_KEY    = ''
            TWITTER_CONSUMER_SECRET = ''
            FACEBOOK_APP_ID         = ''
            FACEBOOK_API_SECRET     = ''
            ORKUT_CONSUMER_KEY      = ''
            ORKUT_CONSUMER_SECRET   = ''
        
        - Setup login URLs::
        
            LOGIN_URL          = '/login-form/'
            LOGIN_REDIRECT_URL = '/logged-in/'
            LOGIN_ERROR_URL    = '/login-error/'
        
          Check Django documentation at `Login URL`_ and `Login redirect URL`_
        
        - Configure authentication and association complete URL names to avoid
          possible clashes::
        
            SOCIAL_AUTH_COMPLETE_URL_NAME  = 'namespace:complete'
            SOCIAL_AUTH_ASSOCIATE_URL_NAME = 'namespace:association_complete'
        
        - Add URLs entries::
        
            urlpatterns = patterns('',
                ...
                url(r'', include('social_auth.urls', namespace='social')),
                ...
            )
        
        - Sync database to create needed models::
        
            ./manage syncdb
        
        - Not mandatory, but recommended::
        
            SOCIAL_AUTH_DEFAULT_USERNAME = 'new_social_auth_user'
        
          or::
        
            import random
            SOCIAL_AUTH_DEFAULT_USERNAME = lambda: random.choice(['Darth Vader', 'Obi-Wan Kenobi', 'R2-D2', 'C-3PO', 'Yoda'])
        
          final user name will have an integer suffix in case it's already taken.
        
        - OAuth_ authentication will store access_token by default, set this value
          to False to avoid such behavior::
        
            SOCIAL_AUTH_EXTRA_DATA = False
        
        - It's possible to override the used User model if needed::
        
            SOCIAL_AUTH_USER_MODEL = 'myapp.CustomUser'
        
          This class *must* have a custom `Model Manager`_ with a create_user method
          that resembles the one on `auth.UserManager`_.
        
          Also, it's highly recommended that this class define the following fields::
        
            username   = CharField(...)
            last_login = DateTimeField(blank=True)
            is_active  = BooleanField(...)
        
          and the method::
        
            is_authenticated():
                ...
        
          These are needed to ensure a better django-auth integration, in other case
          `login_required`_ won't be usable. A warning is displayed if any of these are
          missing. By default `auth.User`_ is used.
        
          Check example application for implementation details, but first, please take
          a look to `User Profiles`_, it might be what you were looking for.
        
        
        -------
        Signals
        -------
        A pre_update signal is sent when user data is about to be updated with new
        values from authorization service provider, this apply to new users and already
        existent ones. This is useful to update custom user fields or `User Profiles`_,
        for example, to store user gender, location, etc. Example::
        
            from django.dispatch import receiver
        
            from social_auth.signals import pre_save
            from social_auth.backends import FacebookBackend
        
            @receiver(pre_save, sender=FacebookBackend)
            def facebook_extra_values(sender, user, response, details):
                user.gender = response.get('gender')
                return True
        
        
        ------
        OpenId
        ------
        OpenId_ support is simpler to implement than OAuth_. Google and Yahoo
        providers are supported by default, others are supported by POST method
        providing endpoint URL.
        
        
        -----
        OAuth
        -----
        OAuth_ communication demands a set of keys exchange to validate the client
        authenticity prior to user approbation. Twitter, Facebook and Orkut
        facilitates these keys by application registration, see next sections for
        details.
        
        
        -------
        Twitter
        -------
        Twitter offers per application keys named "Consumer Key" and
        "Consumer Secret". To enable Twitter these two keys are needed.
        Further documentation at `Twitter development resources`_:
        
        - Register a new application at `Twitter App Creation`_,
        
        - mark the "Yes, use Twitter for login" checkbox, and
        
        - fill "Consumer Key" and "Consumer Secret" values::
        
              TWITTER_CONSUMER_KEY
              TWITTER_CONSUMER_SECRET
        
        - You don't need to specify the URL callback
        
        
        --------
        Facebook
        --------
        Facebook works similar to Twitter but it's simpler to setup and
        redirect URL is passed as a parameter when issuing an authorization.
        Further documentation at `Facebook development resources`_:
        
        - Register a new application at `Facebook App Creation`_, and
        
        - fill "App Id" and "App Secret" values in values::
        
              FACEBOOK_APP_ID
              FACEBOOK_API_SECRET
        
        
        -----
        Orkut
        -----
        Orkut offers per application keys named "Consumer Key" and
        "Consumer Secret". To enable Orkut these two keys are needed.
        
        Check `Google support`_ and `Orkut API`_ for details on getting
        your consumer_key and consumer_secret keys.
        
        - fill "Consumer Key" and "Consumer Secret" values::
        
              ORKUT_CONSUMER_KEY
              ORKUT_CONSUMER_SECRET
        
        
        ----
        Bugs
        ----
        Several, maybe, please report :-)
        
        
        ------------
        Contributors
        ------------
        Attributions to whom deserves:
        
        - caioariede_ (Caio Ariede)::
        
          Improvements and Orkut support
        
        - krvss_ (Caio Ariede)::
        
          Initial setup.py configuration
        
        
        ----------
        Copyrights
        ----------
        Base work is copyrighted by:
        
        - django-twitter-oauth::
        
            Original Copyright goes to Henrik Lied (henriklied)
            Code borrowed from https://github.com/henriklied/django-twitter-oauth
        
        - django-openid-auth::
        
            django-openid-auth -  OpenID integration for django.contrib.auth
            Copyright (C) 2007 Simon Willison
            Copyright (C) 2008-2010 Canonical Ltd.
        
        .. _Model Manager: http://docs.djangoproject.com/en/dev/topics/db/managers/#managers
        .. _Login URL: http://docs.djangoproject.com/en/dev/ref/settings/?from=olddocs#login-url
        .. _Login redirect URL: http://docs.djangoproject.com/en/dev/ref/settings/?from=olddocs#login-redirect-url
        .. _AUTHENTICATION_BACKENDS: http://docs.djangoproject.com/en/dev/ref/settings/?from=olddocs#authentication-backends
        .. _auth.User: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py#L186
        .. _auth.UserManager: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py#L114
        .. _login_required: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/decorators.py#L39
        .. _User Profiles: http://www.djangobook.com/en/1.0/chapter12/#cn222
        .. _OpenId: http://openid.net/
        .. _OAuth: http://oauth.net/
        .. _django-twitter-oauth: https://github.com/henriklied/django-twitter-oauth
        .. _django-openid-auth: https://launchpad.net/django-openid-auth
        .. _python-openid: http://pypi.python.org/pypi/python-openid/
        .. _python-oauth: https://github.com/leah/python-oauth
        .. _Twitter development resources: http://dev.twitter.com/pages/auth
        .. _Twitter App Creation: http://twitter.com/apps/new
        .. _dnsmasq: http://www.thekelleys.org.uk/dnsmasq/doc.html
        .. _Facebook development resources: http://developers.facebook.com/docs/authentication/
        .. _Facebook App Creation: http://developers.facebook.com/setup/
        .. _caioariede: https://github.com/caioariede
        .. _krvss: https://github.com/krvss
        .. _Google support: http://www.google.com/support/a/bin/answer.py?hl=en&answer=162105
        .. _Orkut API:  http://code.google.com/apis/orkut/docs/rest/developers_guide_protocol.html#Authenticating
        .. _Google OpenID: http://code.google.com/apis/accounts/docs/OpenID.html
        .. _Yahoo OpenID: http://openid.yahoo.com/
        .. _Twitter OAuth: http://dev.twitter.com/pages/oauth_faq
        .. _Facebook OAuth: http://developers.facebook.com/docs/authentication/
        .. _Orkut OAuth:  http://code.google.com/apis/orkut/docs/rest/developers_guide_protocol.html#Authenticating
        .. _myOpenID: https://www.myopenid.com/
        .. _pypi: http://pypi.python.org/pypi/django-social-auth/
        .. _github: https://github.com/omab/django-social-auth
        
Keywords: django,openid,oath,social auth,application
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Internet
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
