19 lines
350 B
CoffeeScript
19 lines
350 B
CoffeeScript
|
# Description:
|
||
|
# posta codici di stato
|
||
|
#
|
||
|
# Commands:
|
||
|
# hubot (statuscode)
|
||
|
#
|
||
|
# Configuration:
|
||
|
# None
|
||
|
#
|
||
|
# Author:
|
||
|
# Enrico Fasoli (fazo96)
|
||
|
|
||
|
module.exports = (robot) ->
|
||
|
robot.respond /([0-9]{3})$/i, (res) ->
|
||
|
n = parseInt res.match[1]
|
||
|
if n < 100 or n > 599
|
||
|
res.match[1] = "404"
|
||
|
res.send 'http://http.cat/'+res.match[1]+'.jpg'
|