Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions Sitecore.Master/Code Generation Templates/GlassV4Header.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<#@ template language="C#" #>
<#@ assembly name="System.Core" #>

<#@ include file="Helpers.tt" #>
<#@ include file="StringExtensions.tt" #>
<#@ include file="GeneralExtensions.tt" #>
<#@ include file="Inflector.tt" #>

<#@ import namespace="System" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models" #>

<#@ parameter name="Model" type="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models.ProjectHeader" #>
<#@ parameter name="DefaultNamespace" type="System.String" #>

#pragma warning disable 1591
#pragma warning disable 0108
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Team Development for Sitecore.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Glass.Mapper.Sc.Configuration.Attributes;
using Glass.Mapper.Sc.Configuration;
using Glass.Mapper.Sc.Fields;
using Sitecore.Globalization;
using Sitecore.Data;


<#
// Calculate the top leve namespace as configured in the target project and
// base namespace as defined in the TDS project
string fullNamespace = JoinNamespaces(DefaultNamespace, Model.BaseNamespace);
#>

namespace <#=fullNamespace #>
{

public partial interface IGlassBase{

[SitecoreId]
Guid Id{ get; }

[SitecoreInfo(SitecoreInfoType.Language)]
Language Language{ get; }

[SitecoreInfo(SitecoreInfoType.Version)]
int Version { get; }

[SitecoreInfo(SitecoreInfoType.Url)]
string Url { get; }

}

public abstract partial class GlassBase : IGlassBase{

[SitecoreId]
public virtual Guid Id{ get; private set;}

[SitecoreInfo(SitecoreInfoType.Language)]
public virtual Language Language{ get; private set; }

[SitecoreInfo(SitecoreInfoType.Version)]
public virtual int Version { get; private set; }

[SitecoreInfo(SitecoreInfoType.Url)]
public virtual string Url { get; private set; }
}
}
256 changes: 256 additions & 0 deletions Sitecore.Master/Code Generation Templates/GlassV4Item.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1,256 @@
<#@ template language="C#" #>
<#@ output encoding="utf-8"#>

<#@ include file="Helpers.tt" #>
<#@ include file="StringExtensions.tt" #>
<#@ include file="GeneralExtensions.tt" #>
<#@ include file="Inflector.tt" #>

<#@ assembly name="System.Core.dll" #>

<#@ import namespace="System" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models" #>

<#@ parameter name="Model" type="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models.SitecoreItem" #>
<#@ parameter name="DefaultNamespace" type="System.String" #>

<#
/*
This TDS Code Generation template is used to generate objects that are compatible with the
Glass Sitecore Mapper that is available @ http://www.glass.lu/

There are a few things you can put in the 'Custom Data' property of a field in TDS.
To use multiple settings put them in as a querystring (key1=value&key2=value)

ignore=true
Sets a field to be skipped over for code gen
name=[name]
Forces the name of the generated property.
If not specified, then the generated property is the name of the Sitecore field.
If the field stores multiple values, the property name is pluralized.
type=[type]
Sets the return type of the generated property
generic=[type]
In the event the type (either specificed or auto mapped) is a generic it will use this generic type. i.e. List<generic>
cachable=true
Sets a type to be cached by Glass
*/
#>

<#
// we only act on Templates
SitecoreTemplate template = Model as SitecoreTemplate;
if (template == null)
{
return "";
}

string Tool = "Team Development for Sitecore - GlassItem.tt";
string ToolVersion = "1.0";
#>

