68 lines
2.2 KiB
C#
68 lines
2.2 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.Serialization;
|
|
using Umbraco.Core.Models.Entities;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
[Serializable]
|
|
[DataContract(IsReference = true)]
|
|
public class UmbracoDomain : EntityBase, IDomain
|
|
{
|
|
public UmbracoDomain(string domainName)
|
|
{
|
|
_domainName = domainName;
|
|
}
|
|
|
|
public UmbracoDomain(string domainName, string languageIsoCode)
|
|
: this(domainName)
|
|
{
|
|
LanguageIsoCode = languageIsoCode;
|
|
}
|
|
|
|
private int? _contentId;
|
|
private int? _languageId;
|
|
private string _domainName;
|
|
|
|
private static readonly Lazy<PropertySelectors> Ps = new Lazy<PropertySelectors>();
|
|
|
|
private class PropertySelectors
|
|
{
|
|
public readonly PropertyInfo ContentSelector = ExpressionHelper.GetPropertyInfo<UmbracoDomain, int?>(x => x.RootContentId);
|
|
public readonly PropertyInfo DefaultLanguageSelector = ExpressionHelper.GetPropertyInfo<UmbracoDomain, int?>(x => x.LanguageId);
|
|
public readonly PropertyInfo DomainNameSelector = ExpressionHelper.GetPropertyInfo<UmbracoDomain, string>(x => x.DomainName);
|
|
}
|
|
|
|
[DataMember]
|
|
public int? LanguageId
|
|
{
|
|
get { return _languageId; }
|
|
set { SetPropertyValueAndDetectChanges(value, ref _languageId, Ps.Value.DefaultLanguageSelector); }
|
|
}
|
|
|
|
[DataMember]
|
|
public string DomainName
|
|
{
|
|
get { return _domainName; }
|
|
set { SetPropertyValueAndDetectChanges(value, ref _domainName, Ps.Value.DomainNameSelector); }
|
|
}
|
|
|
|
[DataMember]
|
|
public int? RootContentId
|
|
{
|
|
get { return _contentId; }
|
|
set { SetPropertyValueAndDetectChanges(value, ref _contentId, Ps.Value.ContentSelector); }
|
|
}
|
|
|
|
public bool IsWildcard
|
|
{
|
|
get { return string.IsNullOrWhiteSpace(DomainName) || DomainName.StartsWith("*"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Readonly value of the language ISO code for the domain
|
|
/// </summary>
|
|
public string LanguageIsoCode { get; internal set; }
|
|
}
|
|
}
|