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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
"""
github3.models
~~~~~~~~~~~~~~
This module provides the Github3 object model.
"""
from .helpers import to_python, to_api
class BaseResource(object):
"""A BaseResource object."""
_strs = []
_ints = []
_dates = []
_bools = []
_map = {}
_writeable = []
_modified = []
def __init__(self):
self._bootstrap()
super(BaseResource, self).__init__()
def __dir__(self):
d = self.__dict__.copy()
try:
del d['_gh']
except KeyError:
pass
return d.keys()
def _bootstrap(self):
"""Bootstraps the model object based on configured values."""
for attr in (self._strs + self._ints + self._dates + self._bools + self._map.keys()):
setattr(self, attr, None)
@classmethod
def new_from_dict(cls, d, gh=None):
return to_python(
obj=cls(), in_dict=d,
str_keys = cls._strs,
int_keys = cls._ints,
date_keys = cls._dates,
bool_keys = cls._bools,
object_map = cls._map,
_gh = gh
)
def update(self):
pass
def setattr(self, k, v):
# TODO: when writable key changed,
pass
class Plan(BaseResource):
"""Github Plan object model."""
_strs = ['name']
_ints = ['space', 'collaborators', 'private_repos']
def __repr__(self):
return '<plan {0}>'.format(str(self.name))
class User(BaseResource):
"""Github User object model."""
_strs = [
'login','gravatar_url', 'url', 'name', 'company', 'blog', 'location',
'email', 'bio', 'html_url']
_ints = ['id', 'public_repos', 'public_gists', 'followers', 'following']
_dates = ['created_at',]
_bools = ['hireable', ]
# _map = {}
# _writeable = []
def __repr__(self):
return '<user {0}>'.format(self.login)
def repos(self):
# return self._gh.get_repos(username=self.login)
repos = self._gh._get_resources(('users', self.login, 'repos'), Repo, authed=False)
return repos
class CurrentUser(User):
"""Github Current User object model."""
_ints = [
'id', 'public_repos', 'public_gists', 'followers', 'following',
'total_private_repos', 'owned_private_repos', 'private_gists',
'disk_usage', 'collaborators']
_map = {'plan': Plan}
_writeable = ['name', 'email', 'blog', 'company', 'location', 'hireable', 'bio']
def __repr__(self):
return '<current-user {0}>'.format(self.login)
class Repo(BaseResource):
_strs = [
'url', 'html_url', 'clone_url', 'git_url', 'ssh_url', 'svn_url',
'name', 'description', 'homepage', 'language', 'master_branch']
_bools = ['private', 'fork']
_ints = ['forks', 'watchers', 'size',]
_dates = ['pushed_at', 'created_at']
_map = {'owner': User}
def __repr__(self):
return '<repo {0}/{1}>'.format(self.owner.login, self.name)
# owner
|