mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Adding ability to remove draft and adding grouping to SummaryAdmin content menu, see #2661 and #2662
These two issues are tightly connected so better to address them at once.
This commit is contained in:
parent
46c3fe6e79
commit
5d835ab8a3
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Reflection;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
@ -424,6 +425,33 @@ namespace Orchard.Core.Contents.Controllers {
|
||||
return this.RedirectLocal(returnUrl, () => RedirectToAction("List"));
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public ActionResult DiscardDraft(int id, string returnUrl) {
|
||||
var contentItem = _contentManager.Get(id, VersionOptions.Latest);
|
||||
|
||||
if (contentItem == null) {
|
||||
return HttpNotFound();
|
||||
}
|
||||
|
||||
if (!contentItem.TypeDefinition.Settings.GetModel<ContentTypeSettings>().Draftable
|
||||
|| !contentItem.HasPublished()
|
||||
|| contentItem.IsPublished()) {
|
||||
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
|
||||
}
|
||||
|
||||
if (!Services.Authorizer.Authorize(Permissions.DeleteContent, contentItem, T("Couldn't remove draft"))) {
|
||||
return new HttpUnauthorizedResult();
|
||||
}
|
||||
|
||||
_contentManager.DiscardDraft(contentItem);
|
||||
|
||||
Services.Notifier.Information(string.IsNullOrWhiteSpace(contentItem.TypeDefinition.DisplayName)
|
||||
? T("That draft has been removed.")
|
||||
: T("That {0} draft has been removed.", contentItem.TypeDefinition.DisplayName));
|
||||
|
||||
return this.RedirectLocal(returnUrl, () => RedirectToAction("List"));
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public ActionResult Publish(int id, string returnUrl) {
|
||||
var contentItem = _contentManager.GetLatest(id);
|
||||
|
@ -12,9 +12,7 @@ namespace Orchard.Core.Contents.Drivers {
|
||||
ContentShape("Parts_Contents_Publish_Summary",
|
||||
() => shapeHelper.Parts_Contents_Publish_Summary()),
|
||||
ContentShape("Parts_Contents_Publish_SummaryAdmin",
|
||||
() => shapeHelper.Parts_Contents_Publish_SummaryAdmin()),
|
||||
ContentShape("Parts_Contents_Clone_SummaryAdmin",
|
||||
() => shapeHelper.Parts_Contents_Clone_SummaryAdmin())
|
||||
() => shapeHelper.Parts_Contents_Publish_SummaryAdmin())
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,6 @@
|
||||
<Place Parts_Contents_Publish="Content:5"/>
|
||||
</Match>
|
||||
<Match DisplayType="SummaryAdmin">
|
||||
<Place Parts_Contents_Publish_SummaryAdmin="Actions:5"
|
||||
Parts_Contents_Clone_SummaryAdmin="Actions:6"/>
|
||||
<Place Parts_Contents_Publish_SummaryAdmin="Actions:5"/>
|
||||
</Match>
|
||||
</Placement>
|
@ -1,9 +1,8 @@
|
||||
@using Orchard.ContentManagement;
|
||||
@using Orchard.Core.Contents
|
||||
@using Orchard.Core.Contents;
|
||||
@using Orchard.Utility.Extensions;
|
||||
@{
|
||||
ContentItem contentItem = Model.ContentItem;
|
||||
var returnUrl = ViewContext.RequestContext.HttpContext.Request.ToUrlString();
|
||||
}
|
||||
<div class="summary" itemscope="itemscope" itemid="@contentItem.Id" itemtype="http://orchardproject.net/data/ContentItem">
|
||||
<div class="properties">
|
||||
@ -18,12 +17,6 @@
|
||||
</div>
|
||||
<div class="related">
|
||||
@Display(Model.Actions)
|
||||
@if (Authorizer.Authorize(Permissions.EditContent, contentItem)) {
|
||||
@Html.ItemEditLink(T("Edit").Text, contentItem)@T(" | ")
|
||||
}
|
||||
@if (Authorizer.Authorize(Permissions.DeleteContent, contentItem)) {
|
||||
@Html.Link(T("Delete").Text, Url.ItemRemoveUrl(contentItem, new {returnUrl}), new {itemprop = "RemoveUrl UnsafeUrl"})
|
||||
}
|
||||
</div>
|
||||
@if (Model.Content != null) {
|
||||
<div class="primary">@Display(Model.Content)</div>
|
||||
|
@ -4,38 +4,55 @@
|
||||
|
||||
@{
|
||||
Script.Require("ShapesBase");
|
||||
ContentPart contentPart = Model.ContentPart;
|
||||
ContentItem contentItem = Model.ContentItem;
|
||||
var returnUrl = ViewContext.RequestContext.HttpContext.Request.ToUrlString();
|
||||
var hasPublished = contentItem.HasPublished();
|
||||
var hasDraft = contentItem.HasDraft();
|
||||
var isPublished = contentItem.IsPublished();
|
||||
var authorizedToEdit = Authorizer.Authorize(Permissions.EditContent, contentItem);
|
||||
var authorizedToDelete = Authorizer.Authorize(Permissions.DeleteContent, contentItem);
|
||||
var authorizedToPublish = Authorizer.Authorize(Permissions.PublishContent, contentItem);
|
||||
}
|
||||
@if (contentPart.HasPublished()) {
|
||||
@Html.ItemDisplayLink(T("View").Text, (ContentItem)Model.ContentPart.ContentItem)
|
||||
@T(" | ")
|
||||
|
||||
if (contentPart.HasDraft()) {
|
||||
if (Authorizer.Authorize(Permissions.PublishContent, contentPart)) {
|
||||
@Html.Link(T("Publish Draft").Text, Url.Action("Publish", "Admin", new {area = "Contents", id = contentPart.ContentItem.Id, returnUrl = Request.ToUrlString()}), new {itemprop = "UnsafeUrl"})
|
||||
@T(" | ")
|
||||
}
|
||||
|
||||
if (Authorizer.Authorize(Permissions.PreviewContent, contentPart)) {
|
||||
@Html.ActionLink(T("Preview").Text, "Display", "Item", new { area = "Contents", id = ((ContentItem)Model.ContentPart.ContentItem).Id, version = ((ContentItem)Model.ContentPart.ContentItem).Version }, new { })
|
||||
@T(" | ")
|
||||
}
|
||||
<div class="item-action-links">
|
||||
<strong>@T("Item:")</strong>
|
||||
@if (hasPublished) {
|
||||
@Html.ItemDisplayLink(T("View").Text, contentItem);
|
||||
}
|
||||
|
||||
if (Authorizer.Authorize(Permissions.PublishContent, contentPart)) {
|
||||
@Html.Link(T("Unpublish").Text, Url.Action("Unpublish", "Admin", new {area = "Contents", id = contentPart.ContentItem.Id, returnUrl = Request.ToUrlString()}), new {itemprop = "UnsafeUrl"})
|
||||
@if (authorizedToEdit) {
|
||||
if (hasPublished) {
|
||||
@T(" | ")
|
||||
}
|
||||
@Html.ItemEditLink(T("Edit").Text, contentItem);
|
||||
@T(" | ")
|
||||
}
|
||||
} else {
|
||||
if (contentPart.HasDraft()) {
|
||||
if (Authorizer.Authorize(Permissions.PreviewContent, contentPart)) {
|
||||
@Html.ActionLink(T("Preview").Text, "Display", "Item", new { area = "Contents", id = ((ContentItem)Model.ContentPart.ContentItem).Id, version = ((ContentItem)Model.ContentPart.ContentItem).Version }, new { })
|
||||
@T(" | ")
|
||||
}
|
||||
@Html.ActionLink(T(" Clone").Text, "Clone", "Admin", new { Id = contentItem.Id, ReturnUrl = Request.ToUrlString(), Area = "Contents" }, new { itemprop = "UnsafeUrl" });
|
||||
}
|
||||
|
||||
if (Authorizer.Authorize(Permissions.PublishContent, contentPart)) {
|
||||
@Html.Link(T("Publish").Text, Url.Action("Publish", "Admin", new {area = "Contents", id = contentPart.ContentItem.Id, returnUrl = Request.ToUrlString()}), new {itemprop = "UnsafeUrl"})
|
||||
@if (hasPublished && authorizedToPublish) {
|
||||
@T(" | ")
|
||||
@Html.ActionLink(T("Unpublish").Text, "Unpublish", "Admin", new { area = "Contents", id = contentItem.Id, returnUrl = Request.ToUrlString() }, new { itemprop = "UnsafeUrl" });
|
||||
}
|
||||
|
||||
@if (authorizedToDelete) {
|
||||
@T(" | ")
|
||||
@Html.Link(T("Remove").Text, Url.ItemRemoveUrl(contentItem, new { returnUrl }), new { itemprop = "RemoveUrl UnsafeUrl" });
|
||||
}
|
||||
</div>
|
||||
@if ((!isPublished || hasDraft) && authorizedToEdit) {
|
||||
<div class="draft-action-links">
|
||||
<strong>@T("Draft:")</strong>
|
||||
@if (!isPublished && Authorizer.Authorize(Permissions.PreviewContent, contentItem)) {
|
||||
@Html.ActionLink(T("View").Text, "Display", "Item", new { area = "Contents", id = contentItem.Id, version = contentItem.Version }, new { });
|
||||
}
|
||||
|
||||
@if (hasDraft && authorizedToPublish) {
|
||||
@T(" | ")
|
||||
@Html.ActionLink(T("Publish").Text, "Publish", "Admin", new { area = "Contents", id = contentItem.Id, returnUrl = Request.ToUrlString() }, new { itemprop = "UnsafeUrl" });
|
||||
}
|
||||
|
||||
@if (!isPublished && hasPublished && authorizedToDelete) {
|
||||
@T(" | ")
|
||||
@Html.ActionLink(T("Discard").Text, "DiscardDraft", "Admin", new { area = "Contents", id = contentItem.Id, returnUrl = Request.ToUrlString() }, new { itemprop = "RemoveUrl UnsafeUrl" });
|
||||
}
|
||||
</div>
|
||||
}
|
@ -558,9 +558,6 @@
|
||||
<ItemGroup>
|
||||
<Content Include="Navigation\Views\MenuItemLink-ShapeMenuItem.cshtml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Contents\Views\Parts.Contents.Clone.SummaryAdmin.cshtml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Contents\Views\Item\Display.cshtml" />
|
||||
</ItemGroup>
|
||||
|
@ -1 +1 @@
|
||||
<a href="@Url.Action("Index", "Admin", new { content = Model.ContentItem.Id, area = "Orchard.AuditTrail" })">@T("Audit Trail")</a>@T(" | ")
|
||||
<a href="@Url.Action("Index", "Admin", new { content = Model.ContentItem.Id, area = "Orchard.AuditTrail" })">@T("Audit Trail")</a>
|
@ -445,6 +445,21 @@ namespace Orchard.ContentManagement {
|
||||
Handlers.Invoke(handler => handler.Removed(context), Logger);
|
||||
}
|
||||
|
||||
public virtual void DiscardDraft(ContentItem contentItem) {
|
||||
var session = _transactionManager.Value.GetSession();
|
||||
|
||||
// Delete the draft content item version record.
|
||||
session
|
||||
.CreateQuery("delete from Orchard.ContentManagement.Records.ContentItemVersionRecord civ where civ.ContentItemRecord.Id = (:id) and civ.Published = false and civ.Latest = true")
|
||||
.SetParameter("id", contentItem.Id)
|
||||
.ExecuteUpdate();
|
||||
|
||||
// After deleting the draft, get the published version. If for any reason there would be more than one,
|
||||
// get the last one and set the Latest property to true.
|
||||
var publishedVersionRecord = contentItem.Record.Versions.OrderBy(x => x.Number).ToArray().Last();
|
||||
publishedVersionRecord.Latest = true;
|
||||
}
|
||||
|
||||
public virtual void Destroy(ContentItem contentItem) {
|
||||
var session = _transactionManager.Value.GetSession();
|
||||
var context = new DestroyContentContext(contentItem);
|
||||
|
@ -85,6 +85,12 @@ namespace Orchard.ContentManagement {
|
||||
void Unpublish(ContentItem contentItem);
|
||||
void Remove(ContentItem contentItem);
|
||||
|
||||
/// <summary>
|
||||
/// Deletes the draft version of the content item permanently.
|
||||
/// </summary>
|
||||
/// <param name="contentItem">The content item of which the draft version will be deleted.</param>
|
||||
void DiscardDraft(ContentItem contentItem);
|
||||
|
||||
/// <summary>
|
||||
/// Permanently deletes the specified content item, including all of its content part records.
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user