blob: 3574ba1f390a316a3d9daddcc812506c692d6ce6 [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.wiki.ui.admin.beans;
import org.apache.wiki.WikiContext;
import org.apache.wiki.api.core.Engine;
import org.apache.wiki.api.core.Session;
import org.apache.wiki.auth.NoSuchPrincipalException;
import org.apache.wiki.auth.UserManager;
import org.apache.wiki.auth.WikiSecurityException;
import org.apache.wiki.auth.user.UserProfile;
import org.apache.wiki.ui.admin.AdminBean;
import org.apache.wiki.ui.admin.SimpleAdminBean;
import javax.management.NotCompliantMBeanException;
import javax.servlet.http.HttpServletRequest;
import java.util.Date;
public class UserBean extends SimpleAdminBean {
public UserBean( final Engine engine ) throws NotCompliantMBeanException {
super();
}
@Override
public String[] getAttributeNames()
{
return new String[0];
}
// FIXME: We don't yet support MBean for this kind of stuff.
@Override
public String[] getMethodNames()
{
return new String[0];
}
@Override
public String doPost( final WikiContext context ) {
final HttpServletRequest request = context.getHttpRequest();
final Session session = context.getWikiSession();
final UserManager mgr = context.getEngine().getManager( UserManager.class );
final String loginid = request.getParameter( "loginid" );
final String loginname = request.getParameter( "loginname" );
final String fullname = request.getParameter( "fullname" );
final String password = request.getParameter( "password" );
final String password2 = request.getParameter( "password2" );
final String email = request.getParameter( "email" );
if( request.getParameter( "action" ).equalsIgnoreCase( "remove" ) ) {
try {
mgr.getUserDatabase().deleteByLoginName( loginid );
session.addMessage( "User profile " + loginid + " (" + fullname + ") has been deleted" );
} catch( final NoSuchPrincipalException e ) {
session.addMessage( "User profile has already been removed" );
} catch( final WikiSecurityException e ) {
session.addMessage( "Security problem: " + e );
}
return "";
}
if( password != null && password.length() > 0 && !password.equals( password2 ) ) {
session.addMessage( "Passwords do not match!" );
return "";
}
final UserProfile p;
if( loginid.equals( "--New--" ) ) {
// Create new user
p = mgr.getUserDatabase().newProfile();
p.setCreated( new Date() );
} else {
try {
p = mgr.getUserDatabase().findByLoginName( loginid );
} catch( final NoSuchPrincipalException e ) {
session.addMessage( "I could not find user profile " + loginid );
return "";
}
}
p.setEmail( email );
p.setFullname( fullname );
if( password != null && password.length() > 0 ) {
p.setPassword( password );
}
p.setLoginName( loginname );
try {
mgr.getUserDatabase().save( p );
} catch( final WikiSecurityException e ) {
session.addMessage( "Unable to save " + e.getMessage() );
}
session.addMessage("User profile has been updated");
return "";
}
@Override
public String getTitle() {
return "User administration";
}
@Override
public int getType() {
return AdminBean.UNKNOWN;
}
}