aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-22 17:39:09 -0600
committerGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-22 17:39:09 -0600
commitf3561cc84b9c0a9efd82501ef8243660c7da84e9 (patch)
treeed65d42d7b609bc1e7558d7c370217bf7ed81f5f
parent96a8429b8cbebfe970a7411815e9e036313b7f64 (diff)
Simplify with suggested code
-rw-r--r--src/async/nntp/MCNNTPFetchOverviewOperation.cc4
-rw-r--r--src/core/nntp/MCNNTPSession.cc23
2 files changed, 9 insertions, 18 deletions
diff --git a/src/async/nntp/MCNNTPFetchOverviewOperation.cc b/src/async/nntp/MCNNTPFetchOverviewOperation.cc
index 9bd47fba..b05b29e6 100644
--- a/src/async/nntp/MCNNTPFetchOverviewOperation.cc
+++ b/src/async/nntp/MCNNTPFetchOverviewOperation.cc
@@ -56,12 +56,12 @@ void NNTPFetchOverviewOperation::main()
mArticles = Array::array();
for(unsigned int i = 0 ; i < mIndexes->rangesCount() ; i ++) {
Range range = mIndexes->allRanges()[i];
+ Array * articles = session()->session()->fetchOverArticlesInRange(range, mGroupName, &error);
if (error != ErrorNone) {
setError(error);
- mArticles->removeAllObjects();
return;
}
- mArticles->addObjectsFromArray(session()->session()->fetchOverArticlesInRange(range, mGroupName, &error));
+ mArticles->addObjectsFromArray(articles);
}
setError(error);
diff --git a/src/core/nntp/MCNNTPSession.cc b/src/core/nntp/MCNNTPSession.cc
index f573c5dd..b0d3776f 100644
--- a/src/core/nntp/MCNNTPSession.cc
+++ b/src/core/nntp/MCNNTPSession.cc
@@ -403,10 +403,6 @@ MessageHeader * NNTPSession::fetchHeader(String *groupName, unsigned int index,
size_t content_len;
MCLog("fetch header at index %u", index);
- loginIfNeeded(pError);
- if (* pError != ErrorNone) {
- return NULL;
- }
selectGroup(groupName, pError);
if (* pError != ErrorNone) {
@@ -440,11 +436,6 @@ Data * NNTPSession::fetchArticle(String *groupName, unsigned int index, NNTPProg
MCLog("fetch article at index %u", index);
- loginIfNeeded(pError);
- if (* pError != ErrorNone) {
- return NULL;
- }
-
selectGroup(groupName, pError);
if (* pError != ErrorNone) {
return NULL;
@@ -477,11 +468,6 @@ Data * NNTPSession::fetchArticleByMessageID(String * groupName, String * message
MCLog("fetch article at message-id %s", messageID->UTF8Characters());
- loginIfNeeded(pError);
- if (* pError != ErrorNone) {
- return NULL;
- }
-
selectGroup(groupName, pError);
if (* pError != ErrorNone) {
return NULL;
@@ -507,7 +493,7 @@ Data * NNTPSession::fetchArticleByMessageID(String * groupName, String * message
return result;
}
-time_t NNTPSession::fetchServerClockTime(ErrorCode * pError) {
+time_t NNTPSession::fetchServerDate(ErrorCode * pError) {
int r;
struct tm time;
time_t result;
@@ -524,7 +510,7 @@ time_t NNTPSession::fetchServerClockTime(ErrorCode * pError) {
return NULL;
}
else if (r != NEWSNNTP_NO_ERROR) {
- * pError = ErrorBadResponse;
+ * pError = ErrorServerDate;
return NULL;
}
@@ -624,6 +610,11 @@ void NNTPSession::selectGroup(String * folder, ErrorCode * pError)
int r;
struct newsnntp_group_info * info;
+ loginIfNeeded(pError);
+ if (* pError != ErrorNone) {
+ return;
+ }
+
readerIfNeeded(pError);
if (* pError != ErrorNone) {
return;