namespace <#= GetNamespace(DefaultNamespace, template)#>
{


/// <summary>
/// <#= AsInterfaceName(template.Name) #> Interface
/// <para><#= GetValue(template.SitecoreFields, "__Short description")#></para>
/// <para>Path: <#= template.Path #></para>
/// <para>ID: <#= template.ID.ToString() #></para>
/// </summary>
[SitecoreType(TemplateId=<#= AsInterfaceName(template.Name) #>Constants.TemplateIdString, <#= GetGlassCachable(template) #>)]
public partial interface <#= AsInterfaceName(template.Name) #> : IGlassBase <#=GetObjectInheritanceDefinition(DefaultNamespace, template, true, (string s) => AsInterfaceName(s))#>
{
<#foreach(SitecoreField field in GetFieldsForTemplate(template, false)){#>
/// <summary>
/// The <#=field.Name#> field.
/// <para><#= GetValue(field.SitecoreFields, "__Short description")#></para>
/// <para>Field Type: <#=field.Type#></para>
/// <para>Field ID: <#=field.ID.ToString()#></para>
/// <para>Custom Data: <#=field.Data#></para>
/// </summary>
[SitecoreField(<#= AsInterfaceName(template.Name) #>Constants.<#= GetPropertyName(field) #>FieldName)]
<#=GetGlassFieldType(field)#> <#= GetPropertyName(field) #> {get; set;}

<#}#>
}


public static partial class <#= AsInterfaceName(template.Name) #>Constants{

public const string TemplateIdString = "<#= template.ID.ToString() #>";
public static readonly ID TemplateId = new ID(TemplateIdString);
public const string TemplateName = "<#= template.Name #>";

<#foreach(SitecoreField field in GetFieldsForTemplate(template, true)){#>

public static readonly ID <#= GetPropertyName(field) #>FieldId = new ID("<#=field.ID.ToString()#>");
public const string <#= GetPropertyName(field) #>FieldName = "<#=field.Name#>";

<#}#>

}

<#
// If the name of the template looks like an Interface, then don't generate a class definition
if (!IsInterfaceWord(template.Name)){ #>
/// <summary>
/// <#= AsClassName(template.Name) #>
/// <para><#= GetValue(template.SitecoreFields, "__Short description")#></para>
/// <para>Path: <#= template.Path #></para>
/// <para>ID: <#= template.ID.ToString() #></para>
/// </summary>
[SitecoreType(TemplateId=<#= AsInterfaceName(template.Name) #>Constants.TemplateIdString, <#= GetGlassCachable(template) #>)]
public partial class <#= AsClassName(template.Name) #> : GlassBase, <#=AsInterfaceName(template.Name)#>
{

<#foreach(SitecoreField field in GetFieldsForTemplate(template, true)){#>
/// <summary>
/// The <#=field.Name#> field.
/// <para><#= GetValue(field.SitecoreFields, "__Short description")#></para>
/// <para>Field Type: <#=field.Type#></para>
/// <para>Field ID: <#=field.ID.ToString()#></para>
/// <para>Custom Data: <#=field.Data#></para>
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("<#=Tool#>", "<#=ToolVersion#>")]
[SitecoreField(<#= AsInterfaceName(template.Name) #>Constants.<#= GetPropertyName(field) #>FieldName)]
public virtual <#=GetGlassFieldType(field)#> <#= GetPropertyName(field) #> {get; set;}

<#}#>
}
<#}#>
}

<#+
/// <summary>
/// Gets the inheritance string for the generated template
/// </summary>
/// <param name="defaultNamespace">The default namespace.</param>
/// <param name="template">The template to get the bases for.</param>
/// <param name="nameFunc">The function to run the base templates names through.</param>
/// <returns></returns>
public static string GetObjectInheritanceDefinition(string defaultNamespace, SitecoreTemplate item, bool includeLeadingComma, Func<string, string> nameFunc)
{
if (item.BaseTemplates.Count > 0)
{
return string.Concat(includeLeadingComma ? ", " : "",
item.BaseTemplates
.Select( bt => GetFullyQualifiedName(defaultNamespace, bt, nameFunc)) // select the name of the template with an 'I' prefix
.Aggregate( (total,next) => total + ", " + next) // basically a string.join(string[], '')
);
}
return "";
}

public static string GetGlassCachable(SitecoreTemplate item)
{

string cachable = GetCustomProperty(item.Data, "cachable");

bool isCachable;

bool.TryParse(cachable, out isCachable);

return string.Concat("Cachable=",isCachable.ToString().ToLower());



}

public static string GetGlassFieldType(SitecoreField field)
{
if (field != null && field.Type != null)
{
// Pull out any 'type' param from the custom data field on the field in TDS
string customType = GetCustomProperty(field.Data, "type");
string generic = GetCustomProperty(field.Data, "generic");

if (customType != "")
{
if (generic != "")
{
return string.Format("{0}<{1}>", customType, generic);
}
else
{
return customType;
}
}

switch(field.Type.ToLower())
{
case "tristate":
return "TriState";
case "checkbox":
return "bool";

case "date":
case "datetime":
return "DateTime";

case "number":
return "float";

case "integer":
return "int";

case "treelist with search":
case "treelist":
case "treelistex":
case "treelist descriptive":
case "checklist":
case "multilist with search":
case "multilist":
return string.Format("IEnumerable<{0}>", string.IsNullOrEmpty(generic) ? "Guid" : generic);

case "grouped droplink":
case "droplink":
case "lookup":
case "droptree":
case "reference":
case "tree":
return "Guid";

case "file":
return "File";

case "image":
return "Image";

case "general link":
case "general link with search":
return "Link";

case "password":
case "icon":
case "rich text":
case "html":
case "single-line text":
case "multi-line text":
case "frame":
case "text":
case "memo":
case "droplist":
case "grouped droplist":
case "valuelookup":
return "string";
case "attachment":
case "word document":
return "System.IO.Stream";
case "name lookup value list":
case "name value list":
return "System.Collections.Specialized.NameValueCollection";
default:
return "object /* UNKNOWN */";
}
}
else
{
throw new Exception("There is no 'Type' field on the " + field.Name + " field.");
}
}
#>
10 changes: 9 additions & 1 deletion Sitecore.Master/Sitecore.Master.scproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand Down Expand Up @@ -648,6 +648,8 @@
<ItemGroup>
<CodeGenTemplate Include="Code Generation Templates\GlassV3Header.tt" />
<CodeGenTemplate Include="Code Generation Templates\GlassV3Item.tt" />
<CodeGenTemplate Include="Code Generation Templates\glassv4header.tt" />
<CodeGenTemplate Include="Code Generation Templates\glassv4item.tt" />
<CodeGenTemplate Include="Code Generation Templates\MDDocHeader.tt" />
<CodeGenTemplate Include="Code Generation Templates\MDDocItem.tt" />
<CodeGenTemplate Include="Code Generation Templates\GlassHeader.tt" />
Expand All @@ -657,5 +659,11 @@
<CodeGenTemplate Include="Code Generation Templates\VelirItem.tt" />
<CodeGenTemplate Include="Code Generation Templates\VelirHeader.tt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="\UI.csproj">
<Project>{3fffc16d-eacd-452f-975e-9f48c4a95c6d}</Project>
<Name>UI</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\HedgehogDevelopment\SitecoreProject\v9.0\HedgehogDevelopment.SitecoreProject.targets" />
</Project>