simplcommerce / SimplCommerce
- среда, 22 марта 2017 г. в 03:11:43
C#
A super simple, cross platform, modularized ecommerce system built on .NET Core
Build server | Platform | Status |
---|---|---|
AppVeyor | Windows | |
Travis | Linux / MacOS |
docker run --name simpldb -d postgres
docker run --name simplsite -d -p 5000:5000 --link simpldb:simpldb simplcommerce/nightly-build
The application is divided into modules. Each module contains all the stuff for itself to run including Controllers, Services, Views and even static files. If a module is no longer need, you can simply just delete it by a single click.
The SimplCommerce.WebHost is the ASP.NET Core project and act as the host. It will bootstrap the app and load all the modules it found in it's Modules folder. In the gulpfile.js, there is a "copy-modules" that is bound to 'AfterBuild' event of Visual Studio to copy /bin, /Views, /wwwroot in each module to the Modules folder in the WebHost.
During the application startup, the host will scan for all the *.dll in the Modules folder and load it up using AssemblyLoadContext. These assemblies then be registered to MVC Core by ApplicationPart
A ModuleViewLocationExpander is implemented to help the ViewEngine can find the right location for views in modules.
Static files (wwwroot) in each module is served by configuring the static files middleware as follows
// Serving static file for modules
foreach (var module in modules)
{
var wwwrootDir = new DirectoryInfo(Path.Combine(module.Path, "wwwroot"));
if (!wwwrootDir.Exists)
{
continue;
}
app.UseStaticFiles(new StaticFileOptions()
{
FileProvider = new PhysicalFileProvider(wwwrootDir.FullName),
RequestPath = new PathString("/" + module.ShortName)
});
}
Every domain entities need to inherit from Entity, then on the "OnModelCreating" method, we find them and register them to DbContext
private static void RegisterEntities(ModelBuilder modelBuilder, IEnumerable<Type> typeToRegisters)
{
var entityTypes = typeToRegisters.Where(x => x.GetTypeInfo().IsSubclassOf(typeof(Entity)) && !x.GetTypeInfo().IsAbstract);
foreach (var type in entityTypes)
{
modelBuilder.Entity(type);
}
}
By default domain entities is mapped by convention. In case you need to some special mapping for your model. You can create a class that implement the ICustomModelBuilder for example
public class CatalogCustomModelBuilder : ICustomModelBuilder
{
public void Build(ModelBuilder modelBuilder)
{
modelBuilder.Entity<ProductLink>()
.HasOne(x => x.Product)
.WithMany(p => p.ProductLinks)
.HasForeignKey(x => x.ProductId)
.OnDelete(DeleteBehavior.Restrict);
}
}
https://github.com/simplcommerce/SimplCommerce/wiki/Roadmap
SimplCommerce is licensed under the Apache 2.0 license.