jellyfin/Jellyfin.Api/Controllers/TimeSyncController.cs

35 lines
1.2 KiB
C#
Raw Normal View History

2020-11-21 14:26:03 +01:00
using System;
2020-07-15 16:15:17 +02:00
using MediaBrowser.Model.SyncPlay;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Api.Controllers
{
/// <summary>
/// The time sync controller.
/// </summary>
2020-08-06 16:17:45 +02:00
[Route("")]
2020-07-15 16:15:17 +02:00
public class TimeSyncController : BaseJellyfinApiController
{
/// <summary>
/// Gets the current UTC time.
2020-07-15 16:15:17 +02:00
/// </summary>
/// <response code="200">Time returned.</response>
/// <returns>An <see cref="UtcTimeResponse"/> to sync the client and server time.</returns>
2020-08-06 16:17:45 +02:00
[HttpGet("GetUtcTime")]
2020-07-15 16:15:17 +02:00
[ProducesResponseType(statusCode: StatusCodes.Status200OK)]
public ActionResult<UtcTimeResponse> GetUtcTime()
{
// Important to keep the following line at the beginning
2021-09-21 01:21:45 +02:00
var requestReceptionTime = DateTime.UtcNow;
2020-07-15 16:15:17 +02:00
// Important to keep the following line at the end
2021-09-21 01:21:45 +02:00
var responseTransmissionTime = DateTime.UtcNow;
2020-07-15 16:15:17 +02:00
// Implementing NTP on such a high level results in this useless
// information being sent. On the other hand it enables future additions.
return new UtcTimeResponse(requestReceptionTime, responseTransmissionTime);
2020-07-15 16:15:17 +02:00
}
}
}