use of org.eclipse.ecf.bulletinboard.IThreadMessage in project ecf by eclipse.
the class Thread method getNewMessages.
public List<IThreadMessage> getNewMessages() throws BBException {
ThreadBrowser2 browser = new ThreadBrowser2((AbstractBulletinBoard) bb, this);
List<IThreadMessage> msgs = browser.fetchNewMessages();
if (msgs.size() > 0) {
lastReadMessageId = (ThreadMessageID) msgs.get(msgs.size() - 1).getID();
for (IThreadMessage message : msgs) {
ThreadMessage msg = (ThreadMessage) message;
msg.setBulletinBoard(bb);
msg.thread = this;
IMember author = msg.author;
((Member) author).setBulletinBoard(bb);
}
}
return msgs;
}
use of org.eclipse.ecf.bulletinboard.IThreadMessage in project ecf by eclipse.
the class Thread method getNewMessages.
public List<IThreadMessage> getNewMessages() throws BBException {
ThreadBrowser2 browser = new ThreadBrowser2((VBulletin) bb, this);
List<IThreadMessage> msgs = browser.fetchNewMessages();
if (msgs.size() > 0) {
lastReadMessageId = (ThreadMessageID) msgs.get(msgs.size() - 1).getID();
for (IThreadMessage message : msgs) {
ThreadMessage msg = (ThreadMessage) message;
msg.setBulletinBoard(bb);
msg.thread = this;
IMember author = msg.author;
((Member) author).setBulletinBoard(bb);
}
}
return msgs;
}
use of org.eclipse.ecf.bulletinboard.IThreadMessage in project ecf by eclipse.
the class Thread method postReply.
public ID postReply(IThreadMessage message) throws IllegalWriteException, BBException {
if ((mode & READ_ONLY) == READ_ONLY) {
throw new IllegalWriteException(E_READ_ONLY);
}
ThreadMessage msg = (ThreadMessage) message;
// FIXME assert msg.bb == bb;
assert msg.getThread() == this;
PostRequest request = new PostRequest(bb.getHttpClient(), bb.getURL(), "newreply.php");
NameValuePair[] params = new NameValuePair[] { new NameValuePair("emailupdate", "9999"), new NameValuePair("rating", "0") };
request.addParameters(params);
params = new NameValuePair[] { new NameValuePair("title", message.getName()), new NameValuePair("message", msg.getMessage()), new NameValuePair("iconid", "0"), new NameValuePair("s", ""), new NameValuePair("do", "postreply"), new NameValuePair("t", String.valueOf(id.getLongValue())) };
request.addParameters(params);
if (message.getReplyTo() != null) {
params = new NameValuePair[] { new NameValuePair("p", String.valueOf(((ThreadMessageID) message.getReplyTo().getID()).getLongValue())) };
request.addParameters(params);
}
params = new NameValuePair[] { new NameValuePair("posthash", ""), new NameValuePair("poststarttime", ""), new NameValuePair("sbutton", "Submit Reply"), new NameValuePair("parseurl", "1") // checkbox : disabled new NameValuePair("disablesmilies", "1"),
};
request.addParameters(params);
try {
request.execute();
// TODO: do we have to do this?
String resp = request.getResponseBodyAsString();
Header newLocation = request.getMethod().getResponseHeader("Location");
if (newLocation == null) {
throw ((VBParser) bb.getParser()).createVBException("The message was not posted.", resp);
}
Matcher m = Pattern.compile("showthread.php\\?p=([0-9]+)").matcher(newLocation.getValue());
if (m.find()) {
synchronized (this) {
lastReadMessageId = (ThreadMessageID) new ThreadMessageFactory().createBBObjectId(bb.getNamespace(), bb.getURL(), m.group(1));
return lastReadMessageId;
}
} else {
throw ((VBParser) bb.getParser()).createVBException("The message was not posted.", resp);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IDCreateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
use of org.eclipse.ecf.bulletinboard.IThreadMessage in project ecf by eclipse.
the class Thread method createReplyMessage.
public IThreadMessage createReplyMessage() throws IllegalWriteException {
if ((mode & READ_ONLY) == READ_ONLY) {
throw new IllegalWriteException(E_READ_ONLY);
}
ThreadMessage msg = new ThreadMessage();
msg.setBulletinBoard(bb);
msg.setThread(this);
return msg;
}
use of org.eclipse.ecf.bulletinboard.IThreadMessage in project ecf by eclipse.
the class ThreadBrowser2 method fetchNewMessages.
public List<IThreadMessage> fetchNewMessages() throws BBException {
List<IThreadMessage> messages = new ArrayList<IThreadMessage>();
try {
int nextPage = STARTPAGE;
SkippedStatus skipped = new SkippedStatus();
while (nextPage > NONE) {
WebRequest req = createRequest(nextPage);
req.execute();
String resp = req.getResponseBodyAsString();
req.releaseConnection();
messages.addAll(0, bb.getParser().parseMessages2(resp, thread.lastReadMessageId, true, skipped));
if (skipped.messagesSkipped) {
nextPage = NONE;
} else {
nextPage = bb.getParser().parseNextPage(resp);
}
}
} catch (IOException e) {
e.printStackTrace();
}
return messages;
}
Aggregations