Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *  Copyright: 2005 University of New Mexico and the 
4
 *             Regents of the University of California and the
5
 *             National Center for Ecological Analysis and Synthesis
6
 *   '$Author: costa $'
7
 *     '$Date: 2006-06-14 08:42:56 -0700 (Wed, 14 Jun 2006) $'
8
 * '$Revision: 3010 $'
9
 *
10
 * This program is free software; you can redistribute it and/or modify
11
 * it under the terms of the GNU General Public License as published by
12
 * the Free Software Foundation; either version 2 of the License, or
13
 * (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program; if not, write to the Free Software
22
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
 */
24

    
25
package edu.ucsb.nceas.metacat.advancedsearch;
26

    
27
import java.io.File;
28
import java.io.IOException;
29

    
30
import javax.servlet.RequestDispatcher;
31
import javax.servlet.ServletConfig;
32
import javax.servlet.ServletContext;
33
import javax.servlet.ServletException;
34
import javax.servlet.http.HttpServlet;
35
import javax.servlet.http.HttpServletRequest;
36
import javax.servlet.http.HttpServletResponse;
37
import javax.servlet.http.HttpSession;
38

    
39
import edu.ucsb.nceas.metacat.client.*;
40
import edu.ucsb.nceas.utilities.Options;
41

    
42
/** 
43
 * @author dcosta
44
 * 
45
 * The LoginServlet class executes a metacat login via a metacat client.
46
 */
47
public class LoginServlet extends HttpServlet {
48

    
49
  /*
50
   * Class fields
51
   */
52
  private static final String CONFIG_DIR = "WEB-INF";
53
  private static final String CONFIG_NAME = "metacat.properties";
54
  static final long serialVersionUID = 0;  // Needed for Eclipse warning.
55
				   
56
  // Instance Variables
57
  private String contextString = "";
58

    
59
  // Methods
60
  
61
  /**
62
   * Executes a metacat login action. On a successful login, the metacat object
63
   * is stored as an attribute of the HttpSession object.
64
   */
65
  public void doPost(HttpServletRequest request, HttpServletResponse response)
66
          throws IOException, ServletException {
67
    RequestDispatcher dispatcher;
68
    HttpSession httpSession = request.getSession();
69
    LoginBean loginBean;
70
    boolean loginSuccess = false;
71
    Metacat metacat = (Metacat) httpSession.getAttribute("metacat");
72
    MetacatLogin metacatLogin;
73
    String metacatURL;
74
    ServletContext servletContext = httpSession.getServletContext();
75
    String username;
76
    
77
    // First check whether the metacat URL was set as a context-param.
78
    metacatURL = servletContext.getInitParameter("metacatURL");
79
 
80
    // If no metacat URL was configured, then derive the metacat URL from the
81
    // server name and server port.
82
    if (metacatURL == null || metacatURL.equals("")) {
83
      MetacatHelper metacatHelper = new MetacatHelper();
84
      String serverName = request.getServerName();
85
      int serverPort = request.getServerPort();
86
      metacatURL = 
87
       metacatHelper.constructMetacatURL(serverName, serverPort, contextString);
88
    }
89
    
90
    if (metacat == null) {
91
      try {
92
        metacat = MetacatFactory.createMetacatConnection(metacatURL);
93
      }
94
      catch (MetacatInaccessibleException mie) {
95
        System.err.println("Metacat Inaccessible:\n" + mie.getMessage());
96
      }
97
    }
98
    
99
    loginBean = (LoginBean) request.getAttribute("loginBean");
100
    metacatLogin = new MetacatLogin(loginBean);
101
    loginSuccess = metacatLogin.executeLogin(metacatURL, metacat);
102
    httpSession.setAttribute("metacat", metacat);
103

    
104
    // If login succeeds, forward to the simple search page. If login fails,
105
    // forward to the login page where an error message will be displayed.
106
    if (loginSuccess) {
107
      httpSession.setAttribute("loggedIn", new Boolean(true));
108
      username = loginBean.getUsername();
109
      httpSession.setAttribute("username", username);
110
      //dispatcher = request.getRequestDispatcher("/style/skins/lter/metacatsearch.jsp");
111
      dispatcher = request.getRequestDispatcher("/style/skins/lter/index.jsp");
112
    }
113
    else {
114
      httpSession.setAttribute("loggedIn", new Boolean(false));
115
      request.setAttribute("loginFailure", "true");
116
      dispatcher = request.getRequestDispatcher("/style/skins/lter/index_login.jsp");
117
    }
118

    
119
    dispatcher.forward(request, response);
120
  }
121

    
122

    
123
  /**
124
   * Initializes the servlet. Reads properties and initializes object fields.
125
   * 
126
   * @throws ServletException
127
   */
128
  public void init(ServletConfig config) throws ServletException {
129
	ServletContext context = null;
130
    String dirPath;
131
    Options options = null;
132

    
133
    super.init(config);
134
    context = config.getServletContext();
135
    dirPath = context.getRealPath(CONFIG_DIR);
136
    File propertyFile = new File(dirPath, CONFIG_NAME);
137
    
138
    try {
139
      options = Options.initialize(propertyFile);
140
    }
141
    catch (IOException e) {
142
      System.err.println("Error in loading options: " + e.getMessage());
143
    }
144
    
145
    this.contextString = options.getOption("context");
146
  }
147

    
148
}
(10-10/14)