blob: d64624529ff27214e6a3a0357c214160f3b470f0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License") + you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openmeetings.web.pages;
import org.apache.openmeetings.db.dao.user.AdminUserDao;
import org.apache.openmeetings.db.entity.user.User;
import org.apache.openmeetings.web.app.Application;
import org.apache.openmeetings.web.pages.auth.ResetPasswordDialog;
import org.apache.wicket.request.mapper.parameter.PageParameters;
public class ResetPage extends BaseNotInitedPage {
private static final long serialVersionUID = 1L;
private final String RESET_PARAM = "hash";
public ResetPage(PageParameters pp){
String resetHash = pp.get(RESET_PARAM).toString();
if (resetHash != null){
Object user = Application.getBean(AdminUserDao.class).getUserByHash(resetHash);
if (user instanceof User){
add(new ResetPasswordDialog("resetPassword", (User)user));
}else {
setResponsePage(Application.get().getSignInPageClass());
}
} else {
setResponsePage(Application.get().getSignInPageClass());
}
}
}