2024-04-19 05:35:48 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-12-14 05:21:02 +08:00
|
|
|
|
using System.Linq;
|
2024-04-19 05:35:48 +08:00
|
|
|
|
using Orchard.Autoroute.Models;
|
|
|
|
|
using Orchard.Autoroute.Services;
|
2015-12-14 05:21:02 +08:00
|
|
|
|
using Orchard.ContentManagement;
|
2024-04-19 05:35:48 +08:00
|
|
|
|
using Orchard.ContentManagement.Aspects;
|
2015-12-14 05:21:02 +08:00
|
|
|
|
using Orchard.Localization.Models;
|
|
|
|
|
|
|
|
|
|
namespace Orchard.Localization.Services {
|
|
|
|
|
public class LocalizationService : ILocalizationService {
|
|
|
|
|
private readonly IContentManager _contentManager;
|
|
|
|
|
private readonly ICultureManager _cultureManager;
|
2024-04-19 05:35:48 +08:00
|
|
|
|
private readonly IHomeAliasService _homeAliasService;
|
2015-12-14 05:21:02 +08:00
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
public LocalizationService(IContentManager contentManager, ICultureManager cultureManager, IHomeAliasService homeAliasService) {
|
2015-12-14 05:21:02 +08:00
|
|
|
|
_contentManager = contentManager;
|
|
|
|
|
_cultureManager = cultureManager;
|
2024-04-19 05:35:48 +08:00
|
|
|
|
_homeAliasService = homeAliasService;
|
2015-12-14 05:21:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Warning: Returns only the first item of same culture localizations.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public LocalizationPart GetLocalizedContentItem(IContent content, string culture) =>
|
|
|
|
|
GetLocalizedContentItem(content, culture, null);
|
2019-08-23 19:45:08 +08:00
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Warning: Returns only the first item of same culture localizations.
|
|
|
|
|
/// </summary>
|
2019-08-23 19:45:08 +08:00
|
|
|
|
public LocalizationPart GetLocalizedContentItem(IContent content, string culture, VersionOptions versionOptions) {
|
2015-12-14 05:21:02 +08:00
|
|
|
|
var cultureRecord = _cultureManager.GetCultureByName(culture);
|
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
if (cultureRecord == null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2015-12-14 05:21:02 +08:00
|
|
|
|
|
|
|
|
|
var localized = content.As<LocalizationPart>();
|
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
if (localized == null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2015-12-14 05:21:02 +08:00
|
|
|
|
|
2024-04-19 21:34:59 +08:00
|
|
|
|
if (localized.Culture?.Culture == culture) return localized;
|
2019-05-11 03:13:58 +08:00
|
|
|
|
|
2019-08-24 03:19:15 +08:00
|
|
|
|
return GetLocalizationsQuery(localized, versionOptions)
|
2024-04-19 18:38:53 +08:00
|
|
|
|
.Where<LocalizationPartRecord>(localization => localization.CultureId == cultureRecord.Id)
|
2019-08-24 03:19:15 +08:00
|
|
|
|
.Slice(1)
|
|
|
|
|
.FirstOrDefault();
|
2015-12-14 05:21:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
public string GetContentCulture(IContent content) =>
|
|
|
|
|
content.As<LocalizationPart>()?.Culture?.Culture ?? _cultureManager.GetSiteCulture();
|
2015-12-14 05:21:02 +08:00
|
|
|
|
|
2019-08-23 19:45:08 +08:00
|
|
|
|
public void SetContentCulture(IContent content, string culture) {
|
2015-12-14 05:21:02 +08:00
|
|
|
|
var localized = content.As<LocalizationPart>();
|
2019-08-23 19:45:08 +08:00
|
|
|
|
|
|
|
|
|
if (localized == null) return;
|
2015-12-14 05:21:02 +08:00
|
|
|
|
|
|
|
|
|
localized.Culture = _cultureManager.GetCultureByName(culture);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Warning: May contain more than one localization of the same culture.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<LocalizationPart> GetLocalizations(IContent content) => GetLocalizations(content, null);
|
2015-12-14 05:21:02 +08:00
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Warning: May contain more than one localization of the same culture.
|
|
|
|
|
/// </summary>
|
2019-08-23 19:45:08 +08:00
|
|
|
|
public IEnumerable<LocalizationPart> GetLocalizations(IContent content, VersionOptions versionOptions) {
|
|
|
|
|
if (content.ContentItem.Id == 0) return Enumerable.Empty<LocalizationPart>();
|
2019-08-24 03:19:15 +08:00
|
|
|
|
|
2015-12-14 05:21:02 +08:00
|
|
|
|
var localized = content.As<LocalizationPart>();
|
|
|
|
|
|
2019-08-24 03:19:15 +08:00
|
|
|
|
return GetLocalizationsQuery(localized, versionOptions)
|
2024-04-19 21:34:59 +08:00
|
|
|
|
.Where<LocalizationPartRecord>(localization => localization.Id != localized.Id) // Exclude the current content.
|
2019-08-24 03:19:15 +08:00
|
|
|
|
.List();
|
2015-12-14 05:21:02 +08:00
|
|
|
|
}
|
2018-01-19 04:36:13 +08:00
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
public bool TryGetRouteForUrl(string url, out AutoroutePart route) {
|
|
|
|
|
route = _contentManager.Query<AutoroutePart, AutoroutePartRecord>()
|
|
|
|
|
.ForVersion(VersionOptions.Published)
|
|
|
|
|
.Where(r => r.DisplayAlias == url)
|
|
|
|
|
.List()
|
|
|
|
|
.FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
route = route ?? _homeAliasService.GetHomePage(VersionOptions.Latest).As<AutoroutePart>();
|
|
|
|
|
|
|
|
|
|
return route != null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool TryFindLocalizedRoute(ContentItem routableContent, string cultureName, out AutoroutePart localizedRoute) {
|
|
|
|
|
if (!routableContent.Parts.Any(p => p.Is<ILocalizableAspect>())) {
|
|
|
|
|
localizedRoute = null;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IEnumerable<LocalizationPart> localizations = GetLocalizations(routableContent, VersionOptions.Published);
|
|
|
|
|
|
|
|
|
|
ILocalizableAspect localizationPart = null, siteCultureLocalizationPart = null;
|
|
|
|
|
foreach (var localization in localizations) {
|
|
|
|
|
if (localization.Culture.Culture.Equals(cultureName, StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
localizationPart = localization;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (localization.Culture == null && siteCultureLocalizationPart == null) {
|
|
|
|
|
siteCultureLocalizationPart = localization;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (localizationPart == null) {
|
|
|
|
|
localizationPart = siteCultureLocalizationPart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
localizedRoute = localizationPart?.As<AutoroutePart>();
|
2019-08-24 03:19:15 +08:00
|
|
|
|
|
2024-04-19 05:35:48 +08:00
|
|
|
|
return localizedRoute != null;
|
2019-08-24 03:19:15 +08:00
|
|
|
|
}
|
2024-04-19 21:34:59 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Warning: May contain more than one localization of the same culture.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private IContentQuery<LocalizationPart> GetLocalizationsQuery(LocalizationPart localizationPart, VersionOptions versionOptions) {
|
|
|
|
|
var masterId = localizationPart.HasTranslationGroup
|
|
|
|
|
? localizationPart.Record.MasterContentItemId
|
|
|
|
|
: localizationPart.Id;
|
|
|
|
|
|
|
|
|
|
var query = _contentManager.Query<LocalizationPart>(localizationPart.ContentItem.ContentType);
|
|
|
|
|
|
|
|
|
|
if (versionOptions == null) {
|
|
|
|
|
query = query.ForVersion(versionOptions);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return query
|
|
|
|
|
.Where<LocalizationPartRecord>(localization => localization.Id == masterId || localization.MasterContentItemId == masterId);
|
|
|
|
|
}
|
2015-12-14 05:21:02 +08:00
|
|
|
|
}
|
2019-05-11 03:13:58 +08:00
|
|
|
|
}
|