Created
February 25, 2012 16:34
-
-
Save Gohan/1909392 to your computer and use it in GitHub Desktop.
hubot_script douban movie
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# hello hubot, another example | |
showResult = (msg, entries, images) -> | |
if entries.length == 0 | |
return | |
msg.send entries.shift() | |
msg.send images.shift() | |
setTimeout ( -> | |
showResult msg, entries, images | |
), 500 | |
module.exports = (robot) -> | |
robot.respond /(查)?(豆瓣电影) (.*)/i, (msg) -> | |
msg | |
.http('http://api.douban.com/movie/subjects?alt=json&q=' + msg.match[3]) | |
.get() (err, res, body) -> | |
if err | |
msg.send '错误' + err | |
return 0 | |
@output = [] | |
@output.push '搜索关键字为' + msg.match[3] + '的电影' | |
result = JSON.parse(body) | |
total_count = result['opensearch:totalResults']['$t'] | |
item_count = result.entry.length | |
@output.push '找到' + total_count + '结果, ' + '显示' + item_count + '个.' | |
msg.send @output.join('\n') | |
@entries = [] | |
@images = [] | |
@count = 1 | |
for movie in result.entry | |
@output = [] | |
@output.push ''+@count+'. ' + movie.title['$t'] | |
@output.push ' Link:' + movie.link[1]['@href'] | |
@output.push ' Image:' | |
@entries.push @output.join('\n') | |
@images.push movie.link[2]['@href'] | |
@count=@count+1 | |
showResult msg, @entries, @images |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment