-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
13 changed files
with
226 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
310 changes: 177 additions & 133 deletions
310
NutrIF_Service/src/br/edu/ifpb/nutrif/controller/PessoaController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,133 +1,177 @@ | ||
package br.edu.ifpb.nutrif.controller; | ||
|
||
import java.io.UnsupportedEncodingException; | ||
import java.util.Date; | ||
|
||
import javax.annotation.security.PermitAll; | ||
import javax.ws.rs.Consumes; | ||
import javax.ws.rs.POST; | ||
import javax.ws.rs.Path; | ||
import javax.ws.rs.Produces; | ||
import javax.ws.rs.core.Response; | ||
import javax.ws.rs.core.Response.ResponseBuilder; | ||
|
||
import br.edu.ifpb.nutrif.dao.LoginDAO; | ||
import br.edu.ifpb.nutrif.dao.PessoaDAO; | ||
import br.edu.ifpb.nutrif.exception.ErrorFactory; | ||
import br.edu.ifpb.nutrif.exception.SQLExceptionNutrIF; | ||
import br.edu.ifpb.nutrif.validation.Validate; | ||
import br.edu.ladoss.entity.Error; | ||
import br.edu.ladoss.entity.Login; | ||
import br.edu.ladoss.entity.Pessoa; | ||
import br.edu.ladoss.entity.PessoaAcesso; | ||
|
||
@Path("pessoa") | ||
public class PessoaController { | ||
|
||
/** | ||
* Login para Pessoa. Retorna a chave de autenticação caso o usuário esteja | ||
* com o e-mail e senha corretos. | ||
* | ||
* @param pessoaAcesso | ||
* @return | ||
*/ | ||
@PermitAll | ||
@POST | ||
@Path("/login") | ||
@Consumes("application/json") | ||
@Produces("application/json") | ||
public Response login(PessoaAcesso pessoaAcesso) { | ||
|
||
ResponseBuilder builder = Response.status(Response.Status.BAD_REQUEST); | ||
builder.expires(new Date()); | ||
|
||
// Validação dos dados de entrada. | ||
int validacao = Validate.acessoPessoa(pessoaAcesso); | ||
|
||
if (validacao == Validate.VALIDATE_OK) { | ||
|
||
try { | ||
|
||
//Login Pessoa. | ||
Pessoa pessoa = PessoaDAO.getInstance().login( | ||
pessoaAcesso.getEmail(), | ||
pessoaAcesso.getSenha()); | ||
|
||
if (pessoa != null) { | ||
|
||
// Registro do Login | ||
Date agora = new Date(); | ||
|
||
Login login = new Login(); | ||
login.setPessoa(pessoa); | ||
login.setRegistro(agora); | ||
|
||
// Registro de Login para a Pessoa. | ||
LoginDAO.getInstance().insert(login); | ||
|
||
// Pessoa | ||
pessoaAcesso = PessoaAcesso.getInstance( | ||
pessoa); | ||
|
||
// Operação realizada com sucesso. | ||
builder.status(Response.Status.OK); | ||
builder.entity(pessoaAcesso); | ||
|
||
} else { | ||
|
||
builder.status(Response.Status.UNAUTHORIZED); | ||
} | ||
|
||
} catch (SQLExceptionNutrIF exception) { | ||
|
||
builder.status(Response.Status.INTERNAL_SERVER_ERROR).entity( | ||
exception.getError()); | ||
|
||
} catch (UnsupportedEncodingException | ||
exception) { | ||
|
||
builder.status(Response.Status.INTERNAL_SERVER_ERROR).entity( | ||
ErrorFactory.getErrorFromIndex( | ||
ErrorFactory.IMPOSSIVEL_CRIPTOGRAFAR_VALOR)); | ||
} | ||
|
||
} else { | ||
|
||
Error erro = ErrorFactory.getErrorFromIndex(validacao); | ||
builder.status(Response.Status.NOT_ACCEPTABLE).entity(erro); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
|
||
/** | ||
* Reiniciar senha para aluno e funcionário. | ||
* | ||
* @param pessoaAcesso | ||
* @return | ||
*/ | ||
@PermitAll | ||
@POST | ||
@Path("/login") | ||
@Consumes("application/json") | ||
@Produces("application/json") | ||
public Response requestResetSenha(PessoaAcesso pessoaAcesso) { | ||
return null; | ||
} | ||
|
||
/** | ||
* Reiniciar senha para aluno e funcionário. | ||
* | ||
* @param pessoaAcesso | ||
* @return | ||
*/ | ||
@PermitAll | ||
@POST | ||
@Path("/login") | ||
@Consumes("application/json") | ||
@Produces("application/json") | ||
public Response resetSenha(PessoaAcesso pessoaAcesso) { | ||
return null; | ||
} | ||
} | ||
package br.edu.ifpb.nutrif.controller; | ||
|
||
import java.io.UnsupportedEncodingException; | ||
import java.util.Date; | ||
|
||
import javax.annotation.security.PermitAll; | ||
import javax.ws.rs.Consumes; | ||
import javax.ws.rs.POST; | ||
import javax.ws.rs.Path; | ||
import javax.ws.rs.Produces; | ||
import javax.ws.rs.core.Response; | ||
import javax.ws.rs.core.Response.ResponseBuilder; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
|
||
import br.edu.ifpb.nutrif.dao.LoginDAO; | ||
import br.edu.ifpb.nutrif.dao.PessoaDAO; | ||
import br.edu.ifpb.nutrif.exception.ErrorFactory; | ||
import br.edu.ifpb.nutrif.exception.SQLExceptionNutrIF; | ||
import br.edu.ifpb.nutrif.validation.Validate; | ||
import br.edu.ladoss.entity.Error; | ||
import br.edu.ladoss.entity.Login; | ||
import br.edu.ladoss.entity.Pessoa; | ||
import br.edu.ladoss.entity.PessoaAcesso; | ||
|
||
@Path("pessoa") | ||
public class PessoaController { | ||
|
||
private static Logger logger = LogManager.getLogger(PessoaController.class); | ||
|
||
/** | ||
* Login para Pessoa. Retorna a chave de autenticação caso o usuário esteja | ||
* com o e-mail e senha corretos. | ||
* | ||
* @param pessoaAcesso | ||
* @return | ||
*/ | ||
@PermitAll | ||
@POST | ||
@Path("/login") | ||
@Consumes("application/json") | ||
@Produces("application/json") | ||
public Response login(PessoaAcesso pessoaAcesso) { | ||
|
||
ResponseBuilder builder = Response.status(Response.Status.BAD_REQUEST); | ||
builder.expires(new Date()); | ||
|
||
logger.info("Login usuário"); | ||
|
||
// Validação dos dados de entrada. | ||
int validacao = Validate.acessoPessoa(pessoaAcesso); | ||
|
||
if (validacao == Validate.VALIDATE_OK) { | ||
|
||
try { | ||
|
||
//Login Pessoa. | ||
Pessoa pessoa = PessoaDAO.getInstance().login( | ||
pessoaAcesso.getEmail(), | ||
pessoaAcesso.getSenha()); | ||
|
||
if (pessoa != null) { | ||
|
||
// Registro do Login | ||
Date agora = new Date(); | ||
|
||
Login login = new Login(); | ||
login.setPessoa(pessoa); | ||
login.setRegistro(agora); | ||
|
||
// Registro de Login para a Pessoa. | ||
LoginDAO.getInstance().insert(login); | ||
|
||
// Pessoa | ||
pessoaAcesso = PessoaAcesso.getInstance( | ||
pessoa); | ||
|
||
// Operação realizada com sucesso. | ||
builder.status(Response.Status.OK); | ||
builder.entity(pessoaAcesso); | ||
|
||
} else { | ||
|
||
builder.status(Response.Status.UNAUTHORIZED); | ||
} | ||
|
||
} catch (SQLExceptionNutrIF exception) { | ||
|
||
builder.status(Response.Status.INTERNAL_SERVER_ERROR).entity( | ||
exception.getError()); | ||
|
||
} catch (UnsupportedEncodingException | ||
exception) { | ||
|
||
builder.status(Response.Status.INTERNAL_SERVER_ERROR).entity( | ||
ErrorFactory.getErrorFromIndex( | ||
ErrorFactory.IMPOSSIVEL_CRIPTOGRAFAR_VALOR)); | ||
} | ||
|
||
} else { | ||
|
||
Error erro = ErrorFactory.getErrorFromIndex(validacao); | ||
builder.status(Response.Status.NOT_ACCEPTABLE).entity(erro); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
/** | ||
* Gerar e-mail com url para reinicialização da senha para aluno e funcionário. | ||
* | ||
* @param pessoaAcesso | ||
* @return | ||
*/ | ||
@PermitAll | ||
@POST | ||
@Path("/login/request") | ||
@Consumes("application/json") | ||
@Produces("application/json") | ||
public Response requestResetSenha(PessoaAcesso pessoaAcesso) { | ||
|
||
ResponseBuilder builder = Response.status(Response.Status.BAD_REQUEST); | ||
builder.expires(new Date()); | ||
|
||
logger.info("Reset senha usuário"); | ||
|
||
//TODO: Validação dos dados de entrada. | ||
int validacao = Validate.VALIDATE_OK; | ||
|
||
if (validacao == Validate.VALIDATE_OK) { | ||
|
||
//TODO: Mudar senha do usuário. | ||
|
||
} else { | ||
|
||
Error erro = ErrorFactory.getErrorFromIndex(validacao); | ||
builder.status(Response.Status.NOT_ACCEPTABLE).entity(erro); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
/** | ||
* Reiniciar senha para aluno e funcionário. | ||
* | ||
* @param pessoaAcesso | ||
* @return | ||
*/ | ||
@PermitAll | ||
@POST | ||
@Path("/login/reset") | ||
@Consumes("application/json") | ||
@Produces("application/json") | ||
public Response resetSenha(PessoaAcesso pessoaAcesso) { | ||
|
||
ResponseBuilder builder = Response.status(Response.Status.BAD_REQUEST); | ||
builder.expires(new Date()); | ||
|
||
logger.info("Reset senha usuário"); | ||
|
||
//TODO: Validação dos dados de entrada. | ||
int validacao = Validate.VALIDATE_OK; | ||
|
||
if (validacao == Validate.VALIDATE_OK) { | ||
|
||
//TODO: Mudar senha do usuário. | ||
|
||
} else { | ||
|
||
Error erro = ErrorFactory.getErrorFromIndex(validacao); | ||
builder.status(Response.Status.NOT_ACCEPTABLE).entity(erro); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.