Validate User API See merge request entgra/carbon-device-mgt!44merge-requests/46/head
commit
20ffbdc36d
@ -0,0 +1,74 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.wso2.carbon.device.mgt.jaxrs.beans;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.apache.http.HttpStatus;
|
||||||
|
import org.apache.http.util.TextUtils;
|
||||||
|
import org.wso2.carbon.device.mgt.jaxrs.exception.BadRequestException;
|
||||||
|
|
||||||
|
public class Credential {
|
||||||
|
|
||||||
|
private static final Log log = LogFactory.getLog(Credential.class);
|
||||||
|
|
||||||
|
private String username;
|
||||||
|
private String password;
|
||||||
|
private String tenantDomain;
|
||||||
|
|
||||||
|
public String getUsername() {
|
||||||
|
return username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUsername(String username) {
|
||||||
|
this.username = username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPassword() {
|
||||||
|
return password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPassword(String password) {
|
||||||
|
this.password = password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTenantDomain() {
|
||||||
|
return tenantDomain;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTenantDomain(String tenantDomain) {
|
||||||
|
this.tenantDomain = tenantDomain;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void validateRequest() {
|
||||||
|
if (TextUtils.isEmpty(getUsername())) {
|
||||||
|
String msg = "Error occurred while validating the user. Username is not found to validate the user";
|
||||||
|
log.error(msg);
|
||||||
|
throw new BadRequestException(
|
||||||
|
new ErrorResponse.ErrorResponseBuilder().setCode(HttpStatus.SC_BAD_REQUEST).setMessage(msg)
|
||||||
|
.build());
|
||||||
|
}
|
||||||
|
if (TextUtils.isEmpty(getPassword())) {
|
||||||
|
String msg = "Error occurred while validating the user. Password is not found to validate the user";
|
||||||
|
log.error(msg);
|
||||||
|
throw new BadRequestException(
|
||||||
|
new ErrorResponse.ErrorResponseBuilder().setCode(HttpStatus.SC_BAD_REQUEST).setMessage(msg)
|
||||||
|
.build());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?><api xmlns="http://ws.apache.org/ns/synapse" name="admin--OAuth2TokenManagement" context="/oauth2" version="1.0.0" version-type="context">
|
||||||
|
<resource methods="POST" uri-template="/introspect" faultSequence="fault">
|
||||||
|
<inSequence>
|
||||||
|
<property name="uri.var.portnum" expression="get-property('system','iot.core.https.port')"/>
|
||||||
|
<property name="uri.var.hostname" expression="get-property('system','iot.core.host')"/>
|
||||||
|
<property name="api.ut.backendRequestTime" expression="get-property('SYSTEM_TIME')"/>
|
||||||
|
<property name="AM_KEY_TYPE" value="PRODUCTION" scope="default"/>
|
||||||
|
<filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION">
|
||||||
|
<then>
|
||||||
|
<send>
|
||||||
|
<endpoint name="admin--OAuth2TokenManagement_APIproductionEndpoint_0">
|
||||||
|
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2"/>
|
||||||
|
<property name="ENDPOINT_ADDRESS" value="https://{uri.var.hostname}:{uri.var.portnum}/oauth2"/>
|
||||||
|
</endpoint>
|
||||||
|
</send>
|
||||||
|
</then>
|
||||||
|
<else>
|
||||||
|
<sequence key="_sandbox_key_error_"/>
|
||||||
|
</else>
|
||||||
|
</filter>
|
||||||
|
</inSequence>
|
||||||
|
<outSequence>
|
||||||
|
<class name="org.wso2.carbon.apimgt.gateway.handlers.analytics.APIMgtResponseHandler"/>
|
||||||
|
<send/>
|
||||||
|
</outSequence>
|
||||||
|
</resource>
|
||||||
|
</api>
|
@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?><api xmlns="http://ws.apache.org/ns/synapse" name="admin--UserValidateManagement" context="/api/device-mgt/v1.0/users/validate" version="1.0.0" version-type="context">
|
||||||
|
<resource methods="POST" uri-template="/" faultSequence="fault">
|
||||||
|
<inSequence>
|
||||||
|
<property name="uri.var.portnum" expression="get-property('system','iot.core.https.port')"/>
|
||||||
|
<property name="uri.var.hostname" expression="get-property('system','iot.core.host')"/>
|
||||||
|
<property name="api.ut.backendRequestTime" expression="get-property('SYSTEM_TIME')"/>
|
||||||
|
<property name="AM_KEY_TYPE" value="PRODUCTION" scope="default"/>
|
||||||
|
<filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION">
|
||||||
|
<then>
|
||||||
|
<send>
|
||||||
|
<endpoint name="admin--UserManagementValidateUser_APIproductionEndpoint_0">
|
||||||
|
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/api/device-mgt/v1.0/users/validate"/>
|
||||||
|
<property name="ENDPOINT_ADDRESS" value="https://{uri.var.hostname}:{uri.var.portnum}/api/device-mgt/v1.0/users/validate"/>
|
||||||
|
</endpoint>
|
||||||
|
</send>
|
||||||
|
</then>
|
||||||
|
<else>
|
||||||
|
<sequence key="_sandbox_key_error_"/>
|
||||||
|
</else>
|
||||||
|
</filter>
|
||||||
|
</inSequence>
|
||||||
|
<outSequence>
|
||||||
|
<class name="org.wso2.carbon.apimgt.gateway.handlers.analytics.APIMgtResponseHandler"/>
|
||||||
|
<send/>
|
||||||
|
</outSequence>
|
||||||
|
</resource>
|
||||||
|
</api>
|
Loading…
Reference in new issue