-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
194 lines (156 loc) · 7.53 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Refit;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text.Json;
//using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace ExemploHttpClient
{
class Program
{
// Moedas, teste-unitario
private static readonly int opcao = 1;
static void Main(string[] args)
//static async Task Main(string[] args)
{
try
{
if (Program.opcao == 1)
{
Console.WriteLine("Clique para receber a lista de moedas");
Console.WriteLine("Consultando o web service");
HttpClient client = new HttpClient();
string BaseUrl = "https://olinda.bcb.gov.br/olinda/servico/PTAX/versao/v1/odata";
string action = "/Moedas?$format=json";
var dados = RetornaDados(BaseUrl + action, client).Result;
var moeda = JsonConvert.DeserializeObject<MoedaResponse>(dados);
var listMoeda = moeda.value;
foreach (var item in listMoeda)
{
Console.WriteLine("Símbolo: " + item.Simbolo);
Console.WriteLine("Nome Formatado: " + item.NomeFormatado);
Console.WriteLine("Tipo Moeda: " + item.TipoMoeda);
Console.WriteLine("");
}
}
else if (Program.opcao == 2)
{
Console.WriteLine("Clique para receber a lista de moedas");
Console.WriteLine("Consultando o web service");
string BaseUrl = "https://olinda.bcb.gov.br/olinda/servico/PTAX/versao/v1/odata";
string action = "/Moedas?$format=json";
var dados = ProcessRepositories(BaseUrl, action).Result;
var moeda = JsonConvert.DeserializeObject<MoedaResponse>(dados);
var listMoeda = moeda.value;
Console.WriteLine("Mostrando os resultados:");
foreach (var item in listMoeda)
{
Console.WriteLine("Símbolo: " + item.Simbolo);
Console.WriteLine("Nome Formatado: " + item.NomeFormatado);
Console.WriteLine("Tipo Moeda: " + item.TipoMoeda);
Console.WriteLine("");
}
}
else if (Program.opcao == 3)
{
Console.WriteLine("Clique para receber a lista de moedas");
Console.WriteLine("Consultando o web service");
string BaseUrl = "https://olinda.bcb.gov.br/olinda/servico/PTAX/versao/v1/odata";
string action = "/Moedas?$format=json";
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, BaseUrl + action);
HttpResponseMessage response = HttpInstance.GetHttpClientInstance().SendAsync(request).Result;
var moeda = JsonConvert.DeserializeObject<MoedaResponse>(response.Content.ReadAsStringAsync().Result);
var listMoeda = moeda.value;
foreach (var item in listMoeda)
{
Console.WriteLine("Símbolo: " + item.Simbolo);
Console.WriteLine("Nome Formatado: " + item.NomeFormatado);
Console.WriteLine("Tipo Moeda: " + item.TipoMoeda);
Console.WriteLine("");
}
//JArray moeda = (JArray)JObject.Parse(response.Content.ReadAsStringAsync().Result)["@odata.context"];
}
else
{
Console.WriteLine("Clique para receber a lista de moedas");
Console.WriteLine("Consultando o web service");
string BaseUrl = "https://olinda.bcb.gov.br/olinda/servico/PTAX/versao/v1/odata";
string action = "/Moedas?$format=json";
var dados = ConsultarMoeda(BaseUrl + action).Result;
var moeda = JsonConvert.DeserializeObject<MoedaResponse>(dados);
var listMoeda = moeda.value;
foreach (var item in listMoeda)
{
Console.WriteLine("Símbolo: " + item.Simbolo);
Console.WriteLine("Nome Formatado: " + item.NomeFormatado);
Console.WriteLine("Tipo Moeda: " + item.TipoMoeda);
Console.WriteLine("");
}
}
Console.ReadKey();
}
catch (Exception e)
{
Console.WriteLine("Erro na consulta da moeda\n" + e.Message);
}
}
/*
private static async Task<List<MoedaResponse>> ProcessRepositories(string url, string action)
{
//throw new NotImplementedException();
var options = new JsonSerializerOptions()
{
NumberHandling = JsonNumberHandling.AllowReadingFromString |
JsonNumberHandling.WriteAsString
};
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Add("User-Agent", ".NET Foundation Repository Reporter");
client.DefaultRequestHeaders.Add("accept", "application/json;odata.metadata=minimal");
var streamTask = client.GetStreamAsync($"{url}" + action);
var moedas = await JsonSerializer.DeserializeAsync<List<MoedaResponse>>(await streamTask, options);
return moedas;
}
*/
#region Opcao 1
private static async Task<string> RetornaDados(string url, HttpClient client)
{
HttpResponseMessage response = await client.GetAsync(url);
string result = string.Empty;
if (response.IsSuccessStatusCode)
result = await response.Content.ReadAsStringAsync();
return result;
}
#endregion Opcao 1
#region Opcao 2
private static async Task<string> ProcessRepositories(string url, string action)
{
//throw new NotImplementedException();
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Add("User-Agent", ".NET Foundation Repository Reporter");
client.DefaultRequestHeaders.Add("accept", "application/json;odata.metadata=minimal");
var stringTask = client.GetStringAsync(url + action);
var msg = await stringTask;
return msg;
}
#endregion Opcao 2
#region Opcao 4
private static async Task<string> ConsultarMoeda(string url)
{
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, url);
HttpResponseMessage response = HttpInstance.GetHttpClientInstance().SendAsync(request).Result;
var retorno = await response.Content.ReadAsStringAsync();
return retorno;
}
#endregion Opcao 4
}
}