Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marcobraghim committed Oct 27, 2020
1 parent be96ceb commit 214f802
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions lib/src/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ import 'models/contrato.dart';
class Sigepweb {
///
/// Endpoint para caso de ambiente de testes
final _homEndpoint = 'https://apphom.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl';
final _homEndpoint =
'https://apphom.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl';

///
/// Endpoint para caso de ambiente de producao.
///
/// Este endpoint será usado quando [isDebug] for falso e nesse caso é necessário
/// informar o [contrato]
final _prodEndpoint = 'https://apps.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl';
final _prodEndpoint =
'https://apps.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl';

final bool isDebug;
final dio = Dio();
Expand All @@ -42,7 +44,8 @@ class Sigepweb {
this.isDebug = false,
}) {
if (contrato == null && !isDebug) {
throw SigepwebRuntimeError('Obrigatório informar o contrato ou estar em modo debug');
throw SigepwebRuntimeError(
'Obrigatório informar o contrato ou estar em modo debug');
}

if (isDebug) {
Expand Down Expand Up @@ -92,7 +95,8 @@ class Sigepweb {

// Efetiva a consulta
var resp = await dio.get('$endpoint/CalcPrecoPrazo', queryParameters: {
'nCdEmpresa': contrato.codAdmin.isEmpty ? '08082650' : contrato.codAdmin,
'nCdEmpresa':
contrato.codAdmin.isEmpty ? '08082650' : contrato.codAdmin,
'sDsSenha': contrato.senha.isEmpty ? '564321' : contrato.senha,
'nCdServico': servicosList.join(','),
'sCepOrigem': SgUtils.formataCEP(cepOrigem),
Expand Down Expand Up @@ -127,14 +131,17 @@ class Sigepweb {
if (apiResult['cResultado'] == null ||
apiResult['cResultado']['Servicos'] == null ||
apiResult['cResultado']['Servicos']['cServico'] == null) {
throw SigepwebRuntimeError('Xml result format isn\'t with expected format');
throw SigepwebRuntimeError(
'Xml result format isn\'t with expected format');
}

// Guarda o retorno em uma variavel para facilitar
var cServico = apiResult['cResultado']['Servicos']['cServico'];

// Verifica se houve retorno com erro
if (cServico is Map && cServico['Erro'] != null && cServico['Erro'] != '0') {
if (cServico is Map &&
cServico['Erro'] != null &&
cServico['Erro'] != '0') {
throw SigepwebRuntimeError(cServico['MsgErro']);
}

Expand Down Expand Up @@ -209,7 +216,8 @@ class Sigepweb {
xml2json.parse(response.body);
Map<String, dynamic> apiResult = json.decode(xml2json.toGData());

var soapBodyEnvelope = apiResult['soap\$Envelope']['soap\$Body']['ns2\$consultaCEPResponse'];
var soapBodyEnvelope =
apiResult['soap\$Envelope']['soap\$Body']['ns2\$consultaCEPResponse'];

if (soapBodyEnvelope['return'] == null) {
return ConsultaCepModel();
Expand Down

0 comments on commit 214f802

Please sign in to comment.