trunk/com/so/news/command/GroupCommand.java
author chris <chris@marvin>
Tue Jan 20 10:21:03 2009 +0100 (2009-01-20)
changeset 0 f907866f0e4b
permissions -rw-r--r--
Initial import.
chris@0
     1
/*
chris@0
     2
 *   StarOffice News Server
chris@0
     3
 *   see AUTHORS for the list of contributors
chris@0
     4
 *
chris@0
     5
 *   This program is free software: you can redistribute it and/or modify
chris@0
     6
 *   it under the terms of the GNU General Public License as published by
chris@0
     7
 *   the Free Software Foundation, either version 3 of the License, or
chris@0
     8
 *   (at your option) any later version.
chris@0
     9
 *
chris@0
    10
 *   This program is distributed in the hope that it will be useful,
chris@0
    11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
chris@0
    12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
chris@0
    13
 *   GNU General Public License for more details.
chris@0
    14
 *
chris@0
    15
 *   You should have received a copy of the GNU General Public License
chris@0
    16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
chris@0
    17
 */
chris@0
    18
chris@0
    19
package com.so.news.command;
chris@0
    20
chris@0
    21
import com.so.news.NNTPConnection;
chris@0
    22
import com.so.news.storage.Group;
chris@0
    23
chris@0
    24
/**
chris@0
    25
 * Class handling the GROUP command.
chris@0
    26
 * @author Christian Lins
chris@0
    27
 * @author Dennis Schwerdel
chris@0
    28
 */
chris@0
    29
public class GroupCommand extends Command
chris@0
    30
{
chris@0
    31
  public GroupCommand(NNTPConnection conn)
chris@0
    32
  {
chris@0
    33
    super(conn);
chris@0
    34
  }
chris@0
    35
chris@0
    36
  public boolean process(String[] command) 
chris@0
    37
    throws Exception
chris@0
    38
  {
chris@0
    39
    // untested, RFC977 compliant
chris@0
    40
    Group g = null;
chris@0
    41
    if (command.length >= 2)
chris@0
    42
    {
chris@0
    43
      g = Group.getByName(command[1]);
chris@0
    44
    }
chris@0
    45
    if (g == null)
chris@0
    46
    {
chris@0
    47
      printStatus(411, "no such news group");
chris@0
    48
      return true;
chris@0
    49
    }
chris@0
    50
    else
chris@0
    51
    {
chris@0
    52
      setCurrentGroup(g);
chris@0
    53
chris@0
    54
      printStatus(211, g.getEstimatedArticleCount() + " " + g.getFirstArticle()
chris@0
    55
          + " " + g.getLastArticle() + " " + g.getName() + " group selected");
chris@0
    56
      return true;
chris@0
    57
    }
chris@0
    58
  }
chris@0
    59
chris@0
    60
}