io.milton.ftp.UserManagerAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milton-server-ce Show documentation
Show all versions of milton-server-ce Show documentation
Milton Community Edition: Supports DAV level 1 and is available on Apache2 license
The newest version!
/*
* 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 io.milton.ftp;
import io.milton.http.ResourceFactory;
import io.milton.http.exceptions.BadRequestException;
import io.milton.http.exceptions.NotAuthorizedException;
import io.milton.resource.Resource;
import org.apache.ftpserver.ftplet.Authentication;
import org.apache.ftpserver.ftplet.AuthenticationFailedException;
import org.apache.ftpserver.ftplet.FtpException;
import org.apache.ftpserver.ftplet.User;
import org.apache.ftpserver.ftplet.UserManager;
import org.apache.ftpserver.usermanager.AnonymousAuthentication;
import org.apache.ftpserver.usermanager.UsernamePasswordAuthentication;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* Wraps a UserManager from apache FTP to provide a UserManager for
* milton
*
*
* @author brad
*/
public class UserManagerAdapter implements UserManager {
private static final Logger log = LoggerFactory.getLogger( UserManagerAdapter.class );
private final ResourceFactory resourceFactory;
private final UserService userService;
public UserManagerAdapter( ResourceFactory resourceFactory, UserService userLocator ) {
this.resourceFactory = resourceFactory;
this.userService = userLocator;
}
public MiltonUser getUserByName( String fqn ) throws FtpException {
NameAndAuthority naa = NameAndAuthority.parse( fqn );
if( naa.domain == null ) {
log.warn( "invalid login. no domain specified. use form: user#domain" );
return null;
}
return userService.getUserByName( naa.toMilton(), naa.domain );
}
public String[] getAllUserNames() throws FtpException {
return userService.getAllUserNames();
}
@Override
public void delete( String name ) throws FtpException {
userService.delete( name );
}
@Override
public void save( User user ) throws FtpException {
userService.save( (MiltonUser) user );
}
@Override
public boolean doesExist( String name ) throws FtpException {
return userService.doesExist( name );
}
@Override
public User authenticate( Authentication authentication ) throws AuthenticationFailedException {
if( authentication instanceof UsernamePasswordAuthentication ) {
UsernamePasswordAuthentication upa = (UsernamePasswordAuthentication) authentication;
String user = upa.getUsername();
String password = upa.getPassword();
log.debug( "authenticate: " + user );
NameAndAuthority naa = NameAndAuthority.parse( user );
if( naa.domain == null ) {
log.warn( "invalid login. no domain specified. use form: user#domain" );
return null;
}
Resource hostRoot;
try {
hostRoot = resourceFactory.getResource( naa.domain, "/" );
} catch (NotAuthorizedException | BadRequestException ex) {
throw new RuntimeException(ex);
}
if( hostRoot == null ) {
log.warn( "failed to find root for domain: " + naa.domain );
return null;
}
Object oUser = hostRoot.authenticate( naa.toMilton(), password );
if( oUser != null ) {
return new MiltonUser( oUser, naa.toMilton(), naa.domain );
} else {
log.debug( "authentication failed: " + user );
return null;
}
} else if( authentication instanceof AnonymousAuthentication ) {
log.debug( "anonymous login not supported" );
return null;
} else {
log.warn( "unknown authentication type: " + authentication.getClass() );
return null;
}
}
public String getAdminName() throws FtpException {
throw new UnsupportedOperationException( "Not supported yet." );
}
public boolean isAdmin( String arg0 ) throws FtpException {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy