This file is indexed.

/usr/lib/python3/dist-packages/social/backends/nationbuilder.py is in python3-social-auth 1:0.2.21+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
NationBuilder OAuth2 backend, docs at:
    http://psa.matiasaguirre.net/docs/backends/nationbuilder.html
"""
from social.backends.oauth import BaseOAuth2


class NationBuilderOAuth2(BaseOAuth2):
    """NationBuilder OAuth2 authentication backend"""
    name = 'nationbuilder'
    AUTHORIZATION_URL = 'https://{slug}.nationbuilder.com/oauth/authorize'
    ACCESS_TOKEN_URL = 'https://{slug}.nationbuilder.com/oauth/token'
    ACCESS_TOKEN_METHOD = 'POST'
    REDIRECT_STATE = False
    SCOPE_SEPARATOR = ','
    EXTRA_DATA = [
        ('id', 'id'),
        ('expires', 'expires')
    ]

    def authorization_url(self):
        return self.AUTHORIZATION_URL.format(slug=self.slug)

    def access_token_url(self):
        return self.ACCESS_TOKEN_URL.format(slug=self.slug)

    @property
    def slug(self):
        return self.setting('SLUG')

    def get_user_details(self, response):
        """Return user details from Github account"""
        email = response.get('email') or ''
        username = email.split('@')[0] if email else ''
        return {'username': username,
                'email': email,
                'fullname': response.get('full_name') or '',
                'first_name': response.get('first_name') or '',
                'last_name': response.get('last_name') or ''}

    def user_data(self, access_token, *args, **kwargs):
        """Loads user data from service"""
        url = 'https://{slug}.nationbuilder.com/api/v1/people/me'.format(
            slug=self.slug
        )
        return self.get_json(url, params={
            'access_token': access_token
        })['person']