Code cleanup, 2022 edition

This commit is contained in:
Laura Hausmann 2022-02-09 22:32:17 +01:00
parent a5f66216c9
commit b3ed309192
Signed by: zotan
GPG key ID: D044E84C5BE01605
19 changed files with 329 additions and 294 deletions

View file

@ -1,8 +1,8 @@
using LinqToDB.Mapping;
namespace RTMPDash.DataModels.Tables {
[Table(Name = "Invites")]
public class Invite {
[Column(Name = "Code"), PrimaryKey, NotNull] public string Code { get; set; }
}
namespace RTMPDash.DataModels.Tables;
[Table(Name = "Invites")]
public class Invite {
[Column(Name = "Code"), PrimaryKey, NotNull] public string Code { get; set; }
}

View file

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class ContentModel : PageModel {
public void OnGet() { }
}
namespace RTMPDash.Pages;
public class ContentModel : PageModel {
public void OnGet() { }
}

View file

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class CreditsModel : PageModel {
public void OnGet() { }
}
namespace RTMPDash.Pages;
public class CreditsModel : PageModel {
public void OnGet() { }
}

View file

@ -2,15 +2,15 @@ using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true), IgnoreAntiforgeryToken]
public class ErrorModel : PageModel {
public string RequestId { get; set; }
namespace RTMPDash.Pages;
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true), IgnoreAntiforgeryToken]
public class ErrorModel : PageModel {
public string RequestId { get; set; }
public void OnGet() {
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
}
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
public void OnGet() {
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
}
}

View file

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class IndexModel : PageModel {
public void OnGet() { }
}
namespace RTMPDash.Pages;
public class IndexModel : PageModel {
public void OnGet() { }
}

View file

