Spotify.NET/SpotifyAPI/Local/Models/SpotifyUri.cs

61 lines
1.9 KiB
C#
Raw Normal View History

using SpotifyAPI.Local.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SpotifyAPI.Local.Models
{
public class SpotifyUri
{
2018-03-11 23:13:38 +00:00
private readonly Dictionary<UriType, string> _properties = new Dictionary<UriType, string>();
2018-03-11 23:13:38 +00:00
public string Base { get; }
public UriType Type => _properties?.LastOrDefault().Key ?? UriType.none;
public string Id => _properties?.LastOrDefault().Value;
public SpotifyUri(string uriBase, Dictionary<UriType, string> properties)
{
Base = uriBase;
_properties = properties;
}
public SpotifyUri(string uriBase, UriType uriType, string uriId)
{
Base = uriBase;
_properties.Add(uriType, uriId);
}
public string GetUriPropValue(UriType type)
{
2018-03-11 23:13:38 +00:00
return !_properties.ContainsKey(type) ? null : _properties[type];
}
public static SpotifyUri Parse(string uri)
{
2016-03-31 11:08:23 +01:00
if (string.IsNullOrEmpty(uri))
2016-03-21 11:56:06 +00:00
throw new ArgumentNullException("Uri");
string[] props = uri.Split(':');
2018-03-11 23:13:38 +00:00
if (props.Length < 3 || !Enum.TryParse(props[1], out UriType uriType))
2016-03-21 11:56:06 +00:00
throw new ArgumentException("Unexpected Uri");
Dictionary<UriType, string> properties = new Dictionary<UriType, string> { { uriType, props[2] } };
for (int index = 3; index < props.Length; index += 2)
{
2018-03-11 23:13:38 +00:00
if (Enum.TryParse(props[index], out UriType type))
properties.Add(type, props[index + 1]);
}
return new SpotifyUri(props[0], properties);
}
public override string ToString()
{
2018-03-11 23:13:38 +00:00
return $"{Base}:{string.Join(":", _properties.SelectMany(x => new[] { x.Key.ToString(), x.Value }))}";
}
}
}