This project is a UVE .NET example/base project and is intended to be used as a template for web projects looking to render dotCMS content and pages using .NET MVC and Razor templates. The example points to our demo site and is pulling the page, content, layout grid and other information from https://demo.dotcms.com
- Render dotCMS content and pages in a .NET application
- Uses C#, .NET MVC and Razor templates for views
- Service-based architecture for API interactions
The application is configured through the appsettings.json
file:
{
"dotCMS": {
"ApiHost": "https://demo.dotcms.com",
"ApiToken": "ABC123......",
"ApiUserName": "[email protected]",
"ApiPassword": "admin"
},
"proxy": [
{
"enabled": true,
"path": "/dA*",
"target": "https://demo.dotcms.com/dA"
},
{
"enabled": true,
"path": "/contentAsset*",
"target": "https://demo.dotcms.com/contentAsset"
}
]
}
The proxy
section configures the proxy feature, which forwards specific requests to dotCMS or other target servers. This is particularly useful for handling assets, images, and other resources that need to be served directly from dotCMS.
Each proxy configuration has the following properties:
enabled
: Boolean to enable/disable the proxypath
: The URI pattern to match (supports wildcards with *)target
: The target server URL to proxy to
For more details, see Proxy Documentation.
You can authenticate using either:
- An API token (preferred for production)
- Username and password
The application follows a clean architecture pattern:
- Models: Data models representing dotCMS entities (Page, Layout, Container, etc.)
- Services: Services for interacting with the dotCMS API
- Controllers: Controllers for handling HTTP requests
- Views: Razor views for rendering dotCMS pages
- DotCmsService: Service for interacting with the dotCMS API. This includes methods to call dotCMS APIs and the dotCMS graphQL endpoint.
- DotCmsUVEController: Controller for handling dotCMS page requests
- ProxyActionFilter: Action filter that proxies requests to dotCMS or other target servers based on configured paths
The DotCmsUVEController acts as a catchall/proxy for dotCMS pages. When a request is made to any path, the DotCmsUVEController
will:
- Forward the uri to the dotCMS Page API to get the Page response, which includes all data regarding the template, layout, content blocks and content and which can be used to composit a page.
- Parse the response into the appropriate models
- Render the page using the Razor view
- Caches the PageAPI response for up to 1 minute for performance.
The SDK includes custom TagHelpers to simplify common UI components:
This tag helper accepts a dotCMS contentlet object and passes the content data to a view for appropiate rendering and inclusion on a page. It accepts a Contentlet and based upon that Contentlet's content type, will look for an appropiate View
file under the /Views/ContentTypes
to use to render the content.
Things that could be improved - perhaps the ContentletTagHelper should also take the
These TagHelpers provide reusable header and footer components that can be conditionally displayed. The default content is defined in partial views:
Views/Shared/_HeaderExample.cshtml
- Default header contentViews/Shared/_FooterExample.cshtml
- Default footer content
Usage examples:
<!-- Basic usage with default content from partial views -->
<header-section show="@(layout?.Header == true)" title="My Site"></header-section>
<footer-section show="@(layout?.Footer == true)" copyright="My Site"></footer-section>
<!-- With custom content -->
<header-section show="@(layout?.Header == true)">
<div class="custom-header">
<h1>Welcome to My Site</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
</div>
</header-section>
Key features:
- Conditional rendering based on the
show
attribute - Default content loaded from partial views
- Support for custom content when provided between tags
- Customizable through attributes (
title
for header,copyright
for footer)
See Views/Shared/_TagHelperExamples.cshtml
for more detailed examples.
To run the application locally:
dotnet run
The application will be available at https://localhost:5001
.
This is a WIP and there is still a lot to do for this example to be complete. These include:
- Transform dotCMS Graphql Page API response so that it renders like the PageAPI does.
- Add the required
data-attr
for UVE and containers, content - Add include the uve-editor.js to "activate" uve when rendered in dotCMS
- Make content type components "container" aware - meaning look for the content type
View
under/Views/ContentTypes/{containerName}/{ContentType}.cshtml
and then fall back to/Views/ContentTypes/{ContentType}.cshtml
if a container specific view is not available.