1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
|
#include "ControlServer.h"
#include "SubscriptionManager.h"
#include "plex.h"
//////////////////////////////////////////////////////////////////////////////
// cOsdMenu
//////////////////////////////////////////////////////////////////////////////
static std::shared_ptr<plexclient::Plexservice> pPlexService;
std::shared_ptr<plexclient::Plexservice> cPlexBrowser::pLastService;
int cPlexBrowser::lastCurrentItem;
cPlexBrowser::cPlexBrowser(const char *title, std::shared_ptr<plexclient::Plexservice> Service) :cOsdMenu(title)
{
dsyslog("[plex]%s:\n", __FUNCTION__);
pService = Service;
pService->Authenticate();
if(pService == pLastService) {
pCont = pService->GetLastSection(true);
} else {
pCont = pService->GetSection(pService->StartUri);
}
SetMenuCategory(mcRecording);
CreateMenu();
}
cPlexBrowser* cPlexBrowser::RecoverLastState()
{
if (cPlexBrowser::pLastService != NULL) {
cPlexBrowser* pBrowser = new cPlexBrowser("", cPlexBrowser::pLastService);
return pBrowser;
}
return NULL;
}
void cPlexBrowser::CreateMenu()
{
// Clear Menu
Clear();
// Directory or Video?
if(pCont && pCont->m_vDirectories.size() > 0) {
for(std::vector<plexclient::Directory>::iterator it = pCont->m_vDirectories.begin(); it != pCont->m_vDirectories.end(); ++it) {
plexclient::Directory *pDir = &(*it);
Add(new cPlexOsdItem( tr(pDir->GetTitle().c_str()), pDir) );
}
}
if(pCont && pCont->m_vVideos.size() > 0) {
for(std::vector<plexclient::Video>::iterator it = pCont->m_vVideos.begin(); it != pCont->m_vVideos.end(); ++it) {
plexclient::Video *vid = &(*it); // cast raw pointer
Add(new cPlexOsdItem( vid->GetTitle().c_str(), vid) );
}
}
if(Count() < 1) {
Add(new cPlexOsdItem("Empty"));
} else if (pService == pLastService) {
// recover last selected item
cOsdItem* item = Get(lastCurrentItem);
SetCurrent(item);
pLastService = NULL;
}
Display();
}
eOSState cPlexBrowser::ProcessKey(eKeys key)
{
eOSState state;
// call standard function
state = cOsdMenu::ProcessKey(key);
int current = Current(); // get current menu item index
cPlexOsdItem *item = static_cast<cPlexOsdItem*>(Get(current));
if(item->IsVideo()) {
if(item->GetAttachedVideo()->m_iViewCount > 0) SetHelp(tr("Info"), tr("Unscrobble"));
else SetHelp(tr("Info"), tr("Scrobble"));
} else {
SetHelp(NULL);
}
switch (state) {
case osUnknown:
switch (key) {
case kOk:
return ProcessSelected();
case kBack:
return LevelUp();
case kRed:
std::cout << "RED";
if(item->IsVideo()) {
std::cout << " Video Info";
}
std::cout << std::endl;
break;
case kGreen:
if(item->IsVideo()) {
if(item->GetAttachedVideo()->m_iViewCount > 0) {
if(item->GetAttachedVideo()->SetUnwatched()) {
item->GetAttachedVideo()->UpdateFromServer();
}
} else {
if(item->GetAttachedVideo()->SetWatched()) {
item->GetAttachedVideo()->UpdateFromServer();
}
}
}
if(item->GetAttachedVideo()->m_iViewCount > 0) SetHelp(tr("Info"), tr("Unscrobble"));
else SetHelp(tr("Info"), tr("Scrobble"));
break;
default:
break;
}
break;
case osBack:
state = LevelUp();
if (state == osEnd) { // top level reached
return osPlugin;
}
default:
break;
}
return state;
}
eOSState cPlexBrowser::LevelUp()
{
pCont = pService->GetLastSection();
if(!pCont) {
cPlayMenu::eShow = menuShow::MAIN;
return osEnd;
}
cString title = cString::sprintf(tr("Browse Plex - %s"), tr(pCont->m_sTitle1.c_str()));
SetTitle(title);
CreateMenu();
return osContinue;
}
eOSState cPlexBrowser::ProcessSelected()
{
int current = Current(); // get current menu item index
cPlexOsdItem *item = static_cast<cPlexOsdItem*>(Get(current));
if(item->IsVideo()) {
pLastService = pService;
lastCurrentItem = current;
cMyPlugin::PlayFile(*item->GetAttachedVideo());
return osEnd;
}
if(item->IsDir()) {
plexclient::Directory* pDir = item->GetAttachedDirectory();
pCont = pService->GetSection(pDir->m_sKey);
cString title = cString::sprintf(tr("Browse Plex - %s"), tr(pDir->m_sTitle.c_str()));
SetTitle(title);
CreateMenu();
return osContinue;
}
//return osEnd;
return osContinue;
}
cPlexInfo::cPlexInfo(plexclient::Video* video) : cOsdMenu(video->GetTitle().c_str())
{
cOsdMenu::Display();
Add(new cOsdItem(video->m_sSummary.c_str()));
}
eOSState cPlexInfo::ProcessKey(eKeys Key)
{
switch (int(Key)) {
case kUp|k_Repeat:
case kUp:
case kDown|k_Repeat:
case kDown:
case kLeft|k_Repeat:
case kLeft:
case kRight|k_Repeat:
case kRight:
DisplayMenu()->Scroll(NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft, NORMALKEY(Key) == kLeft || NORMALKEY(Key) == kRight);
cStatus::MsgOsdTextItem(NULL, NORMALKEY(Key) == kUp || NORMALKEY(Key) == kLeft);
return osContinue;
case kInfo:
return osBack;
default:
break;
}
eOSState state = cOsdMenu::ProcessKey(Key);
if (state == osUnknown) {
switch (Key) {
case kGreen:
cRemote::Put(Key, true);
case kOk:
return osBack;
default:
break;
}
}
return state;
}
//////////////////////////////////////////////////////////////////////////////
// cOsdMenu
//////////////////////////////////////////////////////////////////////////////
menuShow cPlayMenu::eShow = MAIN;
/**
** Play menu constructor.
*/
cPlayMenu::cPlayMenu(const char *title, int c0, int c1, int c2, int c3, int c4)
:cOsdMenu(title, c0, c1, c2, c3, c4)
{
SetHasHotkeys();
for(std::vector<plexclient::PlexServer>::iterator it = plexclient::plexgdm::GetInstance().GetPlexservers().begin(); it != plexclient::plexgdm::GetInstance().GetPlexservers().end(); ++it) {
//&(*it)
auto s1 = std::make_shared<plexclient::Plexservice>( &(*it) );
s1->StartUri = "/library/sections";
Add(new cPlexOsdItem(Poco::format(tr("%s - Library"), it->GetServerName()).c_str(), s1));
auto s2 = std::make_shared<plexclient::Plexservice>( &(*it) );
s2->StartUri = "/video";
Add(new cPlexOsdItem(Poco::format(tr("%s - Video Channels"), it->GetServerName()).c_str(), s2 ));
}
if(Count() < 1) {
Add(new cPlexOsdItem(tr("No Plex Media Server found.")), false);
}
}
/**
** Play menu destructor.
*/
cPlayMenu::~cPlayMenu()
{
}
/**
** Handle play plugin menu key event.
**
** @param key key event
*/
eOSState cPlayMenu::ProcessKey(eKeys key)
{
eOSState state;
//if (key != kNone) {
// dsyslog("[plex]%s: key=%d\n", __FUNCTION__, key);
//}
// call standard function
state = cOsdMenu::ProcessKey(key);
int current = Current(); // get current menu item index
cPlexOsdItem *item = static_cast<cPlexOsdItem*>(Get(current));
switch (state) {
case osUnknown:
switch (key) {
case kOk:
pPlexService = item->GetAttachedService();
cPlayMenu::eShow = menuShow::BROWSER;
return osPlugin; // restart with OSD browser
default:
break;
}
default:
break;
}
return state;
}
//////////////////////////////////////////////////////////////////////////////
// cPlugin
//////////////////////////////////////////////////////////////////////////////
volatile bool cMyPlugin::CalledFromCode = false;
/**
** Initialize any member variables here.
**
** @note DON'T DO ANYTHING ELSE THAT MAY HAVE SIDE EFFECTS, REQUIRE GLOBAL
** VDR OBJECTS TO EXIST OR PRODUCE ANY OUTPUT!
*/
cMyPlugin::cMyPlugin(void)
{
}
/**
** Clean up after yourself!
*/
cMyPlugin::~cMyPlugin(void)
{
plexclient::plexgdm::GetInstance().stopRegistration();
plexclient::ControlServer::GetInstance().Stop();
}
/**
** Return plugin version number.
**
** @returns version number as constant string.
*/
const char *cMyPlugin::Version(void)
{
return VERSION;
}
/**
** Return plugin short description.
**
** @returns short description as constant string.
*/
const char *cMyPlugin::Description(void)
{
return DESCRIPTION;
}
/**
** Start any background activities the plugin shall perform.
*/
bool cMyPlugin::Initialize(void)
{
// First Startup? Save UUID
SetupStore("UUID", Config::GetInstance().GetUUID().c_str());
plexclient::plexgdm::GetInstance().clientDetails(Config::GetInstance().GetUUID(), DESCRIPTION, "3200", "VDR", VERSION);
plexclient::plexgdm::GetInstance().Start();
plexclient::ControlServer::GetInstance().Start();
return true;
}
/**
** Create main menu entry.
*/
const char *cMyPlugin::MainMenuEntry(void)
{
return Config::GetInstance().HideMainMenuEntry ? NULL : MAINMENUENTRY;
}
/**
** Perform the action when selected from the main VDR menu.
*/
cOsdObject *cMyPlugin::MainMenuAction(void)
{
//dsyslog("[plex]%s:\n", __FUNCTION__);
if(CalledFromCode) {
CalledFromCode = false;
return cPlexBrowser::RecoverLastState();
}
if (cPlayMenu::eShow == menuShow::BROWSER) {
return new cPlexBrowser(tr("Browse Plex"), pPlexService);
}
return new cPlayMenu("Plex");
}
/**
** Called for every plugin once during every cycle of VDR's main program
** loop.
*/
void cMyPlugin::MainThreadHook(void)
{
// dsyslog("[plex]%s:\n", __FUNCTION__);
// Start Tasks, e.g. Play Video
if(plexclient::ActionManager::GetInstance().IsAction()) {
PlayFile(plexclient::ActionManager::GetInstance().GetAction());
}
}
/**
** Return our setup menu.
*/
cMenuSetupPage *cMyPlugin::SetupMenu(void)
{
//dsyslog("[plex]%s:\n", __FUNCTION__);
return new cMyMenuSetupPage;
}
/**
** Parse setup parameters
**
** @param name paramter name (case sensetive)
** @param value value as string
**
** @returns true if the parameter is supported.
*/
bool cMyPlugin::SetupParse(const char *name, const char *value)
{
//dsyslog("[plex]%s: '%s' = '%s'\n", __FUNCTION__, name, value);
if (strcasecmp(name, "HideMainMenuEntry") == 0) Config::GetInstance().HideMainMenuEntry = atoi(value) ? true : false;
else if (strcasecmp(name, "UsePlexAccount") == 0) Config::GetInstance().UsePlexAccount = atoi(value) ? true : false;
else if (strcasecmp(name, "UseCustomTranscodeProfile") == 0) Config::GetInstance().UseCustomTranscodeProfile = atoi(value) ? true : false;
else if (strcasecmp(name, "Username") == 0) Config::GetInstance().s_username = std::string(value);
else if (strcasecmp(name, "Password") == 0) Config::GetInstance().s_password = std::string(value);
else if (strcasecmp(name, "UUID") == 0) Config::GetInstance().SetUUID(value);
else return false;
return true;
}
/**
** Play a file.
**
** @param filename path and file name
*/
void cMyPlugin::PlayFile(plexclient::Video Vid)
{
isyslog("[plex]: play file '%s'\n", Vid.m_sKey.c_str());
if(Vid.m_iMyPlayOffset == 0 && Vid.m_lViewoffset > 0 ) {
cString message = cString::sprintf(tr("To start from %ld minutes, press Ok."), Vid.m_lViewoffset / 60000);
eKeys response = Skins.Message(eMessageType::mtInfo, message, 5);
if(response == kOk) {
Vid.m_iMyPlayOffset = Vid.m_lViewoffset/1000;
}
}
cControl* control = cHlsPlayerControl::Create(Vid);
if(control) {
cControl::Launch(control);
}
}
VDRPLUGINCREATOR(cMyPlugin); // Don't touch this!
|