1 ;;; gravatar.el --- Get Gravatars
3 ;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
5 ;; Author: Julien Danjou <julien@danjou.info>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs 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 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs 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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 (defgroup gravatar nil
35 (defcustom gravatar-automatic-caching t
36 "Whether cache retrieved gravatar."
39 (defcustom gravatar-cache-ttl
(days-to-time 30)
40 "Time to live for gravatar cache entries."
43 (defcustom gravatar-rating
"g"
44 "Default rating for gravatar."
47 (defcustom gravatar-size
32
48 "Default size in pixels for gravatars."
51 (defconst gravatar-base-url
52 "http://www.gravatar.com/avatar"
53 "Base URL for getting gravatars.")
55 (defun gravatar-hash (mail-address)
56 "Create an hash from MAIL-ADDRESS."
57 (md5 (downcase mail-address
)))
59 (defun gravatar-build-url (mail-address)
60 "Return an URL to retrieve MAIL-ADDRESS gravatar."
61 (format "%s/%s?d=404&r=%s&s=%d"
63 (gravatar-hash mail-address
)
67 (defun gravatar-cache-expired (url)
68 "Check if URL is cached for more than `gravatar-cache-ttl'."
69 (cond (url-standalone-mode
70 (not (file-exists-p (url-cache-create-filename url
))))
71 (t (let ((cache-time (url-is-cached url
)))
80 (defun gravatar-get-data ()
81 "Get data from current buffer."
83 (goto-char (point-min))
84 (when (re-search-forward "^HTTP/.+ 200 OK$" nil
(line-end-position))
85 (when (search-forward "\n\n" nil t
)
86 (buffer-substring (point) (point-max))))))
89 (cond ((featurep 'xemacs
)
91 (defalias 'gravatar-create-image
'gnus-xmas-create-image
))
93 (defalias 'gravatar-create-image
'gnus-create-image
))
96 (defalias 'gravatar-create-image
'create-image
))))
98 (defun gravatar-data->image
()
99 "Get data of current buffer and return an image.
100 If no image available, return 'error."
101 (let ((data (gravatar-get-data)))
103 (gravatar-create-image data nil t
)
107 (defun gravatar-retrieve (mail-address cb
&optional cbargs
)
108 "Retrieve MAIL-ADDRESS gravatar and call CB on retrieval.
109 You can provide a list of argument to pass to CB in CBARGS."
110 (let ((url (gravatar-build-url mail-address
)))
111 (if (gravatar-cache-expired url
)
112 (let ((args (list url
114 (list cb
(when cbargs cbargs
)))))
115 (when (> (length (if (featurep 'xemacs
)
116 (cdr (split-string (function-arglist 'url-retrieve
)))
117 (help-function-arglist 'url-retrieve
)))
119 (setq args
(nconc args
(list t
))))
120 (apply #'url-retrieve args
))
123 (mm-disable-multibyte)
124 (url-cache-extract (url-cache-create-filename url
))
125 (gravatar-data->image
))
129 (defun gravatar-retrieve-synchronously (mail-address)
130 "Retrieve MAIL-ADDRESS gravatar and returns it."
131 (let ((url (gravatar-build-url mail-address
)))
132 (if (gravatar-cache-expired url
)
133 (with-current-buffer (if (featurep 'xemacs
)
135 (url-retrieve-synchronously url
))
136 (when gravatar-automatic-caching
137 (url-store-in-cache (current-buffer)))
138 (let ((data (gravatar-data->image
)))
139 (kill-buffer (current-buffer))
142 (mm-disable-multibyte)
143 (url-cache-extract (url-cache-create-filename url
))
144 (gravatar-data->image
)))))
147 (defun gravatar-retrieved (status cb
&optional cbargs
)
148 "Callback function used by `gravatar-retrieve'."
150 (when gravatar-automatic-caching
151 (url-store-in-cache (current-buffer)))
152 (if (plist-get status
:error
)
154 (apply cb
'error cbargs
)
155 (apply cb
(gravatar-data->image
) cbargs
))
156 (kill-buffer (current-buffer)))
160 ;;; gravatar.el ends here