yWeb: /control/getchannelinfo changed.

Line 1: servicename
Line 2: epg now
Line 3: epg now duration X/Y
Line 4: epg next


Origin commit data
------------------
Commit: 866fc19dd0
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2024-04-30 (Tue, 30 Apr 2024)



------------------
This commit was generated by Migit
This commit is contained in:
BPanther
2024-05-03 21:09:51 +02:00
committed by Thilo Graf
parent a1ac4f7b95
commit bca0d06e60

View File

@@ -774,22 +774,26 @@ void CControlAPI::GetChannelInfoCGI(CyhookHandler *hh)
result = hh->outObject("name", hh->outValue(channel->getName()) + "\n");
CShortEPGData epg;
CSectionsdClient::responseGetCurrentNextInfoChannelID currentNextInfo;
CEitManager::getInstance()->getCurrentNextServiceKey(channel->getChannelID(), currentNextInfo);
CSectionsdClient::CurrentNextInfo CurrentNext;
CEitManager::getInstance()->getCurrentNextServiceKey(channel_id, CurrentNext);
if (CEitManager::getInstance()->getEPGidShort(currentNextInfo.current_uniqueKey, &epg))
if (CurrentNext.flags & CSectionsdClient::epgflags::has_current)
{
result += hh->outObject("title", hh->outValue(epg.title) + "\n");
result += hh->outObject("epg_now", hh->outValue(CurrentNext.current_name) + "\n");
result += hh->outObject("duration", string_printf("%d/", (abs(time(NULL) - CurrentNext.current_zeit.startzeit) + 30) / 60) + string_printf("%d\n", CurrentNext.current_zeit.dauer / 60));
}
else
{
result += hh->outObject("epg_now", "\n");
result += hh->outObject("duration", "0/0\n");
}
CChannelEvent event;
NeutrinoAPI->GetChannelEvents();
NeutrinoAPI->GetChannelEvent(channel->getChannelID(), event);
if (event.eventID)
if (CurrentNext.flags & CSectionsdClient::epgflags::has_next)
{
result += hh->outObject("duration", string_printf("%d/", (time(NULL) - event.startTime) / 60) + string_printf("%d\n", event.duration / 60));
result += hh->outObject("epg_next", hh->outValue(CurrentNext.next_name) + "\n");
}
else
result += hh->outObject("epg_next", "\n");
hh->SendResult(result);
}