mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-01-23 21:32:14 +08:00
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4045678
49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using System.Linq;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using Orchard.Blogs.Models;
|
|
using Orchard.Blogs.Services;
|
|
using Orchard.Blogs.ViewModels;
|
|
using Orchard.Core.Feeds;
|
|
using Orchard.Mvc.Results;
|
|
|
|
namespace Orchard.Blogs.Controllers {
|
|
public class BlogController : Controller {
|
|
private readonly IOrchardServices _services;
|
|
private readonly IBlogService _blogService;
|
|
private readonly IFeedManager _feedManager;
|
|
|
|
public BlogController(
|
|
IOrchardServices services,
|
|
IBlogService blogService,
|
|
IFeedManager feedManager) {
|
|
_services = services;
|
|
_blogService = blogService;
|
|
_feedManager = feedManager;
|
|
}
|
|
|
|
public ActionResult List() {
|
|
var model = new BlogsViewModel {
|
|
Blogs = _blogService.Get().Select(b => _services.ContentManager.BuildDisplayModel(b, "Summary"))
|
|
};
|
|
|
|
return View(model);
|
|
}
|
|
|
|
//TODO: (erikpo) Should move the slug parameter and get call and null check up into a model binder
|
|
public ActionResult Item(string blogSlug) {
|
|
Blog blog = _blogService.Get(blogSlug);
|
|
|
|
if (blog == null)
|
|
return new NotFoundResult();
|
|
|
|
var model = new BlogViewModel {
|
|
Blog = _services.ContentManager.BuildDisplayModel(blog, "Detail")
|
|
};
|
|
|
|
_feedManager.Register(blog);
|
|
|
|
return View(model);
|
|
}
|
|
}
|
|
} |