47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using Oqtane.Models;
|
|
using System.Threading.Tasks;
|
|
using System.Net.Http;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public class JobLogService : ServiceBase, IJobLogService
|
|
{
|
|
private readonly SiteState _siteState;
|
|
|
|
public JobLogService(HttpClient http, SiteState siteState) : base(http)
|
|
{
|
|
_siteState = siteState;
|
|
}
|
|
|
|
private string Apiurl => CreateApiUrl("JobLog", _siteState.Alias);
|
|
|
|
public async Task<List<JobLog>> GetJobLogsAsync()
|
|
{
|
|
List<JobLog> joblogs = await GetJsonAsync<List<JobLog>>(Apiurl);
|
|
return joblogs.OrderBy(item => item.StartDate).ToList();
|
|
}
|
|
|
|
public async Task<JobLog> GetJobLogAsync(int jobLogId)
|
|
{
|
|
return await GetJsonAsync<JobLog>($"{Apiurl}/{jobLogId}");
|
|
}
|
|
|
|
public async Task<JobLog> AddJobLogAsync(JobLog joblog)
|
|
{
|
|
return await PostJsonAsync<JobLog>(Apiurl, joblog);
|
|
}
|
|
|
|
public async Task<JobLog> UpdateJobLogAsync(JobLog joblog)
|
|
{
|
|
return await PutJsonAsync<JobLog>($"{Apiurl}/{joblog.JobLogId}", joblog);
|
|
}
|
|
public async Task DeleteJobLogAsync(int jobLogId)
|
|
{
|
|
await DeleteAsync($"{Apiurl}/{jobLogId}");
|
|
}
|
|
}
|
|
}
|