Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Added script for showing destination of goo.gl links #1125

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions src/scripts/goo_gl.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Description:
# Quick description for goo.gl URLs
#
# Dependencies:
# "googleapis": "0.4.3"
#
# Configuration:
# None
#
# Commands:
# Shows the destination of any mentioned goo.gl URLs.
#
# Author:
# monokrome

googleapis = require 'googleapis'

module.exports = (robot) ->
shortener = googleapis.discover 'urlshortener', 'v1'

startListening = (err, client) ->
robot.hear /goo\.gl\/[\w\d]+/, (msg) ->
url = msg.match[0]

request = client.urlshortener.url.get
shortUrl: 'http://' + url

request.execute (err, response) ->
unless err
msg.send 'Shortened URL (' + url + ') is ' + response.longUrl

shortener.execute startListening