mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Fix import export of identically named fields (#7912)
This commit is contained in:
parent
baac878337
commit
afff2f986e
@ -187,7 +187,7 @@ License: Apache Software Foundation License 2.0
|
|||||||
|
|
||||||
Lucene.net
|
Lucene.net
|
||||||
-----
|
-----
|
||||||
Website: http://incubator.apache.org/projects/lucene.net.html
|
Website: https://lucenenet.apache.org/
|
||||||
Copyright: Copyright (c) 2009 Apache Software Foundation
|
Copyright: Copyright (c) 2009 Apache Software Foundation
|
||||||
License: Apache Software Foundation License 2.0
|
License: Apache Software Foundation License 2.0
|
||||||
|
|
||||||
@ -293,4 +293,4 @@ YUI
|
|||||||
-----
|
-----
|
||||||
Website: http://developer.yahoo.com/yui/
|
Website: http://developer.yahoo.com/yui/
|
||||||
Copyright: Copyright (c) 2010, Yahoo! Inc.
|
Copyright: Copyright (c) 2010, Yahoo! Inc.
|
||||||
License: New BSD
|
License: New BSD
|
||||||
|
@ -65,23 +65,38 @@ namespace Orchard.ContentManagement.Drivers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void IContentFieldDriver.Importing(ImportContentContext context) {
|
void IContentFieldDriver.Importing(ImportContentContext context) {
|
||||||
Process(context.ContentItem, (part, field) => Importing(part, field, context), context.Logger);
|
Process(context.ContentItem, (part, field) => {
|
||||||
|
context.Prefix = part.PartDefinition.Name;
|
||||||
|
Importing(part, field, context);
|
||||||
|
}, context.Logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentFieldDriver.Imported(ImportContentContext context) {
|
void IContentFieldDriver.Imported(ImportContentContext context) {
|
||||||
Process(context.ContentItem, (part, field) => Imported(part, field, context), context.Logger);
|
Process(context.ContentItem, (part, field) => {
|
||||||
|
context.Prefix = part.PartDefinition.Name;
|
||||||
|
Imported(part, field, context);
|
||||||
|
}, context.Logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentFieldDriver.ImportCompleted(ImportContentContext context) {
|
void IContentFieldDriver.ImportCompleted(ImportContentContext context) {
|
||||||
Process(context.ContentItem, (part, field) => ImportCompleted(part, field, context), context.Logger);
|
Process(context.ContentItem, (part, field) => {
|
||||||
|
context.Prefix = part.PartDefinition.Name;
|
||||||
|
ImportCompleted(part, field, context);
|
||||||
|
}, context.Logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentFieldDriver.Exporting(ExportContentContext context) {
|
void IContentFieldDriver.Exporting(ExportContentContext context) {
|
||||||
Process(context.ContentItem, (part, field) => Exporting(part, field, context), context.Logger);
|
Process(context.ContentItem, (part, field) => {
|
||||||
|
context.Prefix = part.PartDefinition.Name;
|
||||||
|
Exporting(part, field, context);
|
||||||
|
}, context.Logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentFieldDriver.Exported(ExportContentContext context) {
|
void IContentFieldDriver.Exported(ExportContentContext context) {
|
||||||
Process(context.ContentItem, (part, field) => Exported(part, field, context), context.Logger);
|
Process(context.ContentItem, (part, field) => {
|
||||||
|
context.Prefix = part.PartDefinition.Name;
|
||||||
|
Exported(part, field, context);
|
||||||
|
}, context.Logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentFieldDriver.Cloning(CloneContentContext context) {
|
void IContentFieldDriver.Cloning(CloneContentContext context) {
|
||||||
|
@ -78,32 +78,42 @@ namespace Orchard.ContentManagement.Drivers {
|
|||||||
|
|
||||||
void IContentPartDriver.Importing(ImportContentContext context) {
|
void IContentPartDriver.Importing(ImportContentContext context) {
|
||||||
var part = context.ContentItem.As<TContent>();
|
var part = context.ContentItem.As<TContent>();
|
||||||
if (part != null)
|
if (part != null) {
|
||||||
|
context.Prefix = string.Empty;
|
||||||
Importing(part, context);
|
Importing(part, context);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentPartDriver.Imported(ImportContentContext context) {
|
void IContentPartDriver.Imported(ImportContentContext context) {
|
||||||
var part = context.ContentItem.As<TContent>();
|
var part = context.ContentItem.As<TContent>();
|
||||||
if (part != null)
|
if (part != null) {
|
||||||
|
context.Prefix = string.Empty;
|
||||||
Imported(part, context);
|
Imported(part, context);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentPartDriver.ImportCompleted(ImportContentContext context) {
|
void IContentPartDriver.ImportCompleted(ImportContentContext context) {
|
||||||
var part = context.ContentItem.As<TContent>();
|
var part = context.ContentItem.As<TContent>();
|
||||||
if (part != null)
|
if (part != null) {
|
||||||
|
context.Prefix = string.Empty;
|
||||||
ImportCompleted(part, context);
|
ImportCompleted(part, context);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentPartDriver.Exporting(ExportContentContext context) {
|
void IContentPartDriver.Exporting(ExportContentContext context) {
|
||||||
var part = context.ContentItem.As<TContent>();
|
var part = context.ContentItem.As<TContent>();
|
||||||
if (part != null)
|
if (part != null) {
|
||||||
|
context.Prefix = string.Empty;
|
||||||
Exporting(part, context);
|
Exporting(part, context);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentPartDriver.Exported(ExportContentContext context) {
|
void IContentPartDriver.Exported(ExportContentContext context) {
|
||||||
var part = context.ContentItem.As<TContent>();
|
var part = context.ContentItem.As<TContent>();
|
||||||
if (part != null)
|
if (part != null) {
|
||||||
|
context.Prefix = string.Empty;
|
||||||
Exported(part, context);
|
Exported(part, context);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void IContentPartDriver.Cloning(CloneContentContext context) {
|
void IContentPartDriver.Cloning(CloneContentContext context) {
|
||||||
|
@ -2,6 +2,7 @@ using System.Xml.Linq;
|
|||||||
|
|
||||||
namespace Orchard.ContentManagement.Handlers {
|
namespace Orchard.ContentManagement.Handlers {
|
||||||
public class ExportContentContext : ContentContextBase {
|
public class ExportContentContext : ContentContextBase {
|
||||||
|
public string Prefix { get; set; }
|
||||||
public XElement Data { get; set; }
|
public XElement Data { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -9,12 +10,17 @@ namespace Orchard.ContentManagement.Handlers {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public bool Exclude { get; set; }
|
public bool Exclude { get; set; }
|
||||||
|
|
||||||
|
private readonly string Separator = @".";
|
||||||
|
|
||||||
public ExportContentContext(ContentItem contentItem, XElement data)
|
public ExportContentContext(ContentItem contentItem, XElement data)
|
||||||
: base(contentItem) {
|
: base(contentItem) {
|
||||||
Data = data;
|
Data = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
public XElement Element(string elementName) {
|
public XElement Element(string elementName) {
|
||||||
|
if (!string.IsNullOrEmpty(Prefix))
|
||||||
|
elementName = string.Join(Separator, Prefix, elementName);
|
||||||
|
|
||||||
var element = Data.Element(elementName);
|
var element = Data.Element(elementName);
|
||||||
if (element == null) {
|
if (element == null) {
|
||||||
element = new XElement(elementName);
|
element = new XElement(elementName);
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Xml.Linq;
|
using System.Xml.Linq;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
namespace Orchard.ContentManagement.Handlers {
|
namespace Orchard.ContentManagement.Handlers {
|
||||||
public class ImportContentContext : ContentContextBase {
|
public class ImportContentContext : ContentContextBase {
|
||||||
public XElement Data { get; set; }
|
public XElement Data { get; set; }
|
||||||
private ImportContentSession Session { get; set; }
|
private ImportContentSession Session { get; set; }
|
||||||
|
private readonly string Separator = @".";
|
||||||
|
public string Prefix { get; set; }
|
||||||
|
|
||||||
public ImportContentContext(ContentItem contentItem, XElement data, ImportContentSession importContentSession)
|
public ImportContentContext(ContentItem contentItem, XElement data, ImportContentSession importContentSession)
|
||||||
: base(contentItem) {
|
: base(contentItem) {
|
||||||
@ -13,7 +16,18 @@ namespace Orchard.ContentManagement.Handlers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public string Attribute(string elementName, string attributeName) {
|
public string Attribute(string elementName, string attributeName) {
|
||||||
var element = Data.Element(elementName);
|
// Step one : fetch element with prefix
|
||||||
|
var element = Data.Element(AdjustElementName(elementName));
|
||||||
|
// Step two : fetch elements without prefix
|
||||||
|
if (element == null) {
|
||||||
|
var elements = Data.Elements(elementName);
|
||||||
|
if (elements != null && elements.Count() > 1) {
|
||||||
|
element = elements.Last();
|
||||||
|
} else if (elements != null && elements.Count() == 1) {
|
||||||
|
element = elements.First();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (element != null) {
|
if (element != null) {
|
||||||
var attribute = element.Attribute(attributeName);
|
var attribute = element.Attribute(attributeName);
|
||||||
if (attribute != null)
|
if (attribute != null)
|
||||||
@ -23,7 +37,7 @@ namespace Orchard.ContentManagement.Handlers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public string ChildEl(string elementName, string childElementName) {
|
public string ChildEl(string elementName, string childElementName) {
|
||||||
var element = Data.Element(elementName);
|
var element = Data.Element(AdjustElementName(elementName));
|
||||||
return element == null ? null : element.El(childElementName);
|
return element == null ? null : element.El(childElementName);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -68,5 +82,11 @@ namespace Orchard.ContentManagement.Handlers {
|
|||||||
public ContentItem GetItemFromSession(string id) {
|
public ContentItem GetItemFromSession(string id) {
|
||||||
return Session.Get(id);
|
return Session.Get(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private string AdjustElementName(string elementName) {
|
||||||
|
if (!string.IsNullOrEmpty(Prefix) && !elementName.StartsWith(Prefix + Separator))
|
||||||
|
return string.Join(Separator, Prefix, elementName);
|
||||||
|
return elementName;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user