forked from facebookarchive/python-instagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.py
More file actions
118 lines (88 loc) · 3.52 KB
/
models.py
File metadata and controls
118 lines (88 loc) · 3.52 KB
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
from helper import timestamp_to_datetime
class ApiModel(object):
@classmethod
def object_from_dictionary(cls, entry):
# make dict keys all strings
entry_str_dict = dict([(str(key), value) for key,value in entry.items()])
return cls(**entry_str_dict)
class Image(ApiModel):
def __init__(self, url, width, height):
self.url = url
self.height = height
self.width = width
class Media(ApiModel):
def __init__(self, id=None, **kwargs):
self.id = id
for key,value in kwargs.iteritems():
setattr(self, key, value)
def get_standard_resolution_url(self):
return self.images['standard_resolution'].url
@classmethod
def object_from_dictionary(cls, entry):
new_media = Media(id=entry['id'])
new_media.user = User.object_from_dictionary(entry['user'])
new_media.images = {}
for version,version_info in entry['images'].iteritems():
new_media.images[version] = Image(**version_info)
if 'user_has_liked' in entry:
new_media.user_has_liked = entry['user_has_liked']
new_media.like_count = entry['likes']['count']
new_media.comment_count = entry['comments']['count']
new_media.comments = []
for comment in entry['comments']['data']:
new_media.comments.append(Comment.object_from_dictionary(comment))
new_media.created_time = timestamp_to_datetime(entry['created_time'])
if entry['location']:
new_media.location = Location.object_from_dictionary(entry['location'])
new_media.link = entry['link']
return new_media
class Tag(ApiModel):
def __init__(self, name, **kwargs):
self.name = name
for key,value in kwargs.iteritems():
setattr(self, key, value)
def __str__(self):
return "Tag %s" % self.name
class Comment(ApiModel):
def __init__(self, *args, **kwargs):
for key,value in kwargs.iteritems():
setattr(self, key, value)
@classmethod
def object_from_dictionary(cls, entry):
user = User.object_from_dictionary(entry['from'])
text = entry['text']
created_at = timestamp_to_datetime(entry['created_time'])
id = entry['id']
return Comment(id=id, user=user, text=text, created_at=created_at)
def __unicode__(self):
print "%s said \"%s\"" % (self.user.username, self.message)
class Point(ApiModel):
def __init__(self, latitude, longitude):
self.latitude = latitude
self.longitude = longitude
class Location(ApiModel):
def __init__(self, id, *args, **kwargs):
self.id = id
for key,value in kwargs.iteritems():
setattr(self, key, value)
@classmethod
def object_from_dictionary(cls, entry):
point = None
if entry['latitude']:
point = Point(entry['latitude'],
entry['longitude'])
location = cls(entry['id'],
point,
name=entry['name'])
return location
class User(ApiModel):
def __init__(self, id, *args, **kwargs):
self.id = id
for key,value in kwargs.iteritems():
setattr(self, key, value)
def __str__(self):
return "User %s" % self.username
class Relationship(ApiModel):
def __init__(self, incoming_status="none", outgoing_status="none"):
self.incoming_status = incoming_status
self.outgoing_status = outgoing_status