154 lines
11 KiB
C#
154 lines
11 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Oqtane.Documentation;
|
|
using Oqtane.Infrastructure;
|
|
using Oqtane.Models;
|
|
using Oqtane.Repository;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.SiteTemplates
|
|
{
|
|
[PrivateApi("Mark Site-Template classes as private, since it's not very useful in the public docs")]
|
|
public class DefaultSiteTemplate : ISiteTemplate
|
|
{
|
|
|
|
private readonly IWebHostEnvironment _environment;
|
|
private readonly ISiteRepository _siteRepository;
|
|
private readonly IFolderRepository _folderRepository;
|
|
private readonly IFileRepository _fileRepository;
|
|
|
|
public DefaultSiteTemplate(IWebHostEnvironment environment, ISiteRepository siteRepository, IFolderRepository folderRepository, IFileRepository fileRepository)
|
|
{
|
|
_environment = environment;
|
|
_siteRepository = siteRepository;
|
|
_folderRepository = folderRepository;
|
|
_fileRepository = fileRepository;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "Default Site Template"; }
|
|
}
|
|
|
|
public List<PageTemplate> CreateSite(Site site)
|
|
{
|
|
List<PageTemplate> _pageTemplates = new List<PageTemplate>();
|
|
|
|
_pageTemplates.Add(new PageTemplate
|
|
{
|
|
Name = "Home",
|
|
Parent = "",
|
|
Order = 1,
|
|
Path = "",
|
|
Icon = "oi oi-home",
|
|
IsNavigation = true,
|
|
IsPersonalizable = false,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Everyone, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
PageTemplateModules = new List<PageTemplateModule> {
|
|
new PageTemplateModule { ModuleDefinitionName = "Oqtane.Modules.HtmlText, Oqtane.Client", Title = "Welcome To Oqtane...", Pane = PaneNames.Default,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Everyone, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
Content = "<p><a href=\"https://www.oqtane.org\" target=\"_new\">Oqtane</a> is an open source <b>CMS</b> and <b>Application Framework</b> that provides advanced functionality for developing web, mobile, and desktop applications on .NET. It leverages Blazor to compose a <b>fully dynamic</b> digital experience. Whether you are looking for a platform to <b>accelerate your web development</b> efforts, or simply interested in exploring the anatomy of a large-scale Blazor application, Oqtane provides a solid foundation based on proven enterprise architectural principles and patterns.</p>" +
|
|
"<p align=\"center\"><a href=\"https://www.oqtane.org\" target=\"_new\"><img class=\"img-fluid\" src=\"oqtane-glow.png\"></a></p><p align=\"center\"><a class=\"btn btn-primary\" href=\"https://www.oqtane.org\" target=\"_new\">Join Our Community</a> <a class=\"btn btn-primary\" href=\"https://github.com/oqtane/oqtane.framework\" target=\"_new\">Clone Our Repo</a></p>" +
|
|
"<p><a href=\"https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor\" target=\"_new\">Blazor</a> is a modern front-end web framework based on HTML, CSS, and C# that helps you build web applications faster. Blazor provides a component-based architecture with server-side rendering and full client-side interactivity in a single solution, where you can switch between server-side and client-side rendering modes and even mix them in the same web page. For desktop or mobile scenarios, Blazor Hybrid is part of .NET MAUI and uses a Web View to render components natively on all modern devices.</p>" +
|
|
"<p>Blazor is a feature of <a href=\"https://dotnet.microsoft.com/apps/aspnet\" target=\"_new\">ASP.NET</a>, the popular cross platform development framework from Microsoft that provides powerful tools and libraries for building modern software applications.</p>"
|
|
},
|
|
new PageTemplateModule { ModuleDefinitionName = "Oqtane.Modules.HtmlText, Oqtane.Client", Title = "MIT License", Pane = PaneNames.Default,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Everyone, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
Content = "<p>Copyright (c) 2018-2025 .NET Foundation</p>" +
|
|
"<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>" +
|
|
"<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>" +
|
|
"<p>THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>"
|
|
},
|
|
new PageTemplateModule { ModuleDefinitionName = "Oqtane.Modules.HtmlText, Oqtane.Client", Title = "Secure Content", Pane = PaneNames.Default,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Registered, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
Content = "<p>Oqtane allows you to control access to your content using security roles. This module is only visible to Registered Users of the site.</p>"
|
|
}
|
|
}
|
|
});
|
|
_pageTemplates.Add(new PageTemplate
|
|
{
|
|
Name = "Private",
|
|
Parent = "",
|
|
Order = 3,
|
|
Path = "private",
|
|
Icon = "oi oi-lock-locked",
|
|
IsNavigation = true,
|
|
IsPersonalizable = false,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Registered, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
PageTemplateModules = new List<PageTemplateModule> {
|
|
new PageTemplateModule { ModuleDefinitionName = "Oqtane.Modules.HtmlText, Oqtane.Client", Title = "Secure Content", Pane = PaneNames.Default,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Registered, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
Content = "<p>Oqtane allows you to control access to your content using security roles. This page is only visible to Registered Users of the site.</p>"
|
|
}
|
|
}
|
|
});
|
|
_pageTemplates.Add(new PageTemplate
|
|
{
|
|
Name = "My Page",
|
|
Parent = "",
|
|
Order = 5,
|
|
Path = "mypage",
|
|
Icon = "oi oi-target",
|
|
IsNavigation = true,
|
|
IsPersonalizable = true,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Everyone, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
PageTemplateModules = new List<PageTemplateModule> {
|
|
new PageTemplateModule { ModuleDefinitionName = "Oqtane.Modules.HtmlText, Oqtane.Client", Title = "My Page", Pane = PaneNames.Default,
|
|
PermissionList = new List<Permission> {
|
|
new Permission(PermissionNames.View, RoleNames.Everyone, true),
|
|
new Permission(PermissionNames.View, RoleNames.Admin, true),
|
|
new Permission(PermissionNames.Edit, RoleNames.Admin, true)
|
|
},
|
|
Content = "<p>Oqtane offers native support for user personalized pages. If a page is identified as personalizable by the site administrator in the page settings, when an authenticated user visits the page they will see an edit button at the top right corner of the page next to their username. When they click this button the sytem will create a new version of the page and allow them to edit the page content.</p>"
|
|
}
|
|
}
|
|
});
|
|
|
|
if (System.IO.File.Exists(Path.Combine(_environment.WebRootPath, "images", "logo-white.png")))
|
|
{
|
|
string folderpath = Utilities.PathCombine(_environment.ContentRootPath, "Content", "Tenants", site.TenantId.ToString(), "Sites", site.SiteId.ToString(), Path.DirectorySeparatorChar.ToString());
|
|
System.IO.Directory.CreateDirectory(folderpath);
|
|
if (!System.IO.File.Exists(Path.Combine(folderpath, "logo-white.png")))
|
|
{
|
|
System.IO.File.Copy(Path.Combine(_environment.WebRootPath, "images", "logo-white.png"), Path.Combine(folderpath, "logo-white.png"));
|
|
}
|
|
Folder folder = _folderRepository.GetFolder(site.SiteId, "");
|
|
Oqtane.Models.File file = _fileRepository.AddFile(new Oqtane.Models.File { FolderId = folder.FolderId, Name = "logo-white.png", Extension = "png", Size = 8192, ImageHeight = 80, ImageWidth = 250 });
|
|
site.LogoFileId = file.FileId;
|
|
_siteRepository.UpdateSite(site);
|
|
}
|
|
|
|
return _pageTemplates;
|
|
}
|
|
}
|
|
}
|