jellyfin/Emby.Server.Implementations/Services/UrlExtensions.cs

34 lines
1.1 KiB
C#
Raw Normal View History

using System;
2016-11-11 20:55:12 +01:00
2017-02-13 21:54:28 +01:00
namespace Emby.Server.Implementations.Services
2016-11-11 20:55:12 +01:00
{
/// <summary>
/// Donated by Ivan Korneliuk from his post:
/// http://korneliuk.blogspot.com/2012/08/servicestack-reusing-dtos.html
2019-01-08 00:27:46 +01:00
///
2016-11-11 20:55:12 +01:00
/// Modified to only allow using routes matching the supplied HTTP Verb
/// </summary>
public static class UrlExtensions
{
2017-02-13 21:54:28 +01:00
public static string GetMethodName(this Type type)
2016-11-11 20:55:12 +01:00
{
var typeName = type.FullName != null //can be null, e.g. generic types
? LeftPart(type.FullName, "[[") //Generic Fullname
.Replace(type.Namespace + ".", "") //Trim Namespaces
.Replace("+", ".") //Convert nested into normal type
: type.Name;
return type.IsGenericParameter ? "'" + typeName : typeName;
}
2018-09-12 19:26:21 +02:00
private static string LeftPart(string strVal, string needle)
2016-11-11 20:55:12 +01:00
{
if (strVal == null) return null;
var pos = strVal.IndexOf(needle, StringComparison.OrdinalIgnoreCase);
return pos == -1
? strVal
: strVal.Substring(0, pos);
}
}
}