From c6fdf82486a16a3d9fa636ceda87985edd6a66c0 Mon Sep 17 00:00:00 2001 From: Uncled1023 Date: Wed, 23 Dec 2015 22:36:33 -0800 Subject: [PATCH] Fixed blog errors. --- Teknik/Areas/Blog/BlogAreaRegistration.cs | 2 + .../Areas/Blog/Controllers/BlogController.cs | 68 ++++++++++++------- Teknik/Areas/Blog/Models/Post.cs | 2 + Teknik/Areas/Blog/ViewModels/PostViewModel.cs | 3 + Teknik/Areas/Blog/Views/Blog/Blog.cshtml | 2 +- Teknik/Areas/Blog/Views/Blog/ViewPost.cshtml | 4 +- .../Areas/Home/Controllers/HomeController.cs | 4 +- .../Profile/Controllers/ProfileController.cs | 4 +- .../Areas/Profile/Views/Profile/Index.cshtml | 9 +-- Teknik/Configuration/Config.cs | 18 ++++- 10 files changed, 75 insertions(+), 41 deletions(-) diff --git a/Teknik/Areas/Blog/BlogAreaRegistration.cs b/Teknik/Areas/Blog/BlogAreaRegistration.cs index 495784a..29406a2 100644 --- a/Teknik/Areas/Blog/BlogAreaRegistration.cs +++ b/Teknik/Areas/Blog/BlogAreaRegistration.cs @@ -61,6 +61,8 @@ namespace Teknik.Areas.Blog // Register Script Bundles BundleTable.Bundles.Add(new ScriptBundle("~/bundles/blog").Include( "~/Scripts/ocupload/1.1.2/ocupload.js", + "~/Scripts/PageDown/Markdown.Converter.js", + "~/Scripts/PageDown/Markdown.Sanitizer.js", "~/Scripts/bootstrap/markdown/bootstrap-markdown.js", "~/Scripts/bootbox/bootbox.min.js", "~/Areas/Blog/Scripts/Blog.js")); diff --git a/Teknik/Areas/Blog/Controllers/BlogController.cs b/Teknik/Areas/Blog/Controllers/BlogController.cs index e566fde..ca8458f 100644 --- a/Teknik/Areas/Blog/Controllers/BlogController.cs +++ b/Teknik/Areas/Blog/Controllers/BlogController.cs @@ -23,44 +23,50 @@ namespace Teknik.Areas.Blog.Controllers [AllowAnonymous] public ActionResult Blog(string username) { - Models.Blog blog = null; BlogViewModel model = new BlogViewModel(); // The blog is the main site's blog if (string.IsNullOrEmpty(username)) { ViewBag.Title = "Teknik Blog - " + Config.Title; - var blogs = db.Blogs.Include("User").Where(p => (p.BlogId == Constants.SERVERBLOGID)); - if (blogs != null && blogs.Any()) - { - blog = blogs.First(); - blog.Title = Config.BlogConfig.Title; - blog.Description = Config.BlogConfig.Description; - } + var foundPosts = (User.IsInRole("Admin")) ? db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.System)) + : db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.System && p.Published)); + model = new BlogViewModel(); + model.BlogId = Constants.SERVERBLOGID; + + User user = (User.IsInRole("Admin")) ? db.Users.Where(u => u.Username == User.Identity.Name).First() : null; + model.UserId = (user != null) ? user.UserId : 0; + model.User = user; + model.Title = Config.BlogConfig.Title; + model.Description = Config.BlogConfig.Description; + model.HasPosts = (foundPosts != null && foundPosts.Any()); + + return View(model); } else // A user specific blog { - var blogs = db.Blogs.Include("User").Where(p => p.User.Username == username && p.BlogId != Constants.SERVERBLOGID); + Models.Blog blog = null; + var blogs = db.Blogs.Include("User").Where(p => p.User.Username == username); if (blogs.Any()) { blog = blogs.First(); ViewBag.Title = blog.User.Username + "'s Blog - " + Config.Title; } - } - // find the blog specified - if (blog != null) - { - var foundPosts = (User.IsInRole("Admin")) ? db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.BlogId == blog.BlogId)) - : db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.BlogId == blog.BlogId) && - (p.Published || p.Blog.User.Username == User.Identity.Name)); - model = new BlogViewModel(); - model.BlogId = blog.BlogId; - model.UserId = blog.UserId; - model.User = blog.User; - model.Title = blog.Title; - model.Description = blog.Description; - model.HasPosts = (foundPosts != null && foundPosts.Any()); + // find the blog specified + if (blog != null) + { + var foundPosts = (User.IsInRole("Admin")) ? db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.BlogId == blog.BlogId && !p.System)) + : db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.BlogId == blog.BlogId && !p.System) && + (p.Published || p.Blog.User.Username == User.Identity.Name)); + model = new BlogViewModel(); + model.BlogId = blog.BlogId; + model.UserId = blog.UserId; + model.User = blog.User; + model.Title = blog.Title; + model.Description = blog.Description; + model.HasPosts = (foundPosts != null && foundPosts.Any()); - return View(model); + return View(model); + } } model.Error = true; return View(model); @@ -93,8 +99,8 @@ namespace Teknik.Areas.Blog.Controllers [AllowAnonymous] public ActionResult GetPosts(int blogID, int startPostID, int count) { - var posts = (User.IsInRole("Admin")) ? db.Posts.Include("Blog").Include("Blog.User").Where(p => p.BlogId == blogID).OrderByDescending(p => p.DatePosted).Skip(startPostID).Take(count).ToList() - : db.Posts.Include("Blog").Include("Blog.User").Where(p => (p.BlogId == blogID) && (p.Published || p.Blog.User.Username == User.Identity.Name) + var posts = (User.IsInRole("Admin")) ? db.Posts.Include("Blog").Include("Blog.User").Where(p => ((p.BlogId == blogID && !p.System) || (p.System && blogID == Constants.SERVERBLOGID))).OrderByDescending(p => p.DatePosted).Skip(startPostID).Take(count).ToList() + : db.Posts.Include("Blog").Include("Blog.User").Where(p => ((p.BlogId == blogID && !p.System) || (p.System && blogID == Constants.SERVERBLOGID)) && (p.Published || p.Blog.User.Username == User.Identity.Name) ).OrderByDescending(p => p.DatePosted).Skip(startPostID).Take(count).ToList(); List postViews = new List(); if (posts != null) @@ -141,10 +147,20 @@ namespace Teknik.Areas.Blog.Controllers { if (ModelState.IsValid) { + bool system = (blogID == Constants.SERVERBLOGID); + if (system) + { + var user = db.Blogs.Include("User").Where(b => b.User.Username == User.Identity.Name); + if (user != null) + { + blogID = user.First().BlogId; + } + } Post post = db.Posts.Create(); post.BlogId = blogID; post.Title = title; post.Article = article; + post.System = system; post.DatePosted = DateTime.Now; post.DatePublished = DateTime.Now; diff --git a/Teknik/Areas/Blog/Models/Post.cs b/Teknik/Areas/Blog/Models/Post.cs index 43530d3..00266cb 100644 --- a/Teknik/Areas/Blog/Models/Post.cs +++ b/Teknik/Areas/Blog/Models/Post.cs @@ -12,6 +12,8 @@ namespace Teknik.Areas.Blog.Models public Blog Blog { get; set; } + public bool System { get; set; } + public DateTime DatePosted { get; set; } public DateTime DatePublished { get; set; } diff --git a/Teknik/Areas/Blog/ViewModels/PostViewModel.cs b/Teknik/Areas/Blog/ViewModels/PostViewModel.cs index de22ef9..16da06e 100644 --- a/Teknik/Areas/Blog/ViewModels/PostViewModel.cs +++ b/Teknik/Areas/Blog/ViewModels/PostViewModel.cs @@ -16,6 +16,8 @@ namespace Teknik.Areas.Blog.ViewModels public Models.Blog Blog { get; set; } + public bool System { get; set; } + public DateTime DatePosted { get; set; } public DateTime DatePublished { get; set; } @@ -35,6 +37,7 @@ namespace Teknik.Areas.Blog.ViewModels BlogId = post.BlogId; PostId = post.PostId; Blog = post.Blog; + System = post.System; DatePosted = post.DatePosted; Published = post.Published; DatePublished = post.DatePublished; diff --git a/Teknik/Areas/Blog/Views/Blog/Blog.cshtml b/Teknik/Areas/Blog/Views/Blog/Blog.cshtml index e86e7a2..354e0d5 100644 --- a/Teknik/Areas/Blog/Views/Blog/Blog.cshtml +++ b/Teknik/Areas/Blog/Views/Blog/Blog.cshtml @@ -41,7 +41,7 @@

- if (Model.User.Username == User.Identity.Name) + if (User.IsInRole("Admin") || (Model.User != null && Model.User.Username == User.Identity.Name)) {
diff --git a/Teknik/Areas/Blog/Views/Blog/ViewPost.cshtml b/Teknik/Areas/Blog/Views/Blog/ViewPost.cshtml index a78b0f8..bda7f75 100644 --- a/Teknik/Areas/Blog/Views/Blog/ViewPost.cshtml +++ b/Teknik/Areas/Blog/Views/Blog/ViewPost.cshtml @@ -28,7 +28,7 @@
@if (Model != null) { - if (Model.Blog.User.Username == User.Identity.Name) + if (User.IsInRole("Admin") || Model.Blog.User.Username == User.Identity.Name) {