Last active
May 18, 2021 15:07
-
-
Save cstewart90/0da67ee24b88d4c87d15934691e5cd19 to your computer and use it in GitHub Desktop.
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
# frozen_string_literal: true | |
# Copyright (c) 2016 Christopher Stewart | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# The above copyright notice and this permission notice shall be included in all | |
# copies or substantial portions of the Software. | |
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
# SOFTWARE. | |
require 'cgi' | |
require 'open-uri' | |
require 'json' | |
def weechat_init | |
Weechat.register('duckduckgo', 'kanzo', '0.1', 'MIT', | |
'Adds !ddg command.', '', '') | |
Weechat.hook_print('', 'notify_message', '!ddg', 1, 'hook_print_cb', '') | |
Weechat.hook_print('', 'notify_none', '!ddg', 1, 'hook_print_cb', '') | |
Weechat::WEECHAT_RC_OK | |
end | |
def hook_print_cb(_data, buffer, _time, _tags, _displayed, _highlight, _prefix, message) | |
return Weechat::WEECHAT_RC_OK unless message.downcase.start_with?('!ddg ') | |
encoded = CGI.escape(message[5..]) | |
url = ddg(encoded) | |
Weechat.command(buffer, url) | |
end | |
def ddg(query) | |
default_url = "https://duckduckgo.com/?q=#{query}" | |
r = open( | |
"https://api.duckduckgo.com/?q=#{query}&format=json&pretty=0&no_redirect=1" | |
).read | |
data = JSON.parse(r) | |
data['Redirect'].to_s.empty? ? default_url : data['Redirect'] | |
rescue SocketError, OpenURI::HTTPError | |
default_url | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment