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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
|
;; google-query.el --- Query Google from within XEmacs. -*- Emacs-Lisp -*-
;; Copyright (C) 2003, 2004 Steve Youngs
;; Author: Steve Youngs <sryoungs@bigpond.net.au>
;; Maintainer: Steve Youngs <sryoungs@bigpond.net.au>
;; Created: <2003-12-16>
;; Keywords: web google search query
;; This file is part of google-query.
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions
;; are met:
;;
;; 1. Redistributions of source code must retain the above copyright
;; notice, this list of conditions and the following disclaimer.
;;
;; 2. Redistributions in binary form must reproduce the above copyright
;; notice, this list of conditions and the following disclaimer in the
;; documentation and/or other materials provided with the distribution.
;;
;; 3. Neither the name of the author nor the names of any contributors
;; may be used to endorse or promote products derived from this
;; software without specific prior written permission.
;;
;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
;; IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
;; DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
;; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
;; BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
;; OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;; Commentary:
;;
;; I got the idea for this from Erik Arneson's `google-search.el'
;; which you can get from <http://erik.arneson.org/google-search.el>
;;
;; There are 2 entry points here, `google-query' and
;; `google-query-region'. The former will prompt for a string to
;; query Google for, and the latter will query Google for whatever
;; text is in the active region in the current buffer. Bind these
;; functions to some global keys for convenience.
;;
;; Once the query completes XEmacs pops up a buffer containing
;; the query results, sans all the cruft an advertising you get
;; from Google. Hitting button2 or RET on a URL will fire up your
;; default browser with that URL.
;;; Todo:
;;
;;
;;; ChangeLog:
;;
;; From this point on, `google-query.el' is in the XEmacs packages
;; CVS repository. For further changes please consult
;; ./xemacs-packages/net-utils/ChangeLog.
;;
;; Revision 1.4 2003-12-16 23:15:46+10 steve
;; Deactivate the region after sending the query from
;; `google-query-region' because processing the results works on
;; regions.
;;
;; Revision 1.3 2003-12-16 18:38:10+10 steve
;; Rename `google-search-version' to `google-query-version'.
;;
;; Revision 1.2 2003-12-16 18:24:50+10 steve
;; Fix a couple of byte-compiler warnings.
;;
;; Revision 1.1 2003-12-16 17:10:03+10 steve
;; Initial revision
;;
;;; Code:
(defconst google-query-version 1.9
"Version number of google-query.el.")
(defun google-query-version (&optional arg)
"Return the current version info for google-query.
With optional argument ARG, insert version info at point in the current
buffer."
(interactive "P")
(let ((ver google-query-version))
(if (interactive-p)
(if arg
(insert (format "Google Query v%.1f" ver))
(message "Google Query v%.1f" ver))
ver)))
(eval-and-compile
(autoload 'with-electric-help "ehelp")
(autoload 'browse-url "browse-url" nil t))
(defgroup google nil
"Why leave XEmacs just to search Google..."
:prefix "google-"
:group 'hypermedia)
(defcustom google-query-maxlen 100
"Maximum string length of query string.
This prevents you from accidentally sending a five megabyte query
string to Google.
You can set this reasonably high, all the same. I think the maximum
length that Google can take is 2048 characters."
:type 'number
:group 'google)
(defcustom google-query-result-count 10
"Max number of results to return from a `google-query'."
:type 'number
:group 'google)
(defcustom google-query-mirror "www.google.com"
"*Your favourite Google mirror.
Omit the \"http://\" part, all we want here is a domain."
:type 'string
:group 'google)
(defcustom google-query-debug nil
"When non-nil keep the process buffer around."
:type 'boolean
:group 'google)
(defun google-query-commentary ()
"*Display the commentary section of google-query.el."
(interactive)
(with-electric-help
'(lambda ()
(insert
(with-temp-buffer
(erase-buffer)
(insert (lm-commentary (locate-library "google-query.el")))
(goto-char (point-min))
(while (re-search-forward "^;+ ?" nil t)
(replace-match "" nil nil))
(buffer-string (current-buffer)))))
"*Google-query Commentary*"))
(defun google-query-copyright ()
"*Display the copyright notice for google-query."
(interactive)
(with-electric-help
'(lambda ()
(insert
(with-temp-buffer
(erase-buffer)
(insert-file-contents (locate-library "google-query.el"))
(goto-char (point-min))
(re-search-forward ";;; Commentary" nil t)
(beginning-of-line)
(narrow-to-region (point-min) (point))
(while (re-search-backward "^;+ ?" nil t)
(replace-match "" nil nil))
(buffer-string (current-buffer)))))
"*Google-query Copyright Notice*"))
;; Ripped from thingatpt.el
(defconst google-query-url-regexp
(concat
"\\(https?://\\|ftp://\\|gopher://\\|telnet://\\|wais://\\|file:/\\|s?news:\\|mailto:\\)"
"[^]\t\n \"'()<>[^`{}]*[^]\t\n \"'()<>[^`{}.,;]+")
"A regular expression matching URLs.")
(defun google-query-url-at-point ()
"Browse to a URL from the google-query buffer."
(interactive)
(when (extentp (extent-at (point)))
(browse-url (extent-string (extent-at (point))))))
(defun google-query-url-at-mouse (event)
"Browse to a URL at EVENT via the mouse from the google-query buffer."
(interactive "e")
(when (extentp (extent-at-event event))
(browse-url (extent-string (extent-at-event event)))))
(defun google-query-kill-buffer ()
(interactive)
(kill-buffer nil))
(defconst google-query-mode-map
(let* ((map (make-sparse-keymap 'google-query-mode-map)))
(define-key map [space] 'scroll-up)
(define-key map [delete] 'scroll-down)
(define-key map [q] 'bury-buffer)
(define-key map [Q] 'google-query-kill-buffer)
map)
"A keymap for the google query buffer.")
(defconst google-query-ext-map
(let* ((map (make-sparse-keymap 'google-query-ext-map)))
(define-key map [button2] 'google-query-url-at-mouse)
(define-key map [return] 'google-query-url-at-point)
map)
"A keymap for the extents in google query results buffer.")
;; Unashamedly stolen from Bill Perry's URL package.
(defconst google-query-unreserved-chars
'(?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z
?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z
?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
?- ?_ ?. ?! ?~ ?* ?' ?\( ?\))
"A list of characters that are _NOT_ reserved in the URL spec.
This is taken from RFC 2396.")
;; Unashamedly stolen from Bill Perry's URL package.
(defun google-query-hexify-string (str)
"Escape characters STR so STR can be used in a URL."
(mapconcat
(lambda (char)
;; Fixme: use a char table instead.
(if (not (memq char google-query-unreserved-chars))
(if (< char 16)
(format "%%0%X" char)
(if (> char 255)
(error "Hexifying multibyte character %s" str))
(format "%%%X" char))
(char-to-string char)))
str ""))
(defun google-query-make-url-extents ()
"Create extent objects for all the URLs in the buffer."
(goto-char (point-min))
(save-excursion
(while (re-search-forward google-query-url-regexp nil t)
(let ((extent (make-extent (match-beginning 0) (match-end 0)))
(echo "RET or Button2 to visit this URL."))
(set-extent-property extent 'face 'bold)
(set-extent-property extent 'mouse-face 'highlight)
(set-extent-property extent 'keymap google-query-ext-map)
(set-extent-property extent 'help-echo echo)
(set-extent-property extent 'balloon-help echo)
(set-extent-property extent 'duplicable t)))))
(defun google-query-mode ()
"Major mode for google-query results buffer.
\\{google-query-mode-map}"
(interactive)
(kill-all-local-variables)
(use-local-map google-query-mode-map)
(setq mode-name "Google")
(setq major-mode 'google-query-mode))
(defun google-query-process-results (results)
"Process the RESULTS of `google-query'."
(let ((buf (get-buffer-create "*google-query-results*"))
matches
titles)
(switch-to-buffer buf)
(google-query-mode)
(erase-buffer)
(insert results)
;; Collect the stuff we want.
(goto-char (point-max))
(while (re-search-backward "<a href=\"\\(.*\\)\" class=l>\\(.*\\)</a>" nil t)
(setq matches (push (match-string 1) matches)
titles (push (match-string 2) titles)))
;; Replace the contents of the buffer with our matches.
(erase-buffer)
(insert "Google Query Results\n====================\n\n")
(while matches
(insert (car titles) "\n" (car matches))
(insert "\n\n")
(setq titles (cdr titles)
matches (cdr matches)))
(goto-char (point-min))
(center-line 2)
(mapcar
#'(lambda (x) (save-excursion (eval x)))
'((replace-string "<b>" " ")
(replace-string "</b>" "")
(replace-regexp "<.*>" " ")
(replace-string ">" " ")))
(save-excursion
(fill-region (point) (point-max)))
(google-query-make-url-extents)))
;;;###autoload
(defun google-query (string)
"Query google for STRING."
(interactive "sQuery Google for: ")
(let* ((host google-query-mirror)
(user-agent (concat (if (featurep 'sxemacs)
"SXEmacs-"
"XEmacs-")
emacs-program-version))
(str (google-query-hexify-string
(truncate-string-to-width string google-query-maxlen)))
(query (concat "search?&q=" str
"&num=" (format "%d" google-query-result-count)))
(coding-system-for-read 'binary)
(coding-system-for-write 'binary)
(google (open-network-stream
"google-query"
" *google-query-proc*"
host
80))
(pbuf (process-buffer google)))
(process-send-string
google
(concat "GET /" query " HTTP/1.1\r\n"
"MIME-Version: 1.0\r\n"
"Connection: close\r\n"
"Host: " host "\r\n"
"Accept: */*\r\n"
"User-Agent: " user-agent "\r\n\r\n"))
(message "Talking to Google, please wait...")
(while (eq (process-status google) 'open)
(sleep-for 0.05))
(google-query-process-results (buffer-string pbuf))
(unless google-query-debug
(kill-buffer pbuf))))
;;;###autoload
(defun google-query-region (beg end)
"Query google for the string BEG END."
(interactive "r")
(let ((str (buffer-substring-no-properties beg end)))
(zmacs-deactivate-region)
(google-query str)))
(provide 'google-query)
;;; google-query.el ends here
|