added cli sub command to encrypt passwords

This commit is contained in:
Sebastian Sdorra
2014-07-20 13:48:06 +02:00
parent 0203709821
commit 1db4359cb9
13 changed files with 498 additions and 2 deletions

View File

@@ -0,0 +1,80 @@
/**
* Copyright (c) 2010, Sebastian Sdorra All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer. 2. Redistributions in
* binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other
* materials provided with the distribution. 3. Neither the name of SCM-Manager;
* nor the names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
package sonia.scm.url;
//~--- non-JDK imports --------------------------------------------------------
import sonia.scm.util.HttpUtil;
/**
*
* @author Sebastian Sdorra
* @since 1.41
*/
public class RestSecurityUrlProvider implements SecurityUrlProvider
{
/** Field description */
private static final String PATH_ENCRYPT = "security/cipher/encrypt";
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*
*
* @param baseUrl
*/
public RestSecurityUrlProvider(String baseUrl)
{
this.baseUrl = baseUrl;
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @return
*/
@Override
public String getEncryptUrl()
{
return HttpUtil.append(baseUrl, PATH_ENCRYPT);
}
//~--- fields ---------------------------------------------------------------
/** Field description */
private final String baseUrl;
}

View File

@@ -130,6 +130,18 @@ public class RestUrlProvider implements UrlProvider
return new RestRepositoryUrlProvider(baseUrl, PART_REPOSITORIES, extension);
}
/**
* Method description
*
*
* @return
*/
@Override
public SecurityUrlProvider getSecurityUrlProvider()
{
return new RestSecurityUrlProvider(baseUrl);
}
/**
* Method description
*

View File

@@ -0,0 +1,49 @@
/**
* Copyright (c) 2010, Sebastian Sdorra All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer. 2. Redistributions in
* binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other
* materials provided with the distribution. 3. Neither the name of SCM-Manager;
* nor the names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
package sonia.scm.url;
/**
*
* @author Sebastian Sdorra
* @since 1.41
*/
public interface SecurityUrlProvider
{
/**
* Method description
*
*
* @return
*/
public String getEncryptUrl();
}

View File

@@ -72,6 +72,16 @@ public interface UrlProvider
*/
public RepositoryUrlProvider getRepositoryUrlProvider();
/**
* Method description
*
*
* @return
*
* @since 1.41
*/
public SecurityUrlProvider getSecurityUrlProvider();
/**
* Method description
*

View File

@@ -124,6 +124,19 @@ public class WUIUrlProvider implements UrlProvider
return new WUIRepositoryUrlProvider(baseUrl, COMPONENT_REPOSITORY);
}
/**
* Method description
*
*
* @return
*/
@Override
public SecurityUrlProvider getSecurityUrlProvider()
{
throw new UnsupportedOperationException(
"this provider does not support security url provider.");
}
/**
* Returns the baseUrl, because there is no state url.
*