38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using SptCommon.Annotations;
|
|
using Core.Controllers;
|
|
using Core.Models.Eft.Common;
|
|
using Core.Utils;
|
|
|
|
namespace Core.Callbacks;
|
|
|
|
[Injectable]
|
|
public class WeatherCallbacks(
|
|
HttpResponseUtil _httpResponseUtil,
|
|
WeatherController _weatherController
|
|
)
|
|
{
|
|
/// <summary>
|
|
/// Handle client/weather
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
/// <param name="info"></param>
|
|
/// <param name="sessionID"></param>
|
|
/// <returns></returns>
|
|
public string GetWeather(string url, EmptyRequestData info, string sessionID)
|
|
{
|
|
return _httpResponseUtil.GetBody(_weatherController.Generate());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle client/localGame/weather
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
/// <param name="info"></param>
|
|
/// <param name="sessionID"></param>
|
|
/// <returns></returns>
|
|
public string GetLocalWeather(string url, EmptyRequestData info, string sessionID)
|
|
{
|
|
return _httpResponseUtil.GetBody(_weatherController.GenerateLocal(sessionID));
|
|
}
|
|
}
|