Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Vimeo OAuth 2 as part of Vimeo API v3 #237

Merged
merged 1 commit into from
Apr 2, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 54 additions & 1 deletion social/backends/vimeo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from social.backends.oauth import BaseOAuth1
from social.backends.oauth import BaseOAuth1, BaseOAuth2


class VimeoOAuth1(BaseOAuth1):
Expand Down Expand Up @@ -32,3 +32,56 @@ def user_data(self, access_token, *args, **kwargs):
params={'format': 'json', 'method': 'vimeo.people.getInfo'},
auth=self.oauth_auth(access_token)
)


class VimeoOAuth2(BaseOAuth2):
"""Vimeo OAuth2 authentication backend"""
name = 'vimeo-oauth2'
AUTHORIZATION_URL = 'https://api.vimeo.com/oauth/authorize'
ACCESS_TOKEN_URL = 'https://api.vimeo.com/oauth/access_token'
REFRESH_TOKEN_URL = 'https://api.vimeo.com/oauth/request_token'
ACCESS_TOKEN_METHOD = 'POST'
SCOPE_SEPARATOR = ','

API_ACCEPT_HEADER = {'Accept' : 'application/vnd.vimeo.*+json;version=3.0'}

def get_redirect_uri(self, state=None):
"""
Build redirect with redirect_state parameter.

@Vimeo API 3 requires exact redirect uri without additional
additional state parameter included
"""
return self.redirect_uri

def get_user_id(self, details, response):
"""Return user id"""
try:
user_id = response.get('user', {})['uri'].split('/')[-1]
except KeyError:
user_id = None
return user_id

def get_user_details(self, response):
"""Return user details from account"""
user = response.get('user', {})
fullname = user.get('name', '')

if ' ' in fullname:
first_name, last_name = fullname.split(' ', 1)
else:
first_name, last_name = fullname, ''

return {'username': fullname,
'fullname': fullname,
'first_name': first_name,
'last_name': last_name,}

def user_data(self, access_token, *args, **kwargs):
"""Return user data provided"""
return self.get_json(
'https://api.vimeo.com/me',
params={'access_token' : access_token},
headers=VimeoOAuth2.API_ACCEPT_HEADER,
)