38ce26e47c884b3e08bba879ed8e8d9ec177675b
[redakcja.git] / apps / apiclient / __init__.py
1 import urllib
2
3 import json
4 import oauth2
5
6 from apiclient.settings import WL_CONSUMER_KEY, WL_CONSUMER_SECRET, WL_API_URL
7
8
9 if WL_CONSUMER_KEY and WL_CONSUMER_SECRET:
10     wl_consumer = oauth2.Consumer(WL_CONSUMER_KEY, WL_CONSUMER_SECRET)
11 else:
12     wl_consumer = None
13
14
15 class ApiError(BaseException):
16     pass
17
18
19 class NotAuthorizedError(BaseException):
20     pass
21
22
23 def api_call(user, path, data=None):
24     from .models import OAuthConnection
25     conn = OAuthConnection.get(user)
26     if not conn.access:
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)
30     if data is not None:
31         data = json.dumps(data)
32         data = urllib.urlencode({"data": data})
33         resp, content = client.request(
34                 "%s%s" % (WL_API_URL, path),
35                 method="POST",
36                 body=data)
37     else:
38         resp, content = client.request(
39                 "%s%s" % (WL_API_URL, path))
40     status = resp['status']
41
42     if status == '200':
43         return json.loads(content)
44     elif status.startswith('2'):
45         return
46     elif status == '401':
47         raise ApiError('User not authorized for publishing.')
48     else:
49         raise ApiError("WL API call error %s, path: %s" % (status, path))
50