@ -8,72 +8,68 @@ using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc.RazorPages;
using RTMPDash.DataModels;
namespace RTMPDash.Pages {
public class LoginModel : PageModel {
public void OnPost() {
if (!Request.HasFormContentType
|| string.IsNullOrWhiteSpace(Request.Form["user"])
|| string.IsNullOrWhiteSpace(Request.Form["pass"]))
return;
namespace RTMPDash.Pages;
using var db = new AppDb.DbConn();
var user = db.Users.FirstOrDefault(p => p.Username == Request.Form["user"].ToString()
&& p.Password == Request.Form["pass"].ToString().Sha256());
if (user == null)
return;
public class LoginModel : PageModel {
public void OnPost() {
if (!Request.HasFormContentType || string.IsNullOrWhiteSpace(Request.Form["user"]) || string.IsNullOrWhiteSpace(Request.Form["pass"]))
return;
HttpContext.Session.SetString("authenticatedUser", user.Username);
}
}
using var db = new AppDb.DbConn();
var user = db.Users.FirstOrDefault(p => p.Username == Request.Form["user"].ToString() && p.Password == Request.Form["pass"].ToString().Sha256());
if (user == null)
return;
public static class StringExtensions {
public static string Sha256(this string rawData) {
// Create a SHA256
using var sha256Hash = SHA256.Create();
// ComputeHash - returns byte array
var bytes = sha256Hash.ComputeHash(Encoding.UTF8.GetBytes(rawData));
// Convert byte array to a string
var builder = new StringBuilder();
for (var i = 0; i < bytes.Length; i++)
builder.Append(bytes[i].ToString("x2"));
return builder.ToString();
}
public static string FirstCharToUpper(this string input) => input switch {
null => throw new ArgumentNullException(nameof(input)),
"" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)),
_ => input.First().ToString().ToUpper() + input.Substring(1)
};
public static string Base64Encode(this string plainText) {
var plainTextBytes = Encoding.UTF8.GetBytes(plainText);
return Convert.ToBase64String(plainTextBytes);
}
public static string UrlEncode(this string plainText) => HttpUtility.UrlEncode(plainText);
public static string Delimit(this string input, int max) =>
input.PadRight(max, ' ').Substring(0, max).TrimEnd();
public static string Bash(this string cmd) {
var escapedArgs = cmd.Replace("\"", "\\\"");
var process = new Process {
StartInfo = new ProcessStartInfo {
FileName = "/bin/bash",
Arguments = $"-c \"{escapedArgs}\"",
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
process.Start();
var result = process.StandardOutput.ReadToEnd();
process.WaitForExit();
return result;
}
HttpContext.Session.SetString("authenticatedUser", user.Username);
}
}
public static class StringExtensions {
public static string Sha256(this string rawData) {
// Create a SHA256
using var sha256Hash = SHA256.Create();
// ComputeHash - returns byte array
var bytes = sha256Hash.ComputeHash(Encoding.UTF8.GetBytes(rawData));
// Convert byte array to a string
var builder = new StringBuilder();
for (var i = 0; i < bytes.Length; i++)
builder.Append(bytes[i].ToString("x2"));
return builder.ToString();
}
public static string FirstCharToUpper(this string input) => input switch {
null => throw new ArgumentNullException(nameof(input)),
"" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)),
_ => input.First().ToString().ToUpper() + input.Substring(1)
};
public static string Base64Encode(this string plainText) {
var plainTextBytes = Encoding.UTF8.GetBytes(plainText);
return Convert.ToBase64String(plainTextBytes);
}
public static string UrlEncode(this string plainText) => HttpUtility.UrlEncode(plainText);
public static string Delimit(this string input, int max) => input.PadRight(max, ' ').Substring(0, max).TrimEnd();
public static string Bash(this string cmd) {
var escapedArgs = cmd.Replace("\"", "\\\"");
var process = new Process {
StartInfo = new ProcessStartInfo {
FileName = "/bin/bash",
Arguments = $"-c \"{escapedArgs}\"",
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
process.Start();
var result = process.StandardOutput.ReadToEnd();
process.WaitForExit();
return result;
}
}

View file

@ -1,9 +1,9 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class LogoutModel : PageModel {
public void OnGet() {
HttpContext.Session.Clear();
}
namespace RTMPDash.Pages;
public class LogoutModel : PageModel {
public void OnGet() {
HttpContext.Session.Clear();
}
}

View file

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class PrivacyModel : PageModel {
public void OnGet() { }
}
namespace RTMPDash.Pages;
public class PrivacyModel : PageModel {
public void OnGet() { }
}

View file

@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class StatsModel : PageModel {
public void OnGet() { }
}
namespace RTMPDash.Pages;
public class StatsModel : PageModel {
public void OnGet() { }
}

View file

@ -1,11 +1,11 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class ProfileModel : PageModel {
public new string User { get; set; }
namespace RTMPDash.Pages;
public void OnGet(string user) {
User = user;
}
public class ProfileModel : PageModel {
public new string User { get; set; }
public void OnGet(string user) {
User = user;
}
}

View file

@ -1,7 +1,7 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"anonymousAuthentication": true
},
"profiles": {
"RTMPDash": {

View file

@ -6,14 +6,68 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="linq2db" Version="3.2.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.2" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="5.0.1" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.113.7" />
<PackageReference Include="linq2db" Version="3.2.3"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.2"/>
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="5.0.1"/>
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.113.7"/>
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\_ViewStart.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\_ViewStart.cshtml"/>
<_ContentIncludedByDefault Remove="wwwroot\css\dark-mode.css"/>
<_ContentIncludedByDefault Remove="wwwroot\css\site.css"/>
<_ContentIncludedByDefault Remove="wwwroot\favicon.ico"/>
<_ContentIncludedByDefault Remove="wwwroot\js\dark-mode-switch.js"/>
<_ContentIncludedByDefault Remove="wwwroot\js\site.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\LICENSE"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.min.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.min.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\LICENSE.md"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.js"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.map"/>
<_ContentIncludedByDefault Remove="wwwroot\lib\jquery\LICENSE.txt"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="wwwroot\**"/>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="wwwroot\**"/>
</ItemGroup>
<ItemGroup>
<None Remove="wwwroot\**"/>
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\**"/>
</ItemGroup>
</Project>

View file

@ -5,61 +5,61 @@ using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace RTMPDash {
public class Startup {
public Startup(IConfiguration configuration) => Configuration = configuration;
namespace RTMPDash;
public IConfiguration Configuration { get; }
public class Startup {
public Startup(IConfiguration configuration) => Configuration = configuration;
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services) {
services.AddRazorPages();
services.AddSession(options => {
options.IdleTimeout = TimeSpan.MaxValue;
options.Cookie.HttpOnly = true;
options.Cookie.IsEssential = true;
});
public IConfiguration Configuration { get; }
#if (DEBUG)
services.AddControllers().AddRazorRuntimeCompilation();
services.AddStackExchangeRedisCache(options => {
options.Configuration = "localhost";
options.InstanceName = "RTMPdash_development";
});
#else
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services) {
services.AddRazorPages();
services.AddSession(options => {
options.IdleTimeout = TimeSpan.MaxValue;
options.Cookie.HttpOnly = true;
options.Cookie.IsEssential = true;
});
#if (DEBUG)
services.AddControllers().AddRazorRuntimeCompilation();
services.AddStackExchangeRedisCache(options => {
options.Configuration = "localhost";
options.InstanceName = "RTMPdash_development";
});
#else
services.AddControllers();
services.AddStackExchangeRedisCache(options =>
{
options.Configuration = "localhost";
options.InstanceName = "RTMPdash_production";
});
#endif
#endif
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
}
else {
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
}
else {
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseStaticFiles();
app.UseStaticFiles();
app.UseSession();
app.UseSession();
app.UseRouting();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints => {
endpoints.MapRazorPages();
endpoints.MapControllers();
});
}
app.UseEndpoints(endpoints => {
endpoints.MapRazorPages();
endpoints.MapControllers();
});
}
}

View file

@ -4,151 +4,136 @@ using System.Net;
using System.Xml.Serialization;
using RTMPDash.DataModels;
namespace RTMPDash {
public static class StreamUtils {
private static readonly XmlSerializer Serializer = new(typeof(StatsObject));
namespace RTMPDash;
public static bool IsLive(string user, StatsObject stats) => stats.Server.Applications
.First(p => p.Name == "ingress")
.MethodLive.Streams.Any(p => p.Name == user);
public static class StreamUtils {
private static readonly XmlSerializer Serializer = new(typeof(StatsObject));
public static bool IsLive(string user, string target, StatsObject stats) => stats.Server.Applications
.First(p => p.Name == "ingress")
.MethodLive.Streams
.Any(p => p.Name == user && p.Clients.Any(c => c.Address == target.Replace("rtmp://", "")));
public static bool IsLive(string user, StatsObject stats) => stats.Server.Applications.First(p => p.Name == "ingress").MethodLive.Streams.Any(p => p.Name == user);
public static long GetClientTime(string user, StatsObject stats) =>
long.Parse(stats.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams.First(p => p.Name == user)
.Time);
public static bool IsLive(string user, string target, StatsObject stats) => stats.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams
.Any(p => p.Name == user && p.Clients.Any(c => c.Address == target.Replace("rtmp://", "")));
public static int CountLiveRestreams(string user, StatsObject stats) {
var db = new AppDb.DbConn();
var dbUser = db.Users.First(p => p.Username == user);
return dbUser.RestreamTargets.Split(",")
.Count(target => stats.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams
.Any(p => p.Name == user
&& p.Clients.Any(c => c.Address
== target.Replace("rtmp://", ""))));
}
public static long GetClientTime(string user, StatsObject stats) =>
long.Parse(stats.Server.Applications.First(p => p.Name == "ingress").MethodLive.Streams.First(p => p.Name == user).Time);
public static int CountLiveRestreams(string user, string privateAccesskey, StatsObject stats) {
var db = new AppDb.DbConn();
var dbUser = db.Users.First(p => p.Username == user);
return dbUser.RestreamTargets.Split(",")
.Count(target => stats.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams
.Any(p => p.Name == privateAccesskey
&& p.Clients.Any(c => c.Address
== target.Replace("rtmp://", ""))));
}
public static List<string> ListLiveUsers() => GetStatsObject()
.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams.Select(p => p.Name)
.ToList();
public static StatsObject GetStatsObject() {
var obj = (StatsObject) Serializer.Deserialize(new WebClient().OpenRead("http://127.0.0.1:8080")!);
return obj;
}
public static int CountLiveRestreams(string user, StatsObject stats) {
var db = new AppDb.DbConn();
var dbUser = db.Users.First(p => p.Username == user);
return dbUser.RestreamTargets.Split(",")
.Count(target => stats.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams.Any(p => p.Name == user && p.Clients.Any(c => c.Address == target.Replace("rtmp://", ""))));
}
[XmlRoot(ElementName = "rtmp")]
public class StatsObject {
[XmlElement(ElementName = "nginx_version", IsNullable = true)]
public string NginxVersion { get; set; }
[XmlElement(ElementName = "nginx_rtmp_version", IsNullable = true)]
public string NginxRtmpVersion { get; set; }
[XmlElement(ElementName = "server", IsNullable = true)] public Server Server { get; set; }
[XmlElement(ElementName = "built", IsNullable = true)] public string Built { get; set; }
[XmlElement(ElementName = "pid", IsNullable = true)] public string Pid { get; set; }
[XmlElement(ElementName = "uptime", IsNullable = true)] public string Uptime { get; set; }
[XmlElement(ElementName = "naccepted", IsNullable = true)] public string AcceptedConnections { get; set; }
[XmlElement(ElementName = "bw_in", IsNullable = true)] public string BwIn { get; set; }
[XmlElement(ElementName = "bytes_in", IsNullable = true)] public string BytesIn { get; set; }
[XmlElement(ElementName = "bw_out", IsNullable = true)] public string BwOut { get; set; }
[XmlElement(ElementName = "bytes_out", IsNullable = true)] public string BytesOut { get; set; }
public static int CountLiveRestreams(string user, string privateAccesskey, StatsObject stats) {
var db = new AppDb.DbConn();
var dbUser = db.Users.First(p => p.Username == user);
return dbUser.RestreamTargets.Split(",")
.Count(target => stats.Server.Applications.First(p => p.Name == "ingress")
.MethodLive.Streams.Any(p => p.Name == privateAccesskey && p.Clients.Any(c => c.Address == target.Replace("rtmp://", ""))));
}
[XmlRoot(ElementName = "server", IsNullable = true)]
public class Server {
[XmlElement(ElementName = "application", IsNullable = true)] public List<Application> Applications { get; set; }
}
public static List<string> ListLiveUsers() => GetStatsObject().Server.Applications.First(p => p.Name == "ingress").MethodLive.Streams.Select(p => p.Name).ToList();
[XmlRoot(ElementName = "application", IsNullable = true)]
public class Application {
[XmlElement(ElementName = "live", IsNullable = true)] public MethodLive MethodLive { get; set; }
[XmlElement(ElementName = "name", IsNullable = true)] public string Name { get; set; }
}
[XmlRoot(ElementName = "live", IsNullable = true)]
public class MethodLive {
[XmlElement(ElementName = "stream", IsNullable = true)] public List<Stream> Streams { get; set; }
[XmlElement(ElementName = "nclients", IsNullable = true)] public string NoClients { get; set; }
}
[XmlRoot(ElementName = "stream", IsNullable = true)]
public class Stream {
[XmlElement(ElementName = "client", IsNullable = true)] public List<Client> Clients { get; set; }
[XmlElement(ElementName = "meta", IsNullable = true)] public Meta Meta { get; set; }
[XmlElement(ElementName = "name", IsNullable = true)] public string Name { get; set; }
[XmlElement(ElementName = "time", IsNullable = true)] public string Time { get; set; }
[XmlElement(ElementName = "bw_in", IsNullable = true)] public string BwIn { get; set; }
[XmlElement(ElementName = "bytes_in", IsNullable = true)] public string BytesIn { get; set; }
[XmlElement(ElementName = "bw_out", IsNullable = true)] public string BwOut { get; set; }
[XmlElement(ElementName = "bytes_out", IsNullable = true)] public string BytesOut { get; set; }
[XmlElement(ElementName = "bw_audio", IsNullable = true)] public string BwAudio { get; set; }
[XmlElement(ElementName = "bw_video", IsNullable = true)] public string BwVideo { get; set; }
[XmlElement(ElementName = "bw_data", IsNullable = true)] public string BwData { get; set; }
[XmlElement(ElementName = "nclients", IsNullable = true)] public string NoClients { get; set; }
[XmlElement(ElementName = "active", IsNullable = true)] public object Active { get; set; }
[XmlElement(ElementName = "publishing", IsNullable = true)] public object Publishing { get; set; }
}
[XmlRoot(ElementName = "client", IsNullable = true)]
public class Client {
[XmlElement(ElementName = "id", IsNullable = true)] public string Id { get; set; }
[XmlElement(ElementName = "address", IsNullable = true)] public string Address { get; set; }
[XmlElement(ElementName = "port", IsNullable = true)] public string Port { get; set; }
[XmlElement(ElementName = "time", IsNullable = true)] public string Time { get; set; }
[XmlElement(ElementName = "flashver", IsNullable = true)] public string FlashVer { get; set; }
[XmlElement(ElementName = "swfurl", IsNullable = true)] public string SwfUrl { get; set; }
[XmlElement(ElementName = "bytes_in", IsNullable = true)] public string BytesIn { get; set; }
[XmlElement(ElementName = "bytes_out", IsNullable = true)] public string BytesOut { get; set; }
[XmlElement(ElementName = "dropped", IsNullable = true)] public string Dropped { get; set; }
[XmlElement(ElementName = "avsync", IsNullable = true)] public string AvSync { get; set; }
[XmlElement(ElementName = "timestamp", IsNullable = true)] public string Timestamp { get; set; }
[XmlElement(ElementName = "active", IsNullable = true)] public object Active { get; set; }
[XmlElement(ElementName = "publishing", IsNullable = true)] public object Publishing { get; set; }
}
[XmlRoot(ElementName = "meta", IsNullable = true)]
public class Meta {
[XmlElement(ElementName = "video", IsNullable = true)] public Video Video { get; set; }
[XmlElement(ElementName = "audio", IsNullable = true)] public Audio Audio { get; set; }
}
[XmlRoot(ElementName = "video", IsNullable = true)]
public class Video {
[XmlElement(ElementName = "width", IsNullable = true)] public string Width { get; set; }
[XmlElement(ElementName = "height", IsNullable = true)] public string Height { get; set; }
[XmlElement(ElementName = "frame_rate", IsNullable = true)] public string FrameRate { get; set; }
[XmlElement(ElementName = "codec", IsNullable = true)] public string Codec { get; set; }
[XmlElement(ElementName = "profile", IsNullable = true)] public string Profile { get; set; }
[XmlElement(ElementName = "compat", IsNullable = true)] public string Compat { get; set; }
[XmlElement(ElementName = "level", IsNullable = true)] public string Level { get; set; }
}
[XmlRoot(ElementName = "audio", IsNullable = true)]
public class Audio {
[XmlElement(ElementName = "codec", IsNullable = true)] public string Codec { get; set; }
[XmlElement(ElementName = "profile", IsNullable = true)] public string Profile { get; set; }
[XmlElement(ElementName = "channels", IsNullable = true)] public string Channels { get; set; }
[XmlElement(ElementName = "sample_rate", IsNullable = true)] public string SampleRate { get; set; }
public static StatsObject GetStatsObject() {
var obj = (StatsObject)Serializer.Deserialize(new WebClient().OpenRead("http://127.0.0.1:8080")!);
return obj;
}
}
[XmlRoot(ElementName = "rtmp")]
public class StatsObject {
[XmlElement(ElementName = "nginx_version", IsNullable = true)]
public string NginxVersion { get; set; }
[XmlElement(ElementName = "nginx_rtmp_version", IsNullable = true)]
public string NginxRtmpVersion { get; set; }
[XmlElement(ElementName = "server", IsNullable = true)] public Server Server { get; set; }
[XmlElement(ElementName = "built", IsNullable = true)] public string Built { get; set; }
[XmlElement(ElementName = "pid", IsNullable = true)] public string Pid { get; set; }
[XmlElement(ElementName = "uptime", IsNullable = true)] public string Uptime { get; set; }
[XmlElement(ElementName = "naccepted", IsNullable = true)] public string AcceptedConnections { get; set; }
[XmlElement(ElementName = "bw_in", IsNullable = true)] public string BwIn { get; set; }
[XmlElement(ElementName = "bytes_in", IsNullable = true)] public string BytesIn { get; set; }
[XmlElement(ElementName = "bw_out", IsNullable = true)] public string BwOut { get; set; }
[XmlElement(ElementName = "bytes_out", IsNullable = true)] public string BytesOut { get; set; }
}
[XmlRoot(ElementName = "server", IsNullable = true)]
public class Server {
[XmlElement(ElementName = "application", IsNullable = true)] public List<Application> Applications { get; set; }
}
[XmlRoot(ElementName = "application", IsNullable = true)]
public class Application {
[XmlElement(ElementName = "live", IsNullable = true)] public MethodLive MethodLive { get; set; }
[XmlElement(ElementName = "name", IsNullable = true)] public string Name { get; set; }
}
[XmlRoot(ElementName = "live", IsNullable = true)]
public class MethodLive {
[XmlElement(ElementName = "stream", IsNullable = true)] public List<Stream> Streams { get; set; }
[XmlElement(ElementName = "nclients", IsNullable = true)] public string NoClients { get; set; }
}
[XmlRoot(ElementName = "stream", IsNullable = true)]
public class Stream {
[XmlElement(ElementName = "client", IsNullable = true)] public List<Client> Clients { get; set; }
[XmlElement(ElementName = "meta", IsNullable = true)] public Meta Meta { get; set; }
[XmlElement(ElementName = "name", IsNullable = true)] public string Name { get; set; }
[XmlElement(ElementName = "time", IsNullable = true)] public string Time { get; set; }
[XmlElement(ElementName = "bw_in", IsNullable = true)] public string BwIn { get; set; }
[XmlElement(ElementName = "bytes_in", IsNullable = true)] public string BytesIn { get; set; }
[XmlElement(ElementName = "bw_out", IsNullable = true)] public string BwOut { get; set; }
[XmlElement(ElementName = "bytes_out", IsNullable = true)] public string BytesOut { get; set; }
[XmlElement(ElementName = "bw_audio", IsNullable = true)] public string BwAudio { get; set; }
[XmlElement(ElementName = "bw_video", IsNullable = true)] public string BwVideo { get; set; }
[XmlElement(ElementName = "bw_data", IsNullable = true)] public string BwData { get; set; }
[XmlElement(ElementName = "nclients", IsNullable = true)] public string NoClients { get; set; }
[XmlElement(ElementName = "active", IsNullable = true)] public object Active { get; set; }
[XmlElement(ElementName = "publishing", IsNullable = true)] public object Publishing { get; set; }
}
[XmlRoot(ElementName = "client", IsNullable = true)]
public class Client {
[XmlElement(ElementName = "id", IsNullable = true)] public string Id { get; set; }
[XmlElement(ElementName = "address", IsNullable = true)] public string Address { get; set; }
[XmlElement(ElementName = "port", IsNullable = true)] public string Port { get; set; }
[XmlElement(ElementName = "time", IsNullable = true)] public string Time { get; set; }
[XmlElement(ElementName = "flashver", IsNullable = true)] public string FlashVer { get; set; }
[XmlElement(ElementName = "swfurl", IsNullable = true)] public string SwfUrl { get; set; }
[XmlElement(ElementName = "bytes_in", IsNullable = true)] public string BytesIn { get; set; }
[XmlElement(ElementName = "bytes_out", IsNullable = true)] public string BytesOut { get; set; }
[XmlElement(ElementName = "dropped", IsNullable = true)] public string Dropped { get; set; }
[XmlElement(ElementName = "avsync", IsNullable = true)] public string AvSync { get; set; }
[XmlElement(ElementName = "timestamp", IsNullable = true)] public string Timestamp { get; set; }
[XmlElement(ElementName = "active", IsNullable = true)] public object Active { get; set; }
[XmlElement(ElementName = "publishing", IsNullable = true)] public object Publishing { get; set; }
}
[XmlRoot(ElementName = "meta", IsNullable = true)]
public class Meta {
[XmlElement(ElementName = "video", IsNullable = true)] public Video Video { get; set; }
[XmlElement(ElementName = "audio", IsNullable = true)] public Audio Audio { get; set; }
}
[XmlRoot(ElementName = "video", IsNullable = true)]
public class Video {
[XmlElement(ElementName = "width", IsNullable = true)] public string Width { get; set; }
[XmlElement(ElementName = "height", IsNullable = true)] public string Height { get; set; }
[XmlElement(ElementName = "frame_rate", IsNullable = true)] public string FrameRate { get; set; }
[XmlElement(ElementName = "codec", IsNullable = true)] public string Codec { get; set; }
[XmlElement(ElementName = "profile", IsNullable = true)] public string Profile { get; set; }
[XmlElement(ElementName = "compat", IsNullable = true)] public string Compat { get; set; }
[XmlElement(ElementName = "level", IsNullable = true)] public string Level { get; set; }
}
[XmlRoot(ElementName = "audio", IsNullable = true)]
public class Audio {
[XmlElement(ElementName = "codec", IsNullable = true)] public string Codec { get; set; }
[XmlElement(ElementName = "profile", IsNullable = true)] public string Profile { get; set; }
[XmlElement(ElementName = "channels", IsNullable = true)] public string Channels { get; set; }
[XmlElement(ElementName = "sample_rate", IsNullable = true)] public string SampleRate { get; set; }
}