using System; using System.Collections.Generic; using System.Linq; using StreamPlayer.Desktop.Models; namespace StreamPlayer.Desktop.Services; public static class ChannelRepository { private static readonly IReadOnlyList Channels = BuildChannels(); public static IReadOnlyList GetChannels() => Channels; private static IReadOnlyList BuildChannels() { var list = new List { new("ESPN", "https://streamtpmedia.com/global2.php?stream=espn"), new("ESPN 2", "https://streamtpmedia.com/global2.php?stream=espn2"), new("ESPN 3", "https://streamtpmedia.com/global2.php?stream=espn3"), new("ESPN 4", "https://streamtpmedia.com/global2.php?stream=espn4"), new("ESPN 3 MX", "https://streamtpmedia.com/global2.php?stream=espn3mx"), new("ESPN 5", "https://streamtpmedia.com/global2.php?stream=espn5"), new("Fox Sports 3 MX", "https://streamtpmedia.com/global2.php?stream=foxsports3mx"), new("ESPN 6", "https://streamtpmedia.com/global2.php?stream=espn6"), new("Fox Sports MX", "https://streamtpmedia.com/global2.php?stream=foxsportsmx"), new("ESPN 7", "https://streamtpmedia.com/global2.php?stream=espn7"), new("Azteca Deportes", "https://streamtpmedia.com/global2.php?stream=azteca_deportes"), new("Win Plus", "https://streamtpmedia.com/global2.php?stream=winplus"), new("DAZN 1", "https://streamtpmedia.com/global2.php?stream=dazn1"), new("Win Plus 2", "https://streamtpmedia.com/global2.php?stream=winplus2"), new("DAZN 2", "https://streamtpmedia.com/global2.php?stream=dazn2"), new("Win Sports", "https://streamtpmedia.com/global2.php?stream=winsports"), new("DAZN LaLiga", "https://streamtpmedia.com/global2.php?stream=dazn_laliga"), new("Win Plus Online 1", "https://streamtpmedia.com/global2.php?stream=winplusonline1"), new("Caracol TV", "https://streamtpmedia.com/global2.php?stream=caracoltv"), new("Fox 1 AR", "https://streamtpmedia.com/global2.php?stream=fox1ar"), new("Fox 2 USA", "https://streamtpmedia.com/global2.php?stream=fox_2_usa"), new("Fox 2 AR", "https://streamtpmedia.com/global2.php?stream=fox2ar"), new("TNT 1 GB", "https://streamtpmedia.com/global2.php?stream=tnt_1_gb"), new("TNT 2 GB", "https://streamtpmedia.com/global2.php?stream=tnt_2_gb"), new("Fox 3 AR", "https://streamtpmedia.com/global2.php?stream=fox3ar"), new("Universo USA", "https://streamtpmedia.com/global2.php?stream=universo_usa"), new("DSports", "https://streamtpmedia.com/global2.php?stream=dsports"), new("Univision USA", "https://streamtpmedia.com/global2.php?stream=univision_usa"), new("DSports 2", "https://streamtpmedia.com/global2.php?stream=dsports2"), new("Fox Deportes USA", "https://streamtpmedia.com/global2.php?stream=fox_deportes_usa"), new("DSports Plus", "https://streamtpmedia.com/global2.php?stream=dsportsplus"), new("Fox Sports 2 MX", "https://streamtpmedia.com/global2.php?stream=foxsports2mx"), new("TNT Sports Chile", "https://streamtpmedia.com/global2.php?stream=tntsportschile"), new("Fox Sports Premium", "https://streamtpmedia.com/global2.php?stream=foxsportspremium"), new("TNT Sports", "https://streamtpmedia.com/global2.php?stream=tntsports"), new("ESPN MX", "https://streamtpmedia.com/global2.php?stream=espnmx"), new("ESPN Premium", "https://streamtpmedia.com/global2.php?stream=espnpremium"), new("ESPN 2 MX", "https://streamtpmedia.com/global2.php?stream=espn2mx"), new("TyC Sports", "https://streamtpmedia.com/global2.php?stream=tycsports"), new("TUDN USA", "https://streamtpmedia.com/global2.php?stream=tudn_usa"), new("Telefe", "https://streamtpmedia.com/global2.php?stream=telefe"), new("TNT 3 GB", "https://streamtpmedia.com/global2.php?stream=tnt_3_gb"), new("TV Pública", "https://streamtpmedia.com/global2.php?stream=tv_publica"), new("Fox 1 USA", "https://streamtpmedia.com/global2.php?stream=fox_1_usa"), new("Liga 1 Max", "https://streamtpmedia.com/global2.php?stream=liga1max"), new("Gol TV", "https://streamtpmedia.com/global2.php?stream=goltv"), new("VTV Plus", "https://streamtpmedia.com/global2.php?stream=vtvplus"), new("ESPN Deportes", "https://streamtpmedia.com/global2.php?stream=espndeportes"), new("Gol Perú", "https://streamtpmedia.com/global2.php?stream=golperu"), new("TNT 4 GB", "https://streamtpmedia.com/global2.php?stream=tnt_4_gb"), new("SportTV BR 1", "https://streamtpmedia.com/global2.php?stream=sporttvbr1"), new("SportTV BR 2", "https://streamtpmedia.com/global2.php?stream=sporttvbr2"), new("SportTV BR 3", "https://streamtpmedia.com/global2.php?stream=sporttvbr3"), new("Premiere 1", "https://streamtpmedia.com/global2.php?stream=premiere1"), new("Premiere 2", "https://streamtpmedia.com/global2.php?stream=premiere2"), new("Premiere 3", "https://streamtpmedia.com/global2.php?stream=premiere3"), new("ESPN NL 1", "https://streamtpmedia.com/global2.php?stream=espn_nl1"), new("ESPN NL 2", "https://streamtpmedia.com/global2.php?stream=espn_nl2"), new("ESPN NL 3", "https://streamtpmedia.com/global2.php?stream=espn_nl3"), new("Caliente TV MX", "https://streamtpmedia.com/global2.php?stream=calientetvmx"), new("USA Network", "https://streamtpmedia.com/global2.php?stream=usa_network"), new("TyC Internacional", "https://streamtpmedia.com/global2.php?stream=tycinternacional"), new("Canal 5 MX", "https://streamtpmedia.com/global2.php?stream=canal5mx"), new("TUDN MX", "https://streamtpmedia.com/global2.php?stream=TUDNMX"), new("FUTV", "https://streamtpmedia.com/global2.php?stream=futv"), new("LaLiga Hypermotion", "https://streamtpmedia.com/global2.php?stream=laligahypermotion") }; return list .OrderBy(c => c.Name, StringComparer.OrdinalIgnoreCase) .ToList(); } }