mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
112 lines
2.3 KiB
Python
112 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
github3.api
|
|
~~~~~~~~~~~
|
|
|
|
This module provies the core GitHub3 API interface.
|
|
"""
|
|
|
|
import omnijson as json
|
|
|
|
from .models import *
|
|
from .helpers import is_collection, to_python, to_api, get_scope
|
|
from .config import settings
|
|
|
|
|
|
import requests
|
|
|
|
|
|
class GithubCore(object):
|
|
|
|
@staticmethod
|
|
def _resource_serialize(o):
|
|
"""Returns JSON serialization of given object."""
|
|
return json.dumps(o)
|
|
|
|
|
|
@staticmethod
|
|
def _resource_deserialize(s):
|
|
"""Returns dict deserialization of a given JSON string."""
|
|
|
|
try:
|
|
return json.loads(s)
|
|
except ValueError:
|
|
raise ResponseError('The API Response was not valid.')
|
|
|
|
|
|
@staticmethod
|
|
def _generate_url(endpoint):
|
|
"""Generates proper endpoint URL."""
|
|
|
|
if is_collection(endpoint):
|
|
resource = map(str, endpoint)
|
|
resource = '/'.join(endpoint)
|
|
else:
|
|
resource = endpoint
|
|
|
|
return (settings.base_url + resource)
|
|
|
|
|
|
def _get_http_resource(self, endpoint, params=None):
|
|
|
|
url = self._generate_url(endpoint)
|
|
r = requests.get(url, params=params)
|
|
r.raise_for_status()
|
|
|
|
return r
|
|
|
|
|
|
|
|
def _get_resource(self, resource, obj, **kwargs):
|
|
|
|
r = self._get_http_resource(resource, params=kwargs)
|
|
item = self._resource_deserialize(r.content)
|
|
|
|
return obj.new_from_dict(item, gh=self)
|
|
|
|
|
|
def _to_map(self, obj, iterable):
|
|
"""Maps given dict iterable to a given Resource object."""
|
|
|
|
a = list()
|
|
|
|
for it in iterable:
|
|
a.append(obj.new_from_dict(it, rdd=self))
|
|
|
|
return a
|
|
|
|
def _get_url(self, resource):
|
|
|
|
if is_collection(resource):
|
|
resource = map(str, resource)
|
|
resource = '/'.join(resource)
|
|
|
|
return resource
|
|
|
|
|
|
|
|
class Github(GithubCore):
|
|
"""docstring for Github"""
|
|
|
|
def __init__(self):
|
|
super(Github, self).__init__()
|
|
|
|
|
|
def get_user(self, username):
|
|
# return 'kennethreitz'
|
|
"""Get a single user."""
|
|
return self._get_resource(('users', username), User)
|
|
# return User()
|
|
|
|
|
|
def get_me(self):
|
|
"""Get the authenticated user."""
|
|
return self._get_resource(('users'), User)
|
|
|
|
|
|
|
|
class ResponseError(Exception):
|
|
"""The API Response was unexpected."""
|
|
|