mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-18 09:44:20 +08:00
108 lines
4.8 KiB
C#
108 lines
4.8 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web.Routing;
|
|
using JetBrains.Annotations;
|
|
using Orchard.Blogs.Models;
|
|
using Orchard.Blogs.Services;
|
|
using Orchard.ContentManagement;
|
|
using Orchard.ContentManagement.Drivers;
|
|
using Orchard.Core.Contents.ViewModels;
|
|
using Orchard.Core.ContentsLocation.Models;
|
|
using Orchard.Localization;
|
|
using Orchard.Mvc.ViewModels;
|
|
|
|
namespace Orchard.Blogs.Drivers {
|
|
[UsedImplicitly]
|
|
public class BlogDriver : ContentItemDriver<Blog> {
|
|
public IOrchardServices Services { get; set; }
|
|
|
|
public readonly static ContentType ContentType = new ContentType {
|
|
Name = "Blog",
|
|
DisplayName = "Blog"
|
|
};
|
|
|
|
private readonly IContentManager _contentManager;
|
|
private readonly IBlogPostService _blogPostService;
|
|
|
|
public BlogDriver(IOrchardServices services, IContentManager contentManager, IBlogPostService blogPostService) {
|
|
Services = services;
|
|
_contentManager = contentManager;
|
|
_blogPostService = blogPostService;
|
|
T = NullLocalizer.Instance;
|
|
}
|
|
|
|
public Localizer T { get; set; }
|
|
|
|
protected override ContentType GetContentType() {
|
|
return ContentType;
|
|
}
|
|
|
|
protected override string Prefix { get { return ""; } }
|
|
|
|
protected override string GetDisplayText(Blog item) {
|
|
return item.Name;
|
|
}
|
|
|
|
public override RouteValueDictionary GetDisplayRouteValues(Blog blog) {
|
|
return new RouteValueDictionary {
|
|
{"Area", "Orchard.Blogs"},
|
|
{"Controller", "Blog"},
|
|
{"Action", "Item"},
|
|
{"blogSlug", blog.Slug}
|
|
};
|
|
}
|
|
|
|
public override RouteValueDictionary GetEditorRouteValues(Blog blog) {
|
|
return new RouteValueDictionary {
|
|
{"Area", "Orchard.Blogs"},
|
|
{"Controller", "Blog"},
|
|
{"Action", "Edit"},
|
|
{"blogSlug", blog.Slug}
|
|
};
|
|
}
|
|
|
|
protected override DriverResult Display(Blog blog, string displayType) {
|
|
|
|
IEnumerable<ContentItemViewModel<BlogPost>> blogPosts = null;
|
|
if (displayType.StartsWith("DetailAdmin")) {
|
|
blogPosts = _blogPostService.Get(blog, VersionOptions.Latest)
|
|
.Select(bp => _contentManager.BuildDisplayModel(bp, "SummaryAdmin"));
|
|
}
|
|
else if (displayType.StartsWith("Detail")) {
|
|
blogPosts = _blogPostService.Get(blog)
|
|
.Select(bp => _contentManager.BuildDisplayModel(bp, "Summary"));
|
|
}
|
|
|
|
return Combined(
|
|
ContentItemTemplate("Items/Blogs.Blog").LongestMatch(displayType, "Summary", "DetailAdmin", "SummaryAdmin"),
|
|
ContentPartTemplate(blog, "Parts/Blogs.Blog.Manage").Location("manage"),
|
|
ContentPartTemplate(blog, "Parts/Blogs.Blog.Metadata").Location("metadata"),
|
|
ContentPartTemplate(blog, "Parts/Blogs.Blog.Description").Location("primary"),
|
|
blogPosts == null
|
|
? null
|
|
: ContentPartTemplate(
|
|
new ListContentsViewModel {
|
|
ContainerId = blog.Id,
|
|
Entries = blogPosts.Select(bp => new ListContentsViewModel.Entry {
|
|
ContentItem = bp.Item.ContentItem,
|
|
ContentItemMetadata = _contentManager.GetItemMetadata(bp.Item.ContentItem),
|
|
ViewModel = bp
|
|
}).ToList()
|
|
},
|
|
"Parts/Blogs.BlogPost.List",
|
|
"").LongestMatch(displayType, "DetailAdmin").Location("primary"));
|
|
}
|
|
|
|
protected override DriverResult Editor(Blog blog) {
|
|
var location = blog.GetLocation("Editor");
|
|
return Combined(
|
|
ContentItemTemplate("Items/Blogs.Blog"),
|
|
ContentPartTemplate(blog, "Parts/Blogs.Blog.Fields").Location(location));
|
|
}
|
|
|
|
protected override DriverResult Editor(Blog blog, IUpdateModel updater) {
|
|
updater.TryUpdateModel(blog, Prefix, null, null);
|
|
return Editor(blog);
|
|
}
|
|
}
|
|
} |