-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathskk-search-web.el
185 lines (150 loc) · 6.93 KB
/
skk-search-web.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
;;; skk-search-web.el --- Google $B%5%8%'%9%H$J$I$rMxMQ$7$?$+$J4A;zJQ49(B -*- coding: iso-2022-jp -*-
;; Copyright (C) 2010, 2011 HAMANO Kiyoto <[email protected]>
;; Copyright (C) 2011 Tsuyoshi Kitamoto <[email protected]>
;; Author: HAMANO Kiyoto <[email protected]>
;; Maintainer: Tsuyoshi Kitamoto <[email protected]>
;; Keywords: japanese, mule, input method
;; This file is part of Daredevil SKK.
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version.
;; This program is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE. See the GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; $B;HMQJ}K!$r#2$D@bL@$7$^$9!#9%$_$NJ}$r;HMQ$7$F$/$@$5$$!#(B
;; (1) $B$+$J4A;zJQ49$N8uJd$K(B Google $B%5%8%'%9%H$rMxMQ$9$k(B
;; skk-search-prog-list $B$N:G8eJ}$K(B skk-search-web() $B$rCV$/$3$H$K$h$j!"(B
;; $B8D?M<-=q$d6&M-<-=q$KEPO?$5$l$F$$$J$$8+=P$78l$r(B Google $B%5%8%'%9%H(B
;; $B$7$^$9!#(B
;; (add-to-list 'skk-search-prog-list
;; '(skk-search-web 'skk-google-suggest)
;; t)
;; (2) $B<-=qEPO?%b!<%I$X$NFMF~;~$N=i4|CM$K(B Google $B%5%8%'%9%H$rMxMQ$9$k(B
;; (setq skk-read-from-minibuffer-function
;; (lambda ()
;; (car (skk-google-suggest skk-henkan-key))))
;; $B>e5-Nc$G<($7$?4X?t(B skk-google-suggest $B$O(B skk-google-cgi-api-for-japanese-input
;; $B$KCV$-49$(2DG=$G$9!#(B
;; (add-to-list 'skk-search-prog-list
;; '(skk-search-web 'skk-google-cgi-api-for-japanese-input)
;; t)
;; (setq skk-read-from-minibuffer-function
;; (lambda ()
;; (car (skk-google-cgi-api-for-japanese-input skk-henkan-key))))
;; SKK Dynamic Completion $B$HJ;MQ$9$k$3$H$b2DG=$G$9!#(B
;; (add-to-list 'skk-completion-prog-list '(skk-comp-google) t)
;;; Test:
;; (let ((skk-henkan-key "emacs"))
;; (skk-search-web 'skk-google-suggest))
;; => ("emacs" "emacs $B%3%^%s%I(B" "emacs windows" "emacs $B;H$$J}(B" "emacs $BJ8;z%3!<%I(B" ...)
;;; $B<U<-(B
;; $B$b$H$b$H$N%*%j%8%J%k$O(B HAMANO Kiyoto <[email protected]> $B$5$s$,(B
;; $B=q$$$?5-;v(B http://d.hatena.ne.jp/khiker/20100128/google_suggest $B$G$9!#(B
;; $B2~JQ!"8x3+$r2w$/>5Bz$7$F$$$?$@$$$?(B HAMANO Kiyoto $B$5$s$K46<U$7$^$9!#(B
;;; Code:
(require 'url-http)
(require 'json)
(eval-when-compile
(defvar skk-henkan-key)
(defvar skk-comp-key)
(defvar skk-comp-first))
(defun skk-url-retrieve (url coding-system)
"URL $B$r<hF@$9$k!#La$jCM$O(B decode-coding-string $B$G$"$k(B."
(let (buf p)
(unwind-protect
(progn
(setq buf (let (
;; (url-request-extra-headers '(("" . "")
;; ("" . "")))
(url-request-method "GET")
(url-max-redirextions 0))
(url-retrieve-synchronously url))) ; return BUFFER contain data
(when (setq p (url-http-symbol-value-in-buffer
'url-http-end-of-headers buf))
(with-current-buffer buf
(decode-coding-string (buffer-substring (1+ p)
(point-max))
coding-system))))
(when buf
(kill-buffer buf)))))
(defun skk-google-cgi-api-for-japanese-input (word)
"Google CGI API for Japanese Input $B$rMxMQ$7$?$+$J4A;zJQ49(B.
http://www.google.co.jp/ime/cgiapi.html
$BLa$jCM$O!"8uJd72$N%j%9%H(B."
(let* ((jsonp (skk-url-retrieve
(concat "http://www.google.com/transliterate"
"?langpair=ja-Hira|ja"
"&text="
(url-hexify-string (encode-coding-string (concat word ",")
'utf-8)))
'utf-8))
(json (json-read-from-string jsonp)) ; [["$B$_$@$7$4(B" ["$B8uJd(Ba" "$B8uJd(Bb" "$B8uJd(Bc"]]]
(ary (aref (aref json 0) 1)) ; ["$B8uJd(Ba" "$B8uJd(Bb" "$B8uJd(Bc"]
list)
(dotimes (i (length ary))
(setq list (cons (aref ary i)
list)))
(nreverse list)))
(defun skk-google-suggest (word)
"Google $B%5%8%'%9%H$rMxMQ$7$?$+$J4A;zJQ49(B."
;; http://labs.google.com/intl/ja/suggestfaq.html (404 not found)
(with-temp-buffer
(insert (skk-url-retrieve
(concat "http://clients1.google.co.jp/complete/search"
"?hl=ja"
"&cp=2"
"&output=toolbar" ; xml $B%l%9%]%s%9(B
"&q=" (url-hexify-string (encode-coding-string word 'utf-8)))
'sjis))
(goto-char (point-min))
(let (list)
(while (re-search-forward "suggestion data=\"\\([^>]*\\)\"" nil t)
(setq list (cons (buffer-substring (match-beginning 1)
(match-end 1))
list)))
(nreverse list))))
(defun skk-wikipedia-suggest (word)
(let* ((jsonp (skk-url-retrieve
(concat "http://ja.wikipedia.org/w/api.php"
"?action=opensearch"
"&format=json"
"&search=" (url-hexify-string
(encode-coding-string word 'utf-8)))
'utf-8))
(json (json-read-from-string jsonp))
;; ["$B$_$@$7$4(B" ["$B8uJd(Ba" "$B8uJd(Bb" "$B8uJd(Bc"]]
;; $B"(!V$_$@$7$4!W$,4A;z$G$"$l$PMM!9$J8uJd$,F@$i$l$k$,!"(B
;; $BJ?2>L>$@$H$"$^$j%R%C%H$7$J$$!#$=$N$?$a!"$+$J4A;z(B
;; $BJQ49$NMQES$K$OIT8~$-$+$b!#(B
(ary (aref json 1))
list)
(dotimes (i (length ary))
(setq list (cons (aref ary i)
list)))
(nreverse list)))
(defun skk-search-web (function)
(funcall function skk-henkan-key))
;; skk-comp, skk-dcomp,
(defvar skk-comp-google-candidates nil)
(defun skk-comp-google ()
;; Howto use
;; (add-to-list 'skk-completion-prog-list '(skk-comp-google) t)
(unless (string= skk-comp-key "")
(when skk-comp-first
(setq skk-comp-google-candidates (skk-comp-google-make-candidates)))
(prog1
(car skk-comp-google-candidates)
(setq skk-comp-google-candidates (cdr skk-comp-google-candidates)))))
(defun skk-comp-google-make-candidates ()
(let ((key (car (split-string skk-comp-key "*" t))))
(skk-google-suggest key)))
(provide 'skk-search-web)
;; Local Variables:
;; indent-tabs-mode: nil
;; End:
;;; skk-search-web.el ends here