Ejemplo n.º 1
0
    def get_user(self, environ, cookie_monster):
        auth = TwitterMixin(environ, self.settings, cookie_monster)

        if auth.get_argument('denied', None):
            log.debug('User denied attributes exchange')
            raise UserDenied()

        container = {}

        def get_user_callback(user):
            if not user:
                raise NegotiationError()

            container['attrs'] = user

            profile_image_small = user['profile_image_url_https']
            profile_image = re.sub('_normal(?=.\w+$)', '', profile_image_small)

            container['parsed'] = {
                'uid': user['id_str'],
                'email': None,
                'username': user['username'],
                'screen_name': user['screen_name'],
                'first_name': user.get('name'),
                'last_name': None,
                'language': user.get('lang'),
                'profile_url': self.PROFILE_URL_BASE + user['username'],
                'profile_image_small': profile_image_small,
                'profile_image': profile_image,
            }

        auth.get_authenticated_user(get_user_callback)
        return container
Ejemplo n.º 2
0
    def get_user(self, environ, cookie_monster):
        auth = TwitterMixin(environ, self.settings, cookie_monster)

        if auth.get_argument('denied', None):
            log.debug('User denied attributes exchange')
            raise UserDenied()

        container = {}

        def get_user_callback(user):
            if not user:
                raise NegotiationError()

            container['attrs'] = user

            profile_image_small = user['profile_image_url_https']
            profile_image = re.sub('_normal(?=.\w+$)', '', profile_image_small)

            container['parsed'] = {
                'uid': user['id_str'],
                'email': None,
                'username': user['username'],
                'screen_name': user['screen_name'],
                'first_name': user.get('name'),
                'last_name': None,
                'language': user.get('lang'),
                'profile_url': self.PROFILE_URL_BASE + user['username'],
                'profile_image_small': profile_image_small,
                'profile_image': profile_image,
            }

        auth.get_authenticated_user(get_user_callback)
        return container
Ejemplo n.º 3
0
    def redirect(self, environ, cookie_monster):
        auth = TwitterMixin(environ, self.settings, cookie_monster)

        try:
            auth.authorize_redirect(self.callback_url)
        except HTTPRedirect, e:
            log.debug('Redirecting Twitter user to {0}'.format(e.url))
            return e.url
Ejemplo n.º 4
0
    def redirect(self, environ, cookie_monster):
        auth = TwitterMixin(environ, self.settings, cookie_monster)

        try:
            auth.authorize_redirect(self.callback_url)
        except HTTPRedirect, e:
            log.debug('Redirecting Twitter user to {0}'.format(e.url))
            return e.url