-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoembed_client.py
145 lines (115 loc) · 4.17 KB
/
oembed_client.py
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
"""
Copyright 2012 Nabil Tewolde
This file is part of Like List.
Like List is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import oembed
from endpoints import OEMBED_ENDPOINTS
import urllib2
import urlparse
from google.appengine.api import urlfetch
import logging
from embedly.client import Embedly
from embedly.models import Url
embedly = Embedly('YOUR_EMBEDLY_API_KEY')
#http://hulu.tv/1Xw
URL_SHORTENERS = [
'http://bit.ly',
'http://goo.gl',
'http://t.co',
'http://tinyurl.com',
'http://fb.me',
'http://ow.ly',
'http://y.ahoo.it',
'http://share.yhoo.it',
'http://wp.me',
'http://flic.kr'
]
class OEmbedClient:
def __init__(self):
self.consumer = oembed.OEmbedConsumer()
for endpoint in OEMBED_ENDPOINTS:
url = endpoint['url']
if type(url) == str:
url = [url]
endpoint = oembed.OEmbedEndpoint(endpoint['endpoint_url'], url)
self.consumer.addEndpoint(endpoint)
@classmethod
def expandUrl(cls, url):
hostname = 'http://' + urlparse.urlparse(url).hostname
logging.debug("&&&&&&&&&&&& ^^^^^^^^ %s %s", hostname, url)
if hostname in URL_SHORTENERS:
try:
response = urllib2.urlopen(url) # Some shortened url
logging.debug("-------------> EXPANDED %s ", response.url)
return response.url
except Exception ,e:
logging.debug("!!!!!!!! TIMEOUT !!!!!!!! %s", e)
return url
return url
def getEmbedContent(self, url):
#"""
try:
objs = embedly.oembed(url, maxwidth=500)
return objs
except Exception, msg:
logging.debug("%s", msg)
return []
#"""
# Attempted to manualy do what embedly does by using OEmbed API that some
# services provide. Turns out to be too slow doesn't work in enough cases.
"""
if type(url) != list:
url = [url]
rpcs = []
for u in url:
rpc = urlfetch.create_rpc()
urlfetch.make_fetch_call(rpc, u)
rpcs.append( (rpc,u) )
response = []
for rpc in rpcs:
result = rpc[0].get_result()
url = rpc[1]
url = self.expandUrl(url)
try:
response.append(self.consumer.embed( url, "json"))
except (oembed.OEmbedNoEndpoint, oembed.OEmbedError) ,e:
logging.debug("%s", e)
except Exception ,e:
logging.debug("%s", e)
return response
"""
# For testing
if __name__ == "__main__":
consumer = oembed.OEmbedConsumer()
count = 0
for endpoint in OEMBED_ENDPOINTS:
url = endpoint['url']
if type(url) == str:
url = [url]
print url
endpoint = oembed.OEmbedEndpoint(endpoint['endpoint_url'], url)
consumer.addEndpoint(endpoint)
for endpoint in OEMBED_ENDPOINTS:
try:
#'http://www.flickr.com/photos/wizardbt/2584979382/'
endpoint_url = endpoint['example_url']
opts = {}
if 'url_params' in endpoint:
opts = endpoint['url_params']
response = consumer.embed( endpoint_url, "json", **opts)
print response['title']
#import pprint
#pprint.pprint(response.getData())
print '\n'
except (oembed.OEmbedNoEndpoint, oembed.OEmbedError) ,e:
print e, '\n'