using Oqtane.Models; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using Oqtane.Documentation; using Oqtane.Shared; using Oqtane.Modules.Controls; namespace Oqtane.Services { [PrivateApi("Don't show in the documentation, as everything should use the Interface")] public class ModuleService : ServiceBase, IModuleService { public ModuleService(HttpClient http, SiteState siteState) : base(http, siteState) { } private string Apiurl => CreateApiUrl("Module"); public async Task> GetModulesAsync(int siteId) { return await GetJsonAsync>($"{Apiurl}?siteid={siteId}"); } public async Task GetModuleAsync(int moduleId) { return await GetJsonAsync($"{Apiurl}/{moduleId}"); } public async Task AddModuleAsync(Module module) { return await PostJsonAsync(Apiurl, module); } public async Task UpdateModuleAsync(Module module) { return await PutJsonAsync($"{Apiurl}/{module.ModuleId}", module); } public async Task DeleteModuleAsync(int moduleId) { await DeleteAsync($"{Apiurl}/{moduleId.ToString()}"); } public async Task ImportModuleAsync(int moduleId, int pageId, string content) { return await PostJsonAsync($"{Apiurl}/import?moduleid={moduleId}&pageid={pageId}", content); } public async Task ExportModuleAsync(int moduleId, int pageId) { return await GetStringAsync($"{Apiurl}/export?moduleid={moduleId}&pageid={pageId}"); } } }