* riece-google.el: New add-on.
[riece] / lisp / riece-google.el
1 ;;; riece-google.el --- Interface to Google API
2 ;; Copyright (C) 2005 OHASHI Akira
3
4 ;; Author: OHASHI Akira <bg66@koka-in.org>
5 ;;         SASADA Koichi <ko1 at atdot.net>
6 ;; Keywords: IRC, riece
7
8 ;; This file is part of Riece.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; This add-on searches keywords by Google.
28
29 ;; Ruby code was stolen (and modified) from nadoka.
30
31 ;; To use, add the following line to your ~/.riece/init.el:
32 ;; (add-to-list 'riece-addons 'riece-google)
33
34 ;;; Code:
35
36 (require 'riece-message)
37
38 (defgroup riece-google nil
39   "Interface to Google API."
40   :prefix "riece-"
41   :group 'riece)
42
43 (defcustom riece-google-ruby-command "ruby"
44   "Command name for Ruby interpreter."
45   :type 'string
46   :group 'riece-google)
47
48 (defcustom riece-google-program
49   '("\
50 # Copyright (c) 2004 SASADA Koichi <ko1 at atdot.net>
51 #
52 # This program is free software with ABSOLUTELY NO WARRANTY.
53 # You can re-distribute and/or modify this program under
54 # the same terms of the Ruby's lisence.
55
56 require 'soap/wsdlDriver'
57 require 'iconv'
58 require 'kconv'
59 require 'cgi'
60
61 keywords            = '" keywords "'
62 max_results         = " max-results "
63 license_key         = '" license-key "'
64 default_lang        = '" lang "'
65 google_wsdl         = 'http://api.google.com/GoogleSearch.wsdl'
66 google              = SOAP::WSDLDriverFactory.new(google_wsdl).create_driver
67
68 def erace_tag str
69   CGI.unescapeHTML(str.gsub(/\\<.+?\\>/, ''))
70 end
71
72 def lang_check lang
73   if lang.empty? || /^lang_/ =~ lang
74     lang
75   else
76     'lang_' + lang
77   end
78 end
79
80 def show_char_code_and_erace_tag str
81   case $KCODE
82   when 'EUC', 'SJIS'
83     CGI.unescapeHTML(str.gsub(/\\<.+?\\>/, '')).tojis
84   when 'NONE', 'UTF-8'
85     begin
86       str = Iconv.conv(\"EUC-JP\", \"UTF-8\", str)
87       CGI.unescapeHTML(str.gsub(/\\<.+?\\>/, '')).tojis
88     rescue => e
89       \"(char code problem: #{e.class}[#{e.message.dump}])\"
90     end
91   else
92     str
93   end
94 end
95
96 def search_char_code str
97   case $KCODE
98   when 'EUC', 'SJIS'
99     str.toeuc
100   when 'NONE'
101     begin
102       Iconv.conv(\"UTF-8\", \"EUC-JP\", str.toeuc)
103     rescue => e
104       \"(char code problem: #{e.class})\"
105     end
106   when 'UTF-8'
107     str
108   else
109     raise
110   end
111 end
112
113 begin
114   lang = lang_check(default_lang)
115   word = search_char_code(keywords)
116   result = google.doGoogleSearch(
117     license_key, word, 0, max_results, false, \"\",
118     false, lang, 'utf-8', 'utf-8'
119   )
120
121   count = result.estimatedTotalResultsCount
122   if count > 0
123     word = show_char_code_and_erace_tag(keywords)
124     count = count.to_s.gsub(/(\\d)(?=\\d{3}+$)/, '\\\\1,')
125     time = result.searchTime.to_s
126     print \"Search results for #{word} (Hits: #{count}: Time: #{time}):\\n\"
127
128     result.resultElements.each_with_index{|e, i|
129       title = show_char_code_and_erace_tag(e.title)
130       url   = e.URL
131       print \"#{title} - #{url}\\n\"
132     }
133   else
134     print \"no match\\n\"
135   end
136
137 rescue Exception => e
138   print \"#{e.class}(#{e.message})\"
139 end
140 ")
141   "Ruby program for searching by Google."
142   :type 'list
143   :group 'riece-google)
144
145 (defcustom riece-google-license-key nil
146   "*License key for Google API."
147   :type 'string
148   :group 'riece-google)
149
150 (defcustom riece-google-default-lang "lang_ja"
151   "*Default language for search keywords."
152   :type 'string
153   :group 'riece-google)
154
155 (defconst riece-google-regexp
156   "^go\\(o+\\)gle\\(:\\([a-z]+\\)\\)?>\\s-*\\(.*\\)")
157
158 (defvar riece-google-enabled nil)
159
160 (defconst riece-google-description
161   "Search keywords by Google.")
162
163 (defvar riece-google-target nil)
164
165 (defun riece-google-display-message-function (message)
166   (when (and riece-google-enabled
167              (stringp riece-google-license-key)
168              (string-match riece-google-regexp (riece-message-text message)))
169     (let ((keywords (match-string 4 (riece-message-text message)))
170           (max-results (number-to-string
171                         (length
172                          (match-string 1 (riece-message-text message)))))
173           (lang (or (match-string 3 (riece-message-text message))
174                     riece-google-default-lang))
175           (process-connection-type nil)
176           selective-display
177           (coding-system-for-read 'binary)
178           (coding-system-for-write 'binary)
179           (process (start-process "Google" (generate-new-buffer " *Google*")
180                                   riece-google-ruby-command)))
181       (setq riece-google-target (riece-message-target message))
182       (process-send-string process
183                            (apply #'concat
184                                   (riece-google-substitute-variables
185                                    (riece-google-substitute-variables
186                                     (riece-google-substitute-variables
187                                      (riece-google-substitute-variables
188                                       riece-google-program
189                                       'keywords keywords)
190                                      'max-results max-results)
191                                      'license-key riece-google-license-key)
192                                    'lang lang)))
193       (process-send-eof process)
194       (with-current-buffer (process-buffer process)
195         (set-buffer-multibyte t)
196         (erase-buffer)
197       (set-buffer-modified-p nil))
198       (set-process-filter process #'riece-google-filter)
199       (set-process-sentinel process #'riece-google-sentinel))))
200
201 (defun riece-google-filter (process output)
202   (when (buffer-live-p (process-buffer process))
203     (with-current-buffer (process-buffer process)
204       (goto-char (point-max))
205       (insert output)
206       (goto-char (point-min))
207       (while (progn (end-of-line) (and (not (eobp)) (eq (char-after) ?\n)))
208         (if (eq (char-after (1- (point))) ?\r) ; cut off preceding LF
209             (delete-region (1- (point)) (point)))
210         (riece-google-send-string riece-google-target
211                                   (buffer-substring (point-min) (point)))
212         (delete-region (point-min) (progn (beginning-of-line 2) (point)))))))
213
214 (defun riece-google-sentinel (process string)
215   (delete-process process))
216
217 (defun riece-google-send-string (target message)
218   (riece-send-string
219    (format "NOTICE %s :%s\r\n" (riece-identity-prefix target) message))
220   (riece-display-message
221    (riece-make-message (riece-current-nickname) target message 'notice)))
222
223 (defun riece-google-substitute-variables (program variable value)
224   (setq program (copy-sequence program))
225   (let ((pointer program))
226     (while pointer
227       (setq pointer (memq variable program))
228       (if pointer
229           (setcar pointer value)))
230     program))
231
232 (defun riece-google-insinuate ()
233   (add-hook 'riece-after-display-message-functions
234             'riece-google-display-message-function))
235
236 (defun riece-google-enable ()
237   (setq riece-google-enabled t))
238
239 (defun riece-google-disable ()
240   (setq riece-google-enabled nil))
241
242 (provide 'riece-google)
243
244 ;;; riece-google.el ends here