63 lines
1.8 KiB
C#
63 lines
1.8 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System.Net;
|
|
using System.Net.Http.Headers;
|
|
|
|
namespace Wiking.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
public class WeatherForecastController : ControllerBase
|
|
{
|
|
private static readonly string[] Summaries = new[]
|
|
{
|
|
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
|
|
};
|
|
|
|
private readonly ILogger<WeatherForecastController> _logger;
|
|
|
|
public WeatherForecastController(ILogger<WeatherForecastController> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
[HttpGet(Name = "GetWeatherForecast")]
|
|
public IEnumerable<WeatherForecast> Get()
|
|
{
|
|
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
|
|
{
|
|
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
|
TemperatureC = Random.Shared.Next(-20, 55),
|
|
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
|
|
})
|
|
.ToArray();
|
|
}
|
|
|
|
[HttpGet]
|
|
[Route("api/schema")]
|
|
public HttpResponseMessage GetHtmlPage()
|
|
{
|
|
var htmlContent = @"<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ñõåìà ïîäêëþ÷åíèÿ</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 40px; }
|
|
h1 { color: #333; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Ñõåìà ïîäêëþ÷åíèÿ óñòðîéñòâà</h1>
|
|
<p>Ýòî HTML ñòðàíèöà, âîçâðàùàåìàÿ èç WebApi êîíòðîëëåðà</p>
|
|
<div>Çäåñü ìîæåò áûòü âàøà ñõåìà ïîäêëþ÷åíèÿ</div>
|
|
</body>
|
|
</html>";
|
|
|
|
var response = new HttpResponseMessage(HttpStatusCode.OK);
|
|
response.Content = new StringContent(htmlContent);
|
|
response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");
|
|
|
|
return response;
|
|
}
|
|
}
|
|
}
|