-
Notifications
You must be signed in to change notification settings - Fork 2
/
ServidorHttp.cs
213 lines (199 loc) · 9.27 KB
/
ServidorHttp.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
using System.Web;
class ServidorHttp
{
private TcpListener Controlador { get; set; }
private int Porta { get; set; }
private int QtdeRequests { get; set; }
public string HtmlExemplo { get; set; }
private SortedList<string, string> TiposMime { get; set; }
private SortedList<string, string> DiretoriosHosts { get; set; }
public ServidorHttp(int porta = 8080)
{
this.Porta = porta;
this.CriarHtmlExemplo();
this.PopularTiposMIME();
this.PopularDiretoriosHosts();
try
{
this.Controlador = new TcpListener(IPAddress.Parse("127.0.0.1"), this.Porta);
this.Controlador.Start();
Console.WriteLine($"Servidor HTTP está rodando na porta {this.Porta}.");
Console.WriteLine($"Para acessar, digite no navegador: http://localhost:{this.Porta}.");
Task servidorHttpTask = Task.Run(() => AguardarRequests());
servidorHttpTask.GetAwaiter().GetResult();
}
catch (Exception e)
{
Console.WriteLine($"Erro ao iniciar servidor na porta {this.Porta}:\n{e.Message}");
}
}
private async Task AguardarRequests()
{
while (true)
{
Socket conexao = await this.Controlador.AcceptSocketAsync();
this.QtdeRequests++;
Task task = Task.Run(() => ProcessarRequest(conexao, this.QtdeRequests));
}
}
private void ProcessarRequest(Socket conexao, int numeroRequest)
{
Console.WriteLine($"Processando request #{numeroRequest}...\n");
if (conexao.Connected)
{
byte[] bytesRequisicao = new byte[1024];
conexao.Receive(bytesRequisicao, bytesRequisicao.Length, 0);
string textoRequisicao = Encoding.UTF8.GetString(bytesRequisicao)
.Replace((char)0, ' ').Trim();
if (textoRequisicao.Length > 0)
{
Console.WriteLine($"\n{textoRequisicao}\n");
string[] linhas = textoRequisicao.Split("\r\n");
int iPrimeiroEspaco = linhas[0].IndexOf(' ');
int iSegundoEspaco = linhas[0].LastIndexOf(' ');
string metodoHttp = linhas[0].Substring(0, iPrimeiroEspaco);
string recursoBuscado = linhas[0].Substring(
iPrimeiroEspaco + 1, iSegundoEspaco - iPrimeiroEspaco - 1);
if (recursoBuscado == "/") recursoBuscado = "/index.html";
string textoParametros = recursoBuscado.Contains("?") ?
recursoBuscado.Split("?")[1] : "";
SortedList<string, string> parametros = ProcessarParametros(textoParametros);
string dadosPost = textoRequisicao.Contains("\r\n\r\n") ?
textoRequisicao.Split("\r\n\r\n")[1] : "";
if (!string.IsNullOrEmpty(dadosPost))
{
dadosPost = HttpUtility.UrlDecode(dadosPost, Encoding.UTF8);
var parametrosPost = ProcessarParametros(dadosPost);
foreach (var pp in parametrosPost)
parametros.Add(pp.Key, pp.Value);
}
recursoBuscado = recursoBuscado.Split("?")[0];
string versaoHttp = linhas[0].Substring(iSegundoEspaco + 1);
iPrimeiroEspaco = linhas[1].IndexOf(' ');
string nomeHost = linhas[1].Substring(iPrimeiroEspaco + 1);
byte[] bytesCabecalho = null;
byte[] bytesConteudo = null;
FileInfo fiArquivo = new FileInfo(ObterCaminhoFisicoArquivo(nomeHost, recursoBuscado));
if (fiArquivo.Exists)
{
if (TiposMime.ContainsKey(fiArquivo.Extension.ToLower()))
{
if (fiArquivo.Extension.ToLower() == ".dhtml")
bytesConteudo = GerarHTMLDinamico(fiArquivo.FullName, parametros, metodoHttp);
else
bytesConteudo = File.ReadAllBytes(fiArquivo.FullName);
string tipoMime = TiposMime[fiArquivo.Extension.ToLower()];
bytesCabecalho = GerarCabecalho(versaoHttp, tipoMime,
"200", bytesConteudo.Length);
}
else
{
bytesConteudo = Encoding.UTF8.GetBytes(
"<h1>Erro 415 - Tipo de arquivo não suportado.</h1>");
bytesCabecalho = GerarCabecalho(versaoHttp, "text/html;charset=utf-8",
"415", bytesConteudo.Length);
}
}
else
{
bytesConteudo = Encoding.UTF8.GetBytes(
"<h1>Erro 404 - Arquivo Não Encontrado</h1>");
bytesCabecalho = GerarCabecalho(versaoHttp, "text/html;charset=utf-8",
"404", bytesConteudo.Length);
}
int bytesEnviados = conexao.Send(bytesCabecalho, bytesCabecalho.Length, 0);
bytesEnviados += conexao.Send(bytesConteudo, bytesConteudo.Length, 0);
conexao.Close();
Console.WriteLine($"\n{bytesEnviados} bytes enviados em resposta à requisição #{numeroRequest}.");
}
}
Console.WriteLine($"\nRequest {numeroRequest} finalizado.");
}
public byte[] GerarCabecalho(string versaoHttp, string tipoMime,
string codigoHttp, int qtdeBytes = 0)
{
StringBuilder texto = new StringBuilder();
texto.Append($"{versaoHttp} {codigoHttp}{Environment.NewLine}");
texto.Append($"Server: Servidor Http Simples 1.0{Environment.NewLine}");
texto.Append($"Content-Type: {tipoMime}{Environment.NewLine}");
texto.Append($"Content-Length: {qtdeBytes}{Environment.NewLine}{Environment.NewLine}");
return Encoding.UTF8.GetBytes(texto.ToString());
}
private void CriarHtmlExemplo()
{
StringBuilder html = new StringBuilder();
html.Append("<!DOCTYPE html><html lang=\"pt-br\"><head><meta charset=\"UTF-8\">");
html.Append("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">");
html.Append("<title>Página Estática</title></head><body>");
html.Append("<h1>Página Estática</h1></body></html>");
this.HtmlExemplo = html.ToString();
}
private void PopularTiposMIME()
{
this.TiposMime = new SortedList<string, string>();
this.TiposMime.Add(".html", "text/html;charset=utf-8");
this.TiposMime.Add(".htm", "text/html;charset=utf-8");
this.TiposMime.Add(".css", "text/css");
this.TiposMime.Add(".js", "text/javascript");
this.TiposMime.Add(".png", "image/png");
this.TiposMime.Add(".jpg", "image/jpeg");
this.TiposMime.Add(".gif", "image/gif");
this.TiposMime.Add(".svg", "image/svg+xml");
this.TiposMime.Add(".webp", "image/webp");
this.TiposMime.Add(".ico", "image/ico");
this.TiposMime.Add(".woff", "font/woff");
this.TiposMime.Add(".woff2", "font/woff2");
this.TiposMime.Add(".dhtml", "text/html;charset=utf-8");
}
private void PopularDiretoriosHosts()
{
this.DiretoriosHosts = new SortedList<string, string>();
this.DiretoriosHosts.Add("localhost", "E:\\Projetos\\DotNet\\ServidorHttpSimples\\www\\localhost");
this.DiretoriosHosts.Add("maroquio.com", "E:\\Projetos\\DotNet\\ServidorHttpSimples\\www\\maroquio.com");
this.DiretoriosHosts.Add("quitandaonline.com.br", "E:\\YouTube\\QuitandaOnline");
}
public string ObterCaminhoFisicoArquivo(string host, string arquivo)
{
string diretorio = this.DiretoriosHosts[host.Split(":")[0]];
string caminhoArquivo = diretorio + arquivo.Replace("/", "\\");
return caminhoArquivo;
}
public byte[] GerarHTMLDinamico(string caminhoArquivo, SortedList<string, string> parametros, string metodoHttp)
{
FileInfo fiArquivo = new FileInfo(caminhoArquivo);
string nomeClassePagina = "Pagina" + fiArquivo.Name.Replace(fiArquivo.Extension, "");
Type tipoPaginaDinamica = Type.GetType(nomeClassePagina, true, true);
PaginaDinamica pd = Activator.CreateInstance(tipoPaginaDinamica) as PaginaDinamica;
pd.HtmlModelo = File.ReadAllText(caminhoArquivo);
switch (metodoHttp.ToLower())
{
case "get":
return pd.Get(parametros);
case "post":
return pd.Post(parametros);
default:
return new byte[0];
}
}
private SortedList<string, string> ProcessarParametros(string textoParametros)
{
SortedList<string, string> parametros = new SortedList<string, string>();
//v=Gm2pJfCJyUw&t=1000s
if (!string.IsNullOrEmpty(textoParametros.Trim()))
{
string[] paresChaveValor = textoParametros.Split("&");
foreach (var par in paresChaveValor)
{
parametros.Add(par.Split("=")[0].ToLower(), par.Split("=")[1]);
}
}
return parametros;
}
}