SmartAPI
Open Source .NET RQL library for RedDot CMS / OpenText WSM Management Server
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
Pages/Elements/IStandardField.cs
Go to the documentation of this file.
1 ï»¿// SmartAPI - .Net programmatic access to RedDot servers
2 //
3 // Copyright (C) 2013 erminas GbR
4 //
5 // This program is free software: you can redistribute it and/or modify it
6 // under the terms of the GNU General Public License as published by the Free Software Foundation,
7 // either version 3 of the License, or (at your option) any later version.
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 // See the GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License along with this program.
14 // If not, see <http://www.gnu.org/licenses/>.
15 
16 using System;
17 using System.Collections.Generic;
18 using System.Xml;
19 using erminas.SmartAPI.CMS.Project.ContentClasses;
20 using erminas.SmartAPI.CMS.Project.ContentClasses.Elements;
21 
22 namespace erminas.SmartAPI.CMS.Project.Pages.Elements
23 {
24  public interface IStandardField<T> : IValueElement<T>
25  {
26  T GetValueOrDefault();
27  string Description { get; }
28  string SampleText { get; }
29  }
30 
31  internal abstract class StandardField<T> : AbstractValueElement<T>, IStandardField<T>
32  {
33  private string _description;
34  private string _sample;
35 
36  protected StandardField(IProject project, XmlElement xmlElement) : base(project, xmlElement)
37  {
38  LoadXml();
39  }
40 
41  protected StandardField(IProject project, Guid guid, ILanguageVariant languageVariant)
42  : base(project, guid, languageVariant)
43  {
44  }
45 
46  public T GetValueOrDefault()
47  {
48  if (!EqualityComparer<T>.Default.Equals(Value, default(T)))
49  {
50  return Value;
51  }
52 
53  var defaultValue = ((IStandardField) Page.ContentClass.Elements.GetByName(Name)).DefaultValue.ForCurrentLanguage;
54  return defaultValue != null ? FromString(defaultValue) : default(T);
55  }
56 
57  public string Description
58  {
59  get { return LazyLoad(ref _description); }
60  }
61 
62  public string SampleText
63  {
64  get { return LazyLoad(ref _sample); }
65  }
66 
67  protected override T FromXmlNodeValue(string value)
68  {
69  return FromString(value);
70  }
71 
72  protected abstract void LoadWholeStandardField();
73 
74  protected override void LoadWholeValueElement()
75  {
76  LoadXml();
77  LoadWholeStandardField();
78  }
79 
80  private void LoadXml()
81  {
82  InitIfPresent(ref _sample, "eltrdsample", x => x);
83  InitIfPresent(ref _sample, "eltrddescription", x => x);
84  }
85  }
86 }