Compare commits

...

2 Commits

Author SHA1 Message Date
3816c29612 thoroughly check sponsorblock segments 2023-04-06 16:00:15 -04:00
2baaa4b1ef report sponsor check status 2023-04-06 14:17:31 -04:00
2 changed files with 36 additions and 11 deletions

View File

@ -30,15 +30,16 @@ namespace ttrss_co_client
labelsWRTFeed.Where(l => l.@checked).Select(l => l.caption).Contains(fa.triggerlabelCaption))?.ToList();
if (actionsForFeed != null && actionsForFeed.Any())
{
if(!(await SponsorCheck(hl)))
var sponsorCheck = await SponsorCheck(hl);
if(!sponsorCheck.Item1)
{
await ttrssClient.UpdateArticleNote($"{hl.note}\n[{DateTime.Now.ToLongTimeString()}] waiting for sponsorblock", hl.id);
await ttrssClient.UpdateArticleNote($"{hl.note}\n[{DateTime.Now.ToLongTimeString()}] sponsorcheck: {sponsorCheck.Item2}", hl.id);
continue;
}
foreach (var action in actionsForFeed)
{
Console.WriteLine($" {hl.title} -> action: {action.command}");
var noteString = hl.note;
var noteString = $"{hl.note}\n[{DateTime.Now.ToLongTimeString()}] sponsorcheck: {sponsorCheck.Item2}";
ttrss.datastructures.Label nameLabel;
string podcastName;
if (!string.IsNullOrWhiteSpace(noteString))
@ -295,12 +296,11 @@ namespace ttrss_co_client
return new Tuple<bool, string>(false, $"{e.ToString()}: {e.Message}.\n{e.StackTrace}");
}
}
public static async Task<bool> SponsorCheck(ttrss.datastructures.Headline hl)
private static async Task<Tuple<bool, string>> SponsorCheck(ttrss.datastructures.Headline hl)
{
if(!hl.link.Host.EndsWith("youtube.com"))
{
//sponsorblock, sadly, only exists for youtube
return true;
return new Tuple<bool, string>(true, "sponsorblock, sadly, only exists for youtube");
}
var match = Regex.Match(hl.link.Query, "v=([^&]+)(&|$)");
var videoId = match.Groups?[1].Value;
@ -314,18 +314,27 @@ namespace ttrss_co_client
updateTimestamp = updateTimestamp.AddSeconds(hl.updated).ToLocalTime();
if(DateTime.Now - updateTimestamp > TimeSpan.FromMinutes(45))
{
Console.WriteLine($"updated {updateTimestamp} (more than 45 minutes ago), going to give up waiting for sponsorblock");
return true;
return new Tuple<bool, string>(true, $"updated {updateTimestamp} (more than 45 minutes ago), going to give up waiting for sponsorblock");
}
else
{
Console.WriteLine($"going to wait a bit for segments to show up.");
return false;
return new Tuple<bool, string>(false, "none found, waiting");
}
}
else
{
return true;
try
{
var segments = JsonConvert.DeserializeObject<IEnumerable<sponsorblock.Segment>>(await sponsorblockcheck.Content.ReadAsStringAsync());
if(segments.Count() > 1)
{
return new Tuple<bool, string>(true, $"{segments.Count()} segments");
}
else
{
return new Tuple<bool, string>(false, $"no segments");
}
}
}
}
}

16
sponosrblock/Segment.cs Normal file
View File

@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace ttrss_co_client.sponsorblock
{
public class Segment
{
public string category { get; set; }
public string actionType { get; set; }
public double[] segment { get; set; } //start time, end time
public string UUID { get; set; }
public double videoDuration { get; set; } //yes, this is repeated in each segment
public int locked { get; set; }
public int votes { get; set; }
public string description { get; set; }
}
}