-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSpinPapiClient.py
executable file
·93 lines (74 loc) · 3.73 KB
/
SpinPapiClient.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
# -*- coding: utf-8 -*-
'''
downloaded from www.bitbucket.org/spinitron on Mon Jun 29 21:13:58 2015
Python SpinPapi client
File: SpinPapiClient.py
Author Tom Worster
Copyright (c) 2012 Spinitron, LLC. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the Spinitron, LLC. nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'''
import hmac, hashlib, urllib, base64, sys
from time import gmtime, strftime
from operator import itemgetter
class SpinPapiClient:
'''A SpinPapi client class.
{@see http://spinitron.com/user-guide/pdf/SpinPapi-v2.pdf}
NOTE: all SpinPapi client applications must cache result data. This
class does not provide caching.
'''
def __init__(self, userid, secret, station=''):
'''Client constructor.
:param string userid: Authentication user ID issued by Spinitron
:param string secret: Authentication secret issued by Spinitron
:param string station: Station ID
'''
self.params = {}
self.params['papiversion'] = '2'
self.host = 'spinitron.com'
self.url = '/public/spinpapi.php'
self.params['papiuser'] = userid
self.secret = secret
self.params['station'] = station
def query(self, params):
'''Perform an uncached SpinPapi query.
:param dict params: SpinPapi query parameters. At least method
must be present in the dict.
:return string: A complete signed query URL.
'''
# Add requested params to object default params
all_params = self.params
for key, val in params.iteritems():
all_params[key] = val
# Add current GMT timestamp to params
all_params['timestamp'] = strftime("%Y-%m-%dT%H:%M:%SZ", gmtime())
# Sort params alphabetically by dict key
all_params = sorted(all_params.items(), key=itemgetter(0))
# Build the urlencoded query in a list and join it with '&' chars
the_query = []
for key, val in all_params:
the_query.append(urllib.quote(key) + '=' + urllib.quote(val))
the_query = '&'.join(the_query)
# Construct the query's HMAC signature.
signature = self.host + '\n' + self.url + '\n' + the_query
signature = hmac.new(self.secret, signature, hashlib.sha256)
signature = signature.digest()
signature = base64.b64encode(signature)
signature = urllib.quote(signature, '')
return ('http://' + self.host + self.url
+ '?' + the_query + '&signature=' + signature)