diff -r 74139325d305 -r 7f84f4de2893 src/org/sonews/daemon/command/PostCommand.java --- a/src/org/sonews/daemon/command/PostCommand.java Sun Aug 29 18:17:37 2010 +0200 +++ b/src/org/sonews/daemon/command/PostCommand.java Mon Jun 06 20:12:21 2011 +0200 @@ -15,7 +15,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package org.sonews.daemon.command; import java.io.IOException; @@ -45,40 +44,35 @@ * @author Christian Lins * @since sonews/0.5.0 */ -public class PostCommand implements Command -{ +public class PostCommand implements Command { private final Article article = new Article(); private int lineCount = 0; private long bodySize = 0; private InternetHeaders headers = null; private long maxBodySize = - Config.inst().get(Config.ARTICLE_MAXSIZE, 128) * 1024L; // Size in bytes + Config.inst().get(Config.ARTICLE_MAXSIZE, 128) * 1024L; // Size in bytes private PostState state = PostState.WaitForLineOne; private final ByteArrayOutputStream bufBody = new ByteArrayOutputStream(); private final StringBuilder strHead = new StringBuilder(); @Override - public String[] getSupportedCommandStrings() - { - return new String[] {"POST"}; + public String[] getSupportedCommandStrings() { + return new String[]{"POST"}; } @Override - public boolean hasFinished() - { + public boolean hasFinished() { return this.state == PostState.Finished; } @Override - public String impliedCapability() - { + public String impliedCapability() { return null; } @Override - public boolean isStateful() - { + public boolean isStateful() { return true; } @@ -90,8 +84,7 @@ */ @Override // TODO: Refactor this method to reduce complexity! public void processLine(NNTPConnection conn, String line, byte[] raw) - throws IOException, StorageBackendException - { + throws IOException, StorageBackendException { switch (state) { case WaitForLineOne: { if (line.equalsIgnoreCase("POST")) { @@ -113,7 +106,7 @@ try { // Parse the header using the InternetHeader class from JavaMail API headers = new InternetHeaders( - new ByteArrayInputStream(strHead.toString().trim().getBytes(conn.getCurrentCharset()))); + new ByteArrayInputStream(strHead.toString().trim().getBytes(conn.getCurrentCharset()))); // add the header entries for the article article.setHeaders(headers); @@ -181,8 +174,7 @@ * @param article */ private void controlMessage(NNTPConnection conn, Article article) - throws IOException - { + throws IOException { String[] ctrl = article.getHeader(Headers.CONTROL)[0].split(" "); if (ctrl.length == 2) // "cancel " { @@ -203,8 +195,7 @@ } private void supersedeMessage(NNTPConnection conn, Article article) - throws IOException - { + throws IOException { try { String oldMsg = article.getHeader(Headers.SUPERSEDES)[0]; StorageManager.current().delete(oldMsg); @@ -217,8 +208,7 @@ } private void postArticle(NNTPConnection conn, Article article) - throws IOException - { + throws IOException { if (article.getHeader(Headers.CONTROL)[0].length() > 0) { controlMessage(conn, article); } else if (article.getHeader(Headers.SUPERSEDES)[0].length() > 0) { @@ -253,7 +243,7 @@ // Log this posting to statistics Stats.getInstance().mailPosted( - article.getHeader(Headers.NEWSGROUPS)[0]); + article.getHeader(Headers.NEWSGROUPS)[0]); } success = true; }