This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathrdio.coffee
154 lines (128 loc) · 3.89 KB
/
rdio.coffee
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
146
147
148
149
150
151
152
153
154
# Description
# Rdio API
#
# Configuration:
# HUBOT_RDIO_KEY
# HUBOT_RDIO_SECRET
#
# Commands:
# <Rdio link> - Show information about the artist/album/track
#
# Author:
# smgt
qs = require "querystring"
url = require "url"
crypto = require "crypto"
http = require "http"
module.exports = (robot) ->
robot.hear /http:\/\/rd\.io\/x\/[a-zA-Z0-9\-]+\//i, (msg) ->
rdio.request "getObjectFromUrl", {"url": msg.match[0]}, (err, data) ->
if err
msg.send "Rdio response: #{err}"
else
switch data.type
when "t"
track = "#{data.artist} - #{data.name}"
album = "(#{data.album})"
msg.send "Track: #{track} #{album}"
when "r"
msg.send "Artist: #{data.name}"
when "a"
msg.send "Album: #{data.artist} - #{data.name}"
rdio =
signRequest: (consumerKey, consumerSecret, urlString, params) ->
params = params || []
consumer = [consumerKey, consumerSecret]
method = "POST"
timestamp = Math.round(new Date().getTime() / 1000).toString()
nonce = Math.round(Math.random() * 1000000).toString()
parsedUrl = url.parse(urlString, true)
if !Array.isArray(params)
paramsArray = []
for key of params
paramsArray.push [key, params[key]]
params = paramsArray
params.push ["oauth_version", "1.0"]
params.push ["oauth_timestamp", timestamp]
params.push ["oauth_nonce", nonce]
params.push ["oauth_signature_method", "HMAC-SHA1"]
params.push ["oauth_consumer_key", consumer[0]]
if parsedUrl.query
for key in parsedUrl.query
params.push [key, parsedUrl.query[key]]
hmacKey = consumer[1] + "&"
params.sort()
paramsString = params.map (param) ->
return qs.escape(param[0]) + "=" + qs.escape(param[1])
.join("&")
urlBase = url.format
protocol: parsedUrl.protocol || "http:"
hostname: parsedUrl.hostname.toLowerCase()
pathname: parsedUrl.pathname
signatureBase = [
method
qs.escape(urlBase)
qs.escape(paramsString)
].join "&"
hmac = crypto.createHmac "sha1", hmacKey
hmac.update signatureBase
oauthSignature = hmac.digest "base64"
headerParams = []
headerParams.push ["oauth_signature", oauthSignature]
oauthParams = [
"oauth_version"
"oauth_timestamp"
"oauth_nonce"
"oauth_signature_method"
"oauth_signature"
"oauth_consumer_key"
"oauth_token"
]
params.forEach (param) ->
if (oauthParams.indexOf(param[0]) != -1)
headerParams.push param
header = "OAuth " + headerParams.map (param) ->
return param[0] + '="' + param[1] + '"';
.join ", "
return header
request: (method, params, callback) ->
rdioBaseUrl = "http://api.rdio.com/1/"
copy = {}
if typeof params == "function"
callback = params
params = null
if params
for param of params
copy[param] = params[param]
copy.method = method
auth = this.signRequest process.env.HUBOT_RDIO_KEY, process.env.HUBOT_RDIO_SECRET, rdioBaseUrl, copy
parsedUrl = url.parse rdioBaseUrl
content = qs.stringify copy
req = http.request
method: "POST"
host: parsedUrl.host
port: parsedUrl.port || "80"
path: parsedUrl.pathname
headers:
"Authorization": auth
"Content-Type": "application/x-www-form-urlencoded"
"Content-Length": content.length.toString()
(res) ->
body = ""
res.setEncoding "utf8"
res.on "data", (chunk) ->
body += chunk
res.on "end", ->
data = {}
try
data = JSON.parse body
catch error
data.status = 'error'
data.message = body
if data.status == "error"
callback data.message
else
callback null, data.result
req.on "error", (err) ->
callback err
req.end content