Package org.cast.isi.page

Source Code of org.cast.isi.page.ForgotPassword$EmailForm

/*
* Copyright 2011 CAST, Inc.
*
* This file is part of the UDL Curriculum Toolkit:
* see <http://code.google.com/p/udl-curriculum-toolkit>.
*
* The UDL Curriculum Toolkit is free software: you can redistribute and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The UDL Curriculum Toolkit is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this software.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.cast.isi.page;

import net.databinder.hib.Databinder;

import org.apache.wicket.PageParameters;
import org.apache.wicket.ResourceReference;
import org.apache.wicket.markup.html.IHeaderContributor;
import org.apache.wicket.markup.html.IHeaderResponse;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.markup.html.link.BookmarkablePageLink;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.apache.wicket.model.PropertyModel;
import org.apache.wicket.model.StringResourceModel;
import org.apache.wicket.validation.validator.EmailAddressValidator;
import org.apache.wicket.validation.validator.StringValidator;
import org.cast.cwm.data.User;
import org.cast.cwm.data.component.FeedbackBorder;
import org.cast.cwm.service.EmailService;
import org.cast.cwm.service.UserService;
import org.cast.isi.ISIApplication;
import org.cast.isi.service.ISIEmailService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* This page is used when a user forgets their password.  User enters their email address
* and an email is sent containing a link to reset their password.  This page is used in
* conjunction with the @Password@ page.
*
* @author lynnmccormack
*
*/
public class ForgotPassword extends ISIBasePage implements IHeaderContributor

  boolean success = false; // has a successful send already happened?
 
  @SuppressWarnings("unused")
  private static final Logger log = LoggerFactory.getLogger(ForgotPassword.class);

  public ForgotPassword(PageParameters params) {
    super(params);

    String pageTitleEnd = (new StringResourceModel("ForgotPassword.pageTitle", this, null, "Forgot Password").getString());
    setPageTitle(pageTitleEnd);
    add(new Label("pageTitle", new PropertyModel<String>(this, "pageTitle")));
    add(new Label("applicationTitle", new StringResourceModel("applicationTitle", this, null)));
    add(new Label("applicationSubTitle", new StringResourceModel("applicationSubTitle", this, null)));
    add(new WebMarkupContainer("preSubmitMessage") {
      private static final long serialVersionUID = 1L;

      @Override
      public boolean isVisible() {
        return (!success);
      }     
    });
   
    add (new FeedbackPanel("feedback") {
      private static final long serialVersionUID = 1L;
      @Override
      public boolean isVisible() { return anyMessage(); }
    });
    add (new EmailForm("form"));
    add (new BookmarkablePageLink<Void>("register", ISIApplication.get().getRegisterPageClass()));
    add (new BookmarkablePageLink<Void>("login", ISIApplication.get().getSignInPageClass()));     
    add(ISIApplication.get().getFooterPanel("pageFooter", params));
  }

  protected class EmailForm extends Form<Void> {
    private static final long serialVersionUID = 1L;

    protected TextField<String> email;
   
    protected EmailForm(String id) {
      super(id);

      add(new FeedbackBorder("emailBorder")
        .add(email = (TextField<String>) new TextField<String>("email", new Model<String>(""))
          .add(EmailAddressValidator.getInstance())
          .add(StringValidator.maximumLength(255))
          .setRequired(true)));
    }

    @Override
    public boolean isVisible() {
      return !success;
    }

    @Override
    protected void onSubmit() {
      IModel<User> userModel = UserService.get().getByEmail(email.getModelObject());
      User user = userModel.getObject();
      if (user != null) {
        Databinder.getHibernateSession().beginTransaction();
        user.generateSecurityToken();
        Databinder.getHibernateSession().getTransaction().commit();
        String url = "/password?username=" + user.getUsername() + "&key=" + user.getSecurityToken();
        ((ISIEmailService) EmailService.get()).sendXmlEmail(userModel, ISIEmailService.EMAIL_FORGOT, url);
        String passwordSent = new StringResourceModel("ForgotPassword.passwordSent", this, null,
            "Thank you! In a few minutes you should get an email.  You will need to click on the link in that email to reset your password.").getString();
        info(passwordSent);
        success = true;
      } else {
        String passwordNotFound = new StringResourceModel("ForgotPassword.passwordNotFound", this, null,
            "Sorry, there is no account with that email address.").getString();
        info(passwordNotFound);
      }
    }
 
  }

  public void renderHead(final IHeaderResponse response) {
    renderThemeCSS(response, "css/main.css");
    response.renderCSSReference(new ResourceReference("/css/main.css"));
    super.renderHead(response);   
  }

  @Override
  public String getPageType() {
    return null;
  }

  @Override
  public String getPageName() {
    return "forgotPassword";
  }

  @Override
  public String getPageViewDetail() {
    return null;
  }

}
TOP

Related Classes of org.cast.isi.page.ForgotPassword$EmailForm

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.