6 from apiclient.settings import WL_CONSUMER_KEY, WL_CONSUMER_SECRET, WL_API_URL
9 if WL_CONSUMER_KEY and WL_CONSUMER_SECRET:
10 wl_consumer = oauth2.Consumer(WL_CONSUMER_KEY, WL_CONSUMER_SECRET)
15 class ApiError(BaseException):
19 class NotAuthorizedError(BaseException):
23 def api_call(user, path, data=None):
24 from .models import OAuthConnection
25 conn = OAuthConnection.get(user)
27 raise NotAuthorizedError("No WL authorization for user %s." % user)
28 token = oauth2.Token(conn.token, conn.token_secret)
29 client = oauth2.Client(wl_consumer, token)
31 data = json.dumps(data)
32 data = urllib.urlencode({"data": data})
33 resp, content = client.request(
34 "%s%s" % (WL_API_URL, path),
38 resp, content = client.request(
39 "%s%s" % (WL_API_URL, path))
40 status = resp['status']
43 return json.loads(content)
44 elif status.startswith('2'):
47 raise ApiError('User not authorized for publishing.')
49 raise ApiError("WL API call error %s, path: %s" % (status, path))