Skip to content

Adds image me plugin #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
43 changes: 43 additions & 0 deletions plugins/image_me.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
require 'net/http'
require 'json'
require 'cgi'

class ImageMe

include Cinch::Plugin

match /(image|img)( me)? (.*)/i, :method => :image_me

match /animate( me)? (.*)/i, :method => :animate_me

match /(?:mo?u)?sta(?:s|c)he?(?: me)? (.*)/i, :method => :stash_me

def image_me(m, *args)
m.reply get_link(args[2])
end

def animate_me(m, *args)
m.reply get_link(args[1], true)
end

def stash_me(m, query)
source = /^https?:\/\//i.match(query) ? query : get_link(query)
m.reply "http://mustachify.me/#{rand(3) + 1}?src=#{CGI::escape(source)}"
end

def get_link(query, animated=false)
q = {:v => '1.0', :rsz => '8', :q => query, :safe => 'active'}
q[:as_filetype] = 'gif' if animated
url = 'http://ajax.googleapis.com/ajax/services/search/images?'
params = q.collect { |k,v| "#{k}=#{CGI::escape(v.to_s)}" }.join('&')
http = Net::HTTP.new('ajax.googleapis.com', 80)
request = Net::HTTP::Get.new("/ajax/services/search/images?#{params}")
response = JSON.parse http.request(request).body
if response["responseData"] and response["responseData"]["results"]
response["responseData"]["results"].sample["unescapedUrl"]
else
"No image found."
end
end

end