} break;
-
+ case 3: { // I do not know
+ // First get the recording
+ cRecordings Recordings;
+ Recordings.Load();
+ cRecording *recording = Recordings.GetByName((char*) req.primary_name.c_str());
+ ScraperGetPosterThumb getter;
+ getter.recording = recording;
+ getter.event = NULL;
+ if (x->scraper && recording) {
+ x->scraper->Service("GetPosterThumb",&getter);
+ return getter.poster.path;
+ } else {
+ return std::string("");
+ }
+ }; break;
default:
return std::string("");
break;
#include "vompclient.h"
#include "services/scraper2vdr.h"
#include <queue>
+#include <string>
struct TVMediaRequest{
ULONG streamID;
ULONG type_pict;
ULONG container;
ULONG container_member;
+ std::string primary_name;
};
class PictureReader : public Thread
const static ULONG VDR_GETSCRAPERMOVIEINFO = 39;
const static ULONG VDR_GETSCRAPERSERIESINFO = 40;
const static ULONG VDR_LOADTVMEDIA =41;
+const static ULONG VDR_LOADTVMEDIARECTHUMB =42;
const static ULONG VDR_SHUTDOWN = 666;
class VDR_Command : public SerializableList {
case VDR_LOADTVMEDIA:
result = processLoadTvMedia();
break;
+ case VDR_LOADTVMEDIARECTHUMB:
+ result = processLoadTvMediaRecThumb();
+ break;
#endif
case VDR_GETMEDIALIST:
result = processGetMediaList();
return 1;
}
+
+int VompClientRRProc::processLoadTvMediaRecThumb()
+{
+ TVMediaRequest tvreq;
+ tvreq.streamID = req->requestID;
+ tvreq.type = 3; // unknown but primary_name is set
+ tvreq.primary_id = 0;
+ tvreq.primary_name = std::string((const char*) req->data);
+ tvreq.secondary_id = 0;
+ tvreq.type_pict = 1;
+ tvreq.container = 0;
+ tvreq.container_member = 0;
+ log->log("RRProc", Log::DEBUG, "TVMedia request %d %s",req->requestID,req->data);
+ x.pict->addTVMediaRequest(tvreq);
+
+
+ resp->finalise();
+
+ x.tcp.sendPacket(resp->getPtr(), resp->getLen());
+
+ return 1;
+}
+
int processGetScraperMovieInfo();
int processGetScraperSeriesInfo();
int processLoadTvMedia();
+ int processLoadTvMediaRecThumb();
#endif
int processLogin();
int processConfigSave();