added application config
This commit is contained in:
9
AppConfig.cs
Normal file
9
AppConfig.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace tv7playlist
|
||||||
|
{
|
||||||
|
public class AppConfig
|
||||||
|
{
|
||||||
|
public string TV7Url { get; set; }
|
||||||
|
public string UdpxyUrl { get; set; }
|
||||||
|
public string DownloadFileName { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@@ -1,8 +1,10 @@
|
|||||||
using System.IO;
|
using System;
|
||||||
|
using System.IO;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
|
||||||
namespace tv7playlist.Controllers
|
namespace tv7playlist.Controllers
|
||||||
{
|
{
|
||||||
@@ -10,19 +12,45 @@ namespace tv7playlist.Controllers
|
|||||||
[ApiController]
|
[ApiController]
|
||||||
public class PlayListController : ControllerBase
|
public class PlayListController : ControllerBase
|
||||||
{
|
{
|
||||||
private const string Tv7OriginUrl = "https://api.init7.net/tvchannels.m3u";
|
private const string PlayListContentType = "audio/mpegurl";
|
||||||
private const string UdpxyRootUrl = "http://192.168.15.2:4022/udp";
|
|
||||||
|
|
||||||
private static readonly Regex MulticastRegex = new Regex(@"(udp\:\/\/@)([0-9.:]+)",
|
private static readonly Regex MultiCastRegex = new Regex(@"(udp\:\/\/@)([0-9.:]+)",
|
||||||
RegexOptions.Compiled | RegexOptions.Singleline | RegexOptions.IgnoreCase);
|
RegexOptions.Compiled | RegexOptions.Singleline | RegexOptions.IgnoreCase);
|
||||||
|
|
||||||
|
private readonly string _downloadFileName;
|
||||||
|
private readonly string _proxyUrl;
|
||||||
|
|
||||||
|
private readonly string _tv7Url;
|
||||||
|
|
||||||
|
public PlayListController(IConfiguration configuration)
|
||||||
|
{
|
||||||
|
if (configuration == null) throw new ArgumentNullException(nameof(configuration));
|
||||||
|
|
||||||
|
var appConfig = configuration.Get<AppConfig>();
|
||||||
|
|
||||||
|
_tv7Url = GetTv7Url(appConfig);
|
||||||
|
_proxyUrl = GetProxyUrl(appConfig);
|
||||||
|
_downloadFileName = GetDownloadFileName(appConfig);
|
||||||
|
}
|
||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
public async Task<FileStreamResult> Get()
|
public async Task<FileStreamResult> Get()
|
||||||
{
|
{
|
||||||
var httpClient = new HttpClient();
|
using (var httpClient = new HttpClient())
|
||||||
var tv7Response = await httpClient.GetAsync(Tv7OriginUrl);
|
{
|
||||||
|
var tv7Response = await httpClient.GetAsync(_tv7Url);
|
||||||
|
|
||||||
|
var modifiedPlaylist = await BuildProxyPlaylist(tv7Response);
|
||||||
|
|
||||||
|
return new FileStreamResult(modifiedPlaylist, PlayListContentType)
|
||||||
|
{
|
||||||
|
FileDownloadName = _downloadFileName
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<MemoryStream> BuildProxyPlaylist(HttpResponseMessage tv7Response)
|
||||||
|
{
|
||||||
var outStream = new MemoryStream();
|
var outStream = new MemoryStream();
|
||||||
var outWriter = new StreamWriter(outStream);
|
var outWriter = new StreamWriter(outStream);
|
||||||
|
|
||||||
@@ -32,7 +60,7 @@ namespace tv7playlist.Controllers
|
|||||||
while (!reader.EndOfStream)
|
while (!reader.EndOfStream)
|
||||||
{
|
{
|
||||||
var line = await reader.ReadLineAsync();
|
var line = await reader.ReadLineAsync();
|
||||||
line = MulticastRegex.Replace(line, $"{UdpxyRootUrl}/$2/");
|
line = MultiCastRegex.Replace(line, $"{_proxyUrl}/$2/");
|
||||||
outWriter.WriteLine(line);
|
outWriter.WriteLine(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,7 +68,33 @@ namespace tv7playlist.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
outStream.Seek(0, SeekOrigin.Begin);
|
outStream.Seek(0, SeekOrigin.Begin);
|
||||||
return new FileStreamResult(outStream, "audio/mpegurl") {FileDownloadName = "PlaylistTV7udpxy.m3u"};
|
|
||||||
|
return outStream;
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetTv7Url(AppConfig configuration)
|
||||||
|
{
|
||||||
|
var tv7Url = configuration.TV7Url;
|
||||||
|
if (!Uri.IsWellFormedUriString(tv7Url, UriKind.Absolute))
|
||||||
|
throw new ApplicationException($"The TV7Url is set to {tv7Url}. This is not a well formed uri!");
|
||||||
|
return tv7Url;
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetProxyUrl(AppConfig configuration)
|
||||||
|
{
|
||||||
|
var proxyUrl = configuration.UdpxyUrl;
|
||||||
|
if (!Uri.IsWellFormedUriString(proxyUrl, UriKind.Absolute))
|
||||||
|
throw new ApplicationException($"The proxyUrl is set to {proxyUrl}. This is not a well formed uri!");
|
||||||
|
|
||||||
|
return proxyUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetDownloadFileName(AppConfig configuration)
|
||||||
|
{
|
||||||
|
var downloadFileName = configuration.DownloadFileName;
|
||||||
|
if (string.IsNullOrEmpty(downloadFileName)) downloadFileName = "playlist.m3u";
|
||||||
|
|
||||||
|
return downloadFileName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
21
Program.cs
21
Program.cs
@@ -1,12 +1,5 @@
|
|||||||
using System;
|
using Microsoft.AspNetCore;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore;
|
|
||||||
using Microsoft.AspNetCore.Hosting;
|
using Microsoft.AspNetCore.Hosting;
|
||||||
using Microsoft.Extensions.Configuration;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace tv7playlist
|
namespace tv7playlist
|
||||||
{
|
{
|
||||||
@@ -14,11 +7,15 @@ namespace tv7playlist
|
|||||||
{
|
{
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
CreateWebHostBuilder(args).Build().Run();
|
CreateWebHostBuilder(args)
|
||||||
|
.Build()
|
||||||
|
.Run();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
|
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
|
||||||
WebHost.CreateDefaultBuilder(args)
|
{
|
||||||
|
return WebHost.CreateDefaultBuilder(args)
|
||||||
.UseStartup<Startup>();
|
.UseStartup<Startup>();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,2 +1,9 @@
|
|||||||
# tv7playlist
|
# tv7playlist
|
||||||
|
|
||||||
|
This little application is used to rewrite the TV7 multicast channel list by fiber7 m3u.
|
||||||
|
The updated list will proxy the multicast stream through udpxy and builds a stream that plex can handle.
|
||||||
|
|
||||||
|
Others have changed the code in telly. As I did not want to change any external source, I just
|
||||||
|
wrote this little program.
|
||||||
|
|
||||||
|
This is licenced under GPLv2. See License file.
|
@@ -4,5 +4,8 @@
|
|||||||
"Default": "Warning"
|
"Default": "Warning"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"AllowedHosts": "*"
|
"AllowedHosts": "*",
|
||||||
|
"TV7Url":"https://api.init7.net/tvchannels.m3u",
|
||||||
|
"UdpxyUrl":"http://192.168.15.2:4022/udp",
|
||||||
|
"DownloadFileName":"PlaylistTV7udpxy.m3u"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user