mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-04 04:16:19 +00:00
61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
using TUI.Controls.Components;
|
|
using TUI.Domain;
|
|
using YamlDotNet.Serialization;
|
|
using YamlDotNet.Serialization.NamingConventions;
|
|
|
|
namespace TUI.Providers.Dependencies;
|
|
|
|
public class DependencyRepository
|
|
{
|
|
private DependenciesDto? _dependenciesDto;
|
|
|
|
private DependenciesDto DependenciesDto
|
|
{
|
|
get
|
|
{
|
|
if (_dependenciesDto is not null)
|
|
{
|
|
return _dependenciesDto;
|
|
}
|
|
|
|
var deserializer = new DeserializerBuilder()
|
|
.WithNamingConvention(UnderscoredNamingConvention.Instance)
|
|
.Build();
|
|
|
|
using var sr = new StreamReader("dependencies.yaml");
|
|
_dependenciesDto = deserializer.Deserialize<DependenciesDto>(sr.ReadToEnd());
|
|
|
|
return _dependenciesDto;
|
|
}
|
|
}
|
|
|
|
public IEnumerable<Dependency> ReadConventions(string stackName)
|
|
{
|
|
return DependenciesDto.Stacks
|
|
.Single(stack => stack.Name == stackName)
|
|
.Conventions
|
|
.Select(convention =>
|
|
{
|
|
var brand = new Brand(convention.Name, convention.Icon, convention.Color);
|
|
return new Dependency(convention.Version, brand);
|
|
});
|
|
}
|
|
|
|
public IEnumerable<Project> ReadProjects(string stackName)
|
|
{
|
|
var projects = new List<Project>();
|
|
|
|
var hubs = DependenciesDto.Stacks
|
|
.Single(stack => stack.Name == stackName)
|
|
.Hubs;
|
|
|
|
foreach (var hub in hubs)
|
|
{
|
|
projects.AddRange(hub
|
|
.Projects
|
|
.Select(proj => new Project(proj.Id, proj.Name, proj.Tags, hub.Type)));
|
|
}
|
|
|
|
return projects;
|
|
}
|
|
} |