aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Reports/Common/ReportHelper.cs
blob: 306b3e7493c626fa884ca4f629e82b2c386047e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using MediaBrowser.Controller.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MediaBrowser.Api.Reports
{
	public class ReportHelper
	{
		/// <summary> Gets java script localized string. </summary>
		/// <param name="phrase"> The phrase. </param>
		/// <returns> The java script localized string. </returns>
		public static string GetJavaScriptLocalizedString(string phrase)
		{
			var dictionary = BaseItem.LocalizationManager.GetJavaScriptLocalizationDictionary(BaseItem.ConfigurationManager.Configuration.UICulture);

			string value;

			if (dictionary.TryGetValue(phrase, out value))
			{
				return value;
			}

			return phrase;
		}

		/// <summary> Gets server localized string. </summary>
		/// <param name="phrase"> The phrase. </param>
		/// <returns> The server localized string. </returns>
		public static string GetServerLocalizedString(string phrase)
		{
			return BaseItem.LocalizationManager.GetLocalizedString(phrase, BaseItem.ConfigurationManager.Configuration.UICulture);
		}

		/// <summary> Gets row type. </summary>
		/// <param name="rowType"> The type. </param>
		/// <returns> The row type. </returns>
		public static ReportViewType GetRowType(string rowType)
		{
			if (string.IsNullOrEmpty(rowType))
				return ReportViewType.BaseItem;

			ReportViewType rType;

			if (!Enum.TryParse<ReportViewType>(rowType, out rType))
				return ReportViewType.BaseItem;

			return rType;
		}

		/// <summary> Gets header metadata type. </summary>
		/// <param name="header"> The header. </param>
		/// <returns> The header metadata type. </returns>
		public static HeaderMetadata GetHeaderMetadataType(string header)
		{
			if (string.IsNullOrEmpty(header))
				return HeaderMetadata.None;

			HeaderMetadata rType;

			if (!Enum.TryParse<HeaderMetadata>(header, out rType))
				return HeaderMetadata.None;

			return rType;
		}

		/// <summary> Convert field to string. </summary>
		/// <typeparam name="T"> Generic type parameter. </typeparam>
		/// <param name="value"> The value. </param>
		/// <param name="fieldType"> Type of the field. </param>
		/// <returns> The field converted to string. </returns>
		public static string ConvertToString<T>(T value, ReportFieldType fieldType)
		{
			if (value == null)
				return "";
			switch (fieldType)
			{
				case ReportFieldType.String:
					return value.ToString();
				case ReportFieldType.Boolean:
					return value.ToString();
				case ReportFieldType.Date:
					return string.Format("{0:d}", value);
				case ReportFieldType.Time:
					return string.Format("{0:t}", value);
				case ReportFieldType.DateTime:
					return string.Format("{0:d}", value);
				case ReportFieldType.Int:
					return string.Format("", value);
				default:
					if (value is Guid)
						return string.Format("{0:N}", value);
					return value.ToString();
			}
		}
	}
}