0b2feb096918e44beaef694a8f6ed1e5b48b1b31
[elisp/mixi.git] / sb-mixi.el
1 ;;; sb-mixi.el --- shimbun backend for mixi
2
3 ;; Copyright (C) 2006, 2007 OHASHI Akira
4
5 ;; Author: OHASHI Akira <bg66@koka-in.org>
6 ;; Keywords: news
7
8 ;; This file is *NOT* a part of shimbun.
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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; If you have bug reports and/or suggestions for improvement, please
28 ;; send them via <URL:http://mixi.jp/view_community.pl?id=1596390>.
29
30 ;;; Code:
31
32 (require 'mixi)
33 (require 'mixi-utils)
34 (require 'shimbun)
35
36 (defconst shimbun-mixi-revision "$Revision: 1.60 $")
37
38 (eval-and-compile
39   (luna-define-class shimbun-mixi (shimbun) (comment-cache))
40   (luna-define-internal-accessors 'shimbun-mixi))
41
42 (defconst shimbun-mixi-default-group-alist
43   '(("new-diaries" . mixi-get-new-diaries)
44     ("new-comments" . mixi-get-new-comments)
45     ("new-bbses" . mixi-get-new-bbses)
46     ("new-bbs-comments" . mixi-get-new-bbs-comments)
47     ("messages" . mixi-get-messages)
48     ("messages.sent" .
49      (lambda (range)
50        (mixi-get-messages 'outbox range)))
51     ("logs" . mixi-get-logs)
52     ("my-diaries" . "/home.pl")
53     ("mixi-el" . "/view_community.pl?id=1596390")
54     ("news.newest.domestic" .
55      (lambda (range)
56        (mixi-get-news 'domestic 'newest range)))
57     ("news.newest.politics" .
58      (lambda (range)
59        (mixi-get-news 'politics 'newest range)))
60     ("news.newest.economy" .
61      (lambda (range)
62        (mixi-get-news 'economy 'newest range)))
63     ("news.newest.area" .
64      (lambda (range)
65        (mixi-get-news 'area 'newest range)))
66     ("news.newest.abroad" .
67      (lambda (range)
68        (mixi-get-news 'abroad 'newest range)))
69     ("news.newest.sports" .
70      (lambda (range)
71        (mixi-get-news 'sports 'newest range)))
72     ("news.newest.entertainment" .
73      (lambda (range)
74        (mixi-get-news 'entertainment 'newest range)))
75     ("news.newest.it" .
76      (lambda (range)
77        (mixi-get-news 'IT 'newest range)))
78     ("news.pickup.domestic" .
79      (lambda (range)
80        (mixi-get-news 'domestic 'pickup range)))
81     ("news.pickup.politics" .
82      (lambda (range)
83        (mixi-get-news 'politics 'pickup range)))
84     ("news.pickup.economy" .
85      (lambda (range)
86        (mixi-get-news 'economy 'pickup range)))
87     ("news.pickup.area" .
88      (lambda (range)
89        (mixi-get-news 'area 'pickup range)))
90     ("news.pickup.abroad" .
91      (lambda (range)
92        (mixi-get-news 'abroad 'pickup range)))
93     ("news.pickup.sports" .
94      (lambda (range)
95        (mixi-get-news 'sports 'pickup range)))
96     ("news.pickup.entertainment" .
97      (lambda (range)
98        (mixi-get-news 'entertainment 'pickup range)))
99     ("news.pickup.it" .
100      (lambda (range)
101        (mixi-get-news 'IT 'pickup range))))
102   "An alist of mixi shimbun group default definition.")
103
104 (defcustom shimbun-mixi-group-alist nil
105   "*An alist of mixi shimbun group definition.
106 Each element looks like (NAME . URL) or (NAME . FUNCTION).
107 NAME is a shimbun group name that you can name it as you like.
108 URL is the URL for mixi access point of the group.  If URL is friend's, get
109 his/her diaries as article.  If community's, get its BBSes.  If diary's or
110 BBS's, get its comments.
111 FUNCTION is the function which has one `range' argument and returns the list
112 of mixi object."
113   :group 'shimbun
114   :type '(repeat (cons :fromat "%v"
115                        (string :tag "Group name")
116                        (radio (string :tag "URL")
117                               (function :tag "Function")))))
118
119 (defcustom shimbun-mixi-get-profile-with-diary t
120   "*If non-nil, get his/her profile together with diaries."
121   :group 'shimbun
122   :type 'boolean)
123
124 (defcustom shimbun-mixi-add-comment-count-to-author t
125   "*If non-nil, add comment count to author."
126   :group 'shimbun
127   :type 'boolean)
128
129 ;; FIXME: Don't use this user option.
130 (defcustom shimbun-mixi-page-articles 10
131   "*How many articles are there in one page."
132   :group 'shimbun
133   :type 'integer)
134
135 (defvar shimbun-mixi-x-face-alist
136   '(("default" . "X-Face: CY;j#FoBnpK^37`-IoJvN!J^u;GciiPmMQ@T)~RP1]t8iv?v)/bVI:I\"F!JfWJvhM5{zY!=
137  h.d+'g\\I{D>Ocy?Rc4uYUyOZj2%2Kl>,x-!MCSsyi3!L}psrrC1jlF,O?Ui>qf)X;sBz`/}\\066X%$
138  siG'|4K!2?==|oB&#E'5GGH\\#z[muyQ")))
139
140 (defun shimbun-mixi-group-alist ()
141   (append shimbun-mixi-default-group-alist
142           shimbun-mixi-group-alist))
143
144 (luna-define-method initialize-instance :after ((shimbun shimbun-mixi)
145                                                 &rest init-args)
146   (shimbun-mixi-set-comment-cache-internal shimbun
147                                            (make-hash-table :test 'equal))
148   shimbun)
149
150 (luna-define-method shimbun-close :after ((shimbun shimbun-mixi))
151   (shimbun-mixi-set-comment-cache-internal shimbun nil)
152   (mixi-logout))
153
154 (luna-define-method shimbun-groups ((shimbun shimbun-mixi))
155   (mapcar 'car (shimbun-mixi-group-alist)))
156
157 (luna-define-method shimbun-reply-to ((shimbun shimbun-mixi))
158   mixi-reply-to)
159
160 (defun shimbun-mixi-get-headers (shimbun objects &optional range)
161   (let (headers)
162     (catch 'stop
163       (while objects
164         (let ((object (car objects)))
165           (when (and shimbun-mixi-get-profile-with-diary
166                      (mixi-diary-p object))
167             (let ((owner (mixi-diary-owner object)))
168               (unless (mixi-object-realized-p owner)
169                 (mixi-realize-friend owner))))
170           (when (mixi-parent-p object)
171             (let* ((comments (mixi-get-comments object range))
172                    (comment-headers (shimbun-mixi-get-headers shimbun
173                                                               comments)))
174               (while comment-headers
175                 (push (car comment-headers) headers)
176                 (setq comment-headers (cdr comment-headers)))))
177           (let ((class (mixi-object-class object))
178                 (id (mixi-make-message-id object)))
179             (when (and (eq class 'mixi-comment)
180                        (shimbun-search-id shimbun id))
181               (throw 'stop nil))
182             (push
183              (shimbun-create-header
184               0
185               (mixi-make-title object (string-match
186                                        "^new-"
187                                        (shimbun-current-group-internal
188                                         shimbun)))
189               (mixi-make-author object shimbun-mixi-add-comment-count-to-author)
190               (mixi-make-date object)
191               id
192               (if (eq class 'mixi-comment)
193                   (mixi-make-message-id (mixi-comment-parent object))
194                 "")
195               0 0
196               (mixi-make-url object))
197              headers)
198             (when (eq class 'mixi-comment)
199               (puthash id (mixi-comment-content object)
200                        (shimbun-mixi-comment-cache-internal shimbun)))))
201         (setq objects (cdr objects))))
202     headers))
203
204 (luna-define-method shimbun-get-headers ((shimbun shimbun-mixi)
205                                          &optional range)
206   (let ((url-or-function (cdr (assoc (shimbun-current-group-internal shimbun)
207                                      (shimbun-mixi-group-alist))))
208         (range (shimbun-header-index-pages range)))
209     (when (integerp range)
210       (setq range (* range shimbun-mixi-page-articles)))
211     (shimbun-sort-headers
212      (shimbun-mixi-get-headers shimbun
213                                (mixi-make-objects url-or-function range)
214                                range))))
215
216 (defun shimbun-mixi-comment-article (url shimbun header)
217   (let* ((message-id (shimbun-header-id header))
218          (cache (shimbun-mixi-comment-cache-internal shimbun))
219          (article (gethash message-id cache)))
220     (unless (stringp article)
221       (let* ((parent (mixi-make-object-from-url url))
222              (comments (mixi-get-comments parent)))
223         (while comments
224           (let ((id (mixi-make-message-id (car comments)))
225                 (content (mixi-comment-content (car comments))))
226             (puthash id content cache)
227             (when (string= id message-id)
228               (setq article content)))
229           (setq comments (cdr comments)))))
230     article))
231
232 (luna-define-method shimbun-article ((shimbun shimbun-mixi)
233                                      header &optional outbuf)
234   (when (shimbun-current-group-internal shimbun)
235     (with-current-buffer (or outbuf (current-buffer))
236       (w3m-insert-string
237        (or (with-temp-buffer
238              (let* ((url (shimbun-article-url shimbun header))
239                     (object (mixi-make-object-from-url url))
240                     (article (if (string-match "#comment$" url)
241                                  (shimbun-mixi-comment-article
242                                   url shimbun header)
243                                (mixi-make-content object))))
244                (mixi-make-reply-to object)
245                (when (stringp article)
246                  (insert article)))
247              (shimbun-message shimbun "shimbun: Make contents...")
248              (goto-char (point-min))
249              (prog1 (shimbun-make-contents shimbun header)
250                (shimbun-message shimbun "shimbun: Make contents...done")))
251            "")))))
252
253 (provide 'sb-mixi)
254
255 ;;; sb-mixi.el ends here