claws-mail/src/news.c

626 lines
15 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999,2000 Hiroyuki Yamamoto
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <dirent.h>
#include <unistd.h>
2001-04-23 19:57:45 +02:00
#include "defs.h"
2001-04-19 14:21:46 +02:00
#include "intl.h"
#include "news.h"
#include "nntp.h"
#include "socket.h"
#include "recv.h"
#include "procmsg.h"
#include "procheader.h"
#include "folder.h"
#include "session.h"
#include "statusbar.h"
#include "codeconv.h"
#include "utils.h"
#include "prefs_common.h"
2001-04-26 18:41:29 +02:00
#include "prefs_account.h"
#include "inputdialog.h"
#include "alertpanel.h"
2001-04-19 14:21:46 +02:00
static gint news_get_article_cmd (NNTPSession *session,
2001-04-19 14:21:46 +02:00
const gchar *cmd,
gint num,
gchar *filename);
static gint news_get_article (NNTPSession *session,
2001-04-19 14:21:46 +02:00
gint num,
gchar *filename);
static gint news_get_header (NNTPSession *session,
2001-04-19 14:21:46 +02:00
gint num,
gchar *filename);
static GSList *news_get_uncached_articles(NNTPSession *session,
FolderItem *item,
gint cache_last,
gint *rfirst,
gint *rlast);
static MsgInfo *news_parse_xover (const gchar *xover_str);
static GSList *news_delete_old_article (GSList *alist,
gint first);
static void news_delete_all_article (FolderItem *item);
2001-04-30 16:58:37 +02:00
static Session *news_session_new(const gchar *server, gushort port,
const gchar *userid, const gchar *passwd)
2001-04-19 14:21:46 +02:00
{
gchar buf[NNTPBUFSIZE];
NNTPSession *session;
2001-04-30 16:58:37 +02:00
NNTPSockInfo *nntp_sock;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(server != NULL, NULL);
log_message(_("creating NNTP connection to %s:%d ...\n"), server, port);
2001-04-30 16:58:37 +02:00
if (userid && passwd)
nntp_sock = nntp_open_auth(server, port, buf, userid, passwd);
else
nntp_sock = nntp_open(server, port, buf);
if (nntp_sock < 0)
2001-04-19 14:21:46 +02:00
return NULL;
session = g_new(NNTPSession, 1);
SESSION(session)->type = SESSION_NEWS;
SESSION(session)->server = g_strdup(server);
2001-04-30 16:58:37 +02:00
session->nntp_sock = nntp_sock;
SESSION(session)->sock = nntp_sock->sock;
2001-04-19 14:21:46 +02:00
SESSION(session)->connected = TRUE;
SESSION(session)->phase = SESSION_READY;
SESSION(session)->data = NULL;
session->group = NULL;
return SESSION(session);
}
void news_session_destroy(NNTPSession *session)
{
2001-04-30 16:58:37 +02:00
nntp_close(session->nntp_sock);
session->nntp_sock = NULL;
2001-04-27 22:27:24 +02:00
SESSION(session)->sock = NULL;
2001-04-19 14:21:46 +02:00
g_free(session->group);
}
2001-04-30 16:58:37 +02:00
static gchar *news_query_password(const gchar *server,
const gchar *user)
{
gchar *message;
gchar *pass;
message = g_strdup_printf(_("Input password for %s on %s:"),
user, server);
pass = input_dialog_with_invisible(_("Input password"),
message, NULL);
g_free(message);
/* manage_window_focus_in(inc_dialog->mainwin->window, */
/* NULL, NULL); */
return pass;
}
static Session *news_session_new_for_folder(Folder *folder)
{
Session *session;
PrefsAccount *ac;
const gchar *userid;
gchar *passwd;
ac = folder->account;
if (ac->use_nntp_auth && ac->userid && ac->userid[0]) {
2001-04-30 16:58:37 +02:00
userid = ac->userid;
if (ac->passwd && ac->passwd[0])
passwd = g_strdup(ac->passwd);
else {
2001-04-30 16:58:37 +02:00
passwd = news_query_password(ac->nntp_server, userid);
if (!passwd)
userid = NULL;
}
2001-04-30 16:58:37 +02:00
} else {
userid = passwd = NULL;
}
session = news_session_new(ac->nntp_server, 119, userid, passwd);
g_free(passwd);
return session;
}
2001-04-19 14:21:46 +02:00
NNTPSession *news_session_get(Folder *folder)
{
2001-04-30 16:58:37 +02:00
NNTPSession *session;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(folder != NULL, NULL);
g_return_val_if_fail(folder->type == F_NEWS, NULL);
g_return_val_if_fail(folder->account != NULL, NULL);
if (!REMOTE_FOLDER(folder)->session) {
REMOTE_FOLDER(folder)->session =
2001-04-30 16:58:37 +02:00
news_session_new_for_folder(folder);
2001-04-19 14:21:46 +02:00
} else {
2001-04-30 16:58:37 +02:00
session = NNTP_SESSION(REMOTE_FOLDER(folder)->session);
if (nntp_mode(session->nntp_sock, FALSE) != NN_SUCCESS) {
2001-04-19 14:21:46 +02:00
log_warning(_("NNTP connection to %s:%d has been"
" disconnected. Reconnecting...\n"),
folder->account->nntp_server, 119);
session_destroy(REMOTE_FOLDER(folder)->session);
REMOTE_FOLDER(folder)->session =
2001-04-30 16:58:37 +02:00
news_session_new_for_folder(folder);
2001-04-19 14:21:46 +02:00
}
}
return NNTP_SESSION(REMOTE_FOLDER(folder)->session);
}
GSList *news_get_article_list(Folder *folder, FolderItem *item,
gboolean use_cache)
{
GSList *alist;
NNTPSession *session;
g_return_val_if_fail(folder != NULL, NULL);
g_return_val_if_fail(item != NULL, NULL);
g_return_val_if_fail(folder->type == F_NEWS, NULL);
session = news_session_get(folder);
if (!session) {
alist = procmsg_read_cache(item, FALSE);
item->last_num = procmsg_get_last_num_in_cache(alist);
} else if (use_cache) {
GSList *newlist;
gint cache_last;
gint first, last;
alist = procmsg_read_cache(item, FALSE);
cache_last = procmsg_get_last_num_in_cache(alist);
newlist = news_get_uncached_articles
(session, item, cache_last, &first, &last);
alist = news_delete_old_article(alist, first);
alist = g_slist_concat(alist, newlist);
item->last_num = last;
} else {
gint last;
alist = news_get_uncached_articles
(session, item, 0, NULL, &last);
news_delete_all_article(item);
item->last_num = last;
}
procmsg_set_flags(alist, item);
statusbar_pop_all();
return alist;
}
gchar *news_fetch_msg(Folder *folder, FolderItem *item, gint num)
{
gchar *path, *filename;
gint ok;
g_return_val_if_fail(folder != NULL, NULL);
g_return_val_if_fail(item != NULL, NULL);
path = folder_item_get_path(item);
filename = g_strconcat(path, G_DIR_SEPARATOR_S, itos(num), NULL);
g_free(path);
if (is_file_exist(filename)) {
debug_print(_("article %d has been already cached.\n"), num);
return filename;
}
if (!REMOTE_FOLDER(folder)->session) {
g_free(filename);
return NULL;
}
debug_print(_("getting article %d...\n"), num);
ok = news_get_article(NNTP_SESSION(REMOTE_FOLDER(folder)->session),
2001-04-19 14:21:46 +02:00
num, filename);
statusbar_pop_all();
if (ok < 0) {
g_warning(_("can't read article %d\n"), num);
g_free(filename);
return NULL;
}
return filename;
}
void news_scan_group(Folder *folder, FolderItem *item)
{
}
gint news_post(Folder *folder, const gchar *file)
{
NNTPSession *session;
FILE *fp;
gint ok;
g_return_val_if_fail(folder != NULL, -1);
g_return_val_if_fail(folder->type == F_NEWS, -1);
g_return_val_if_fail(file != NULL, -1);
session = news_session_get(folder);
if (!session) return -1;
if ((fp = fopen(file, "r")) == NULL) {
FILE_OP_ERROR(file, "fopen");
return -1;
}
2001-04-30 16:58:37 +02:00
ok = nntp_post(session->nntp_sock, fp);
2001-04-19 14:21:46 +02:00
if (ok != NN_SUCCESS) {
log_warning(_("can't post article.\n"));
return -1;
}
fclose(fp);
statusbar_pop_all();
return 0;
}
static gint news_get_article_cmd(NNTPSession *session, const gchar *cmd,
2001-04-19 14:21:46 +02:00
gint num, gchar *filename)
{
gchar *msgid;
2001-04-30 16:58:37 +02:00
if (nntp_get_article(session->nntp_sock, cmd, num, &msgid)
!= NN_SUCCESS)
2001-04-19 14:21:46 +02:00
return -1;
debug_print("Message-Id = %s, num = %d\n", msgid, num);
g_free(msgid);
2001-04-30 16:58:37 +02:00
if (recv_write_to_file(session->nntp_sock->sock, filename) < 0) {
2001-04-19 14:21:46 +02:00
log_warning(_("can't retrieve article %d\n"), num);
return -1;
}
return 0;
}
static gint news_get_article(NNTPSession *session, gint num, gchar *filename)
2001-04-19 14:21:46 +02:00
{
return news_get_article_cmd(session, "ARTICLE", num, filename);
2001-04-19 14:21:46 +02:00
}
static gint news_get_header(NNTPSession *session, gint num, gchar *filename)
2001-04-19 14:21:46 +02:00
{
return news_get_article_cmd(session, "HEAD", num, filename);
}
2001-04-19 14:21:46 +02:00
static GSList *news_get_uncached_articles(NNTPSession *session,
FolderItem *item, gint cache_last,
gint *rfirst, gint *rlast)
{
gint ok;
gint num = 0, first = 0, last = 0, begin = 0, end = 0;
gchar buf[NNTPBUFSIZE];
GSList *newlist = NULL;
GSList *llast = NULL;
MsgInfo *msginfo;
if (rfirst) *rfirst = 0;
if (rlast) *rlast = 0;
g_return_val_if_fail(session != NULL, NULL);
g_return_val_if_fail(item != NULL, NULL);
g_return_val_if_fail(item->folder != NULL, NULL);
g_return_val_if_fail(item->folder->type == F_NEWS, NULL);
2001-04-30 16:58:37 +02:00
ok = nntp_group(session->nntp_sock, item->path,
&num, &first, &last);
2001-04-19 14:21:46 +02:00
if (ok != NN_SUCCESS) {
log_warning(_("can't set group: %s\n"), item->path);
return NULL;
}
/* calculate getting overview range */
if (first > last) {
log_warning(_("invalid article range: %d - %d\n"),
first, last);
return NULL;
}
if (cache_last < first)
begin = first;
else if (last < cache_last)
begin = first;
else if (last == cache_last) {
debug_print(_("no new articles.\n"));
return NULL;
} else
begin = cache_last + 1;
end = last;
if (prefs_common.max_articles > 0 &&
end - begin + 1 > prefs_common.max_articles)
begin = end - prefs_common.max_articles + 1;
log_message(_("getting xover %d - %d in %s...\n"),
begin, end, item->path);
2001-04-30 16:58:37 +02:00
if (nntp_xover(session->nntp_sock, begin, end) != NN_SUCCESS) {
2001-04-19 14:21:46 +02:00
log_warning(_("can't get xover\n"));
return NULL;
}
for (;;) {
if (sock_gets(SESSION(session)->sock, buf, sizeof(buf)) < 0) {
2001-04-19 14:21:46 +02:00
log_warning(_("error occurred while getting xover.\n"));
return newlist;
}
if (buf[0] == '.' && buf[1] == '\r') break;
msginfo = news_parse_xover(buf);
if (!msginfo) {
log_warning(_("invalid xover line: %s\n"), buf);
continue;
}
msginfo->folder = item;
msginfo->flags = MSG_NEW|MSG_UNREAD|MSG_NEWS;
if (!newlist)
llast = newlist = g_slist_append(newlist, msginfo);
else {
llast = g_slist_append(llast, msginfo);
llast = llast->next;
}
}
if (rfirst) *rfirst = first;
if (rlast) *rlast = last;
return newlist;
}
#define PARSE_ONE_PARAM(p, srcp) \
{ \
p = strchr(srcp, '\t'); \
if (!p) return NULL; \
else \
*p++ = '\0'; \
}
static MsgInfo *news_parse_xover(const gchar *xover_str)
{
MsgInfo *msginfo;
gchar buf[NNTPBUFSIZE];
gchar *subject, *sender, *size, *line, *date, *msgid, *ref, *tmp;
gchar *p;
gint num, size_int, line_int;
gchar *xover_buf;
Xalloca(xover_buf, strlen(xover_str) + 1, return NULL);
strcpy(xover_buf, xover_str);
PARSE_ONE_PARAM(subject, xover_buf);
PARSE_ONE_PARAM(sender, subject);
PARSE_ONE_PARAM(date, sender);
PARSE_ONE_PARAM(msgid, date);
PARSE_ONE_PARAM(ref, msgid);
PARSE_ONE_PARAM(size, ref);
PARSE_ONE_PARAM(line, size);
tmp = strchr(line, '\t');
if (!tmp) tmp = strchr(line, '\r');
if (!tmp) tmp = strchr(line, '\n');
if (tmp) *tmp = '\0';
num = atoi(xover_str);
size_int = atoi(size);
line_int = atoi(line);
/* set MsgInfo */
msginfo = g_new0(MsgInfo, 1);
msginfo->msgnum = num;
msginfo->size = size_int;
msginfo->date = g_strdup(date);
msginfo->date_t = procheader_date_parse(NULL, date, 0);
conv_unmime_header(buf, sizeof(buf), sender, NULL);
msginfo->from = g_strdup(buf);
msginfo->fromname = procheader_get_fromname(buf);
conv_unmime_header(buf, sizeof(buf), subject, NULL);
msginfo->subject = g_strdup(buf);
extract_parenthesis(msgid, '<', '>');
remove_space(msgid);
if (*msgid != '\0')
msginfo->msgid = g_strdup(msgid);
eliminate_parenthesis(ref, '(', ')');
if ((p = strrchr(ref, '<')) != NULL) {
extract_parenthesis(p, '<', '>');
remove_space(p);
if (*p != '\0')
msginfo->inreplyto = g_strdup(p);
}
return msginfo;
}
static GSList *news_delete_old_article(GSList *alist, gint first)
{
GSList *cur, *next;
MsgInfo *msginfo;
gchar *cache_file;
if (first < 2) return alist;
for (cur = alist; cur != NULL; ) {
next = cur->next;
msginfo = (MsgInfo *)cur->data;
if (msginfo && msginfo->msgnum < first) {
debug_print(_("deleting article %d...\n"),
msginfo->msgnum);
cache_file = procmsg_get_message_file_path(msginfo);
if (is_file_exist(cache_file)) unlink(cache_file);
g_free(cache_file);
procmsg_msginfo_free(msginfo);
alist = g_slist_remove(alist, msginfo);
}
cur = next;
}
return alist;
}
static void news_delete_all_article(FolderItem *item)
{
DIR *dp;
struct dirent *d;
gchar *dir;
gchar *file;
dir = folder_item_get_path(item);
if ((dp = opendir(dir)) == NULL) {
FILE_OP_ERROR(dir, "opendir");
g_free(dir);
return;
}
debug_print(_("\tDeleting all cached articles... "));
while ((d = readdir(dp)) != NULL) {
if (to_number(d->d_name) < 0) continue;
file = g_strconcat(dir, G_DIR_SEPARATOR_S, d->d_name, NULL);
if (is_file_exist(file)) {
if (unlink(file) < 0)
FILE_OP_ERROR(file, "unlink");
}
g_free(file);
}
closedir(dp);
g_free(dir);
debug_print(_("done.\n"));
}
2001-04-23 19:57:45 +02:00
2001-04-24 15:53:43 +02:00
/*
news_get_group_list returns a strings list.
These strings are the names of the newsgroups of a server.
item is the FolderItem of the news server.
The names of the newsgroups are cached into a file so that
when the function is called again, there is no need to make
a request to the server.
*/
2001-04-23 19:57:45 +02:00
GSList * news_get_group_list(FolderItem *item)
{
gchar *path, *filename;
gint ok;
NNTPSession *session;
GSList * group_list = NULL;
FILE * f;
gchar buf[NNTPBUFSIZE];
int len;
if (item == NULL)
return NULL;
path = folder_item_get_path(item);
if (!is_dir_exist(path))
make_dir_hier(path);
filename = g_strconcat(path, G_DIR_SEPARATOR_S, GROUPLIST_FILE, NULL);
g_free(path);
session = news_session_get(item->folder);
if (session == NULL)
return NULL;
if (is_file_exist(filename)) {
debug_print(_("group list has been already cached.\n"));
}
2001-04-27 22:27:24 +02:00
else {
2001-04-30 16:58:37 +02:00
ok = nntp_list(session->nntp_sock);
2001-04-23 19:57:45 +02:00
if (ok != NN_SUCCESS)
return NULL;
2001-04-27 22:27:24 +02:00
if (recv_write_to_file(SESSION(session)->sock, filename) < 0) {
2001-04-23 19:57:45 +02:00
log_warning(_("can't retrieve group list\n"));
return NULL;
}
2001-04-27 22:27:24 +02:00
}
2001-04-23 19:57:45 +02:00
f = fopen(filename, "r");
2001-04-27 22:27:24 +02:00
while (fgets(buf, NNTPBUFSIZE, f)) {
2001-04-23 19:57:45 +02:00
char * s;
len = 0;
while ((buf[len] != 0) && (buf[len] != ' '))
len++;
buf[len] = 0;
s = g_strdup(buf);
group_list = g_slist_append(group_list, s);
2001-04-27 22:27:24 +02:00
}
2001-04-23 19:57:45 +02:00
fclose(f);
g_free(filename);
group_list = g_slist_sort(group_list, (GCompareFunc) g_strcasecmp);
return group_list;
}
2001-04-24 15:53:43 +02:00
/*
remove the cache file of the names of the newsgroups.
*/
2001-04-23 19:57:45 +02:00
void news_reset_group_list(FolderItem *item)
{
gchar *path, *filename;
debug_print(_("\tDeleting cached group list... "));
path = folder_item_get_path(item);
filename = g_strconcat(path, G_DIR_SEPARATOR_S, GROUPLIST_FILE, NULL);
g_free(path);
if (remove(filename) != 0)
log_warning(_("can't delete cached group list %s\n"), filename);
g_free(filename);
}