summaryrefslogtreecommitdiffstats
path: root/xbmc/pvr/PVRContextMenus.cpp
blob: 724872d20258dc9a7e34f934666d68f645cc16da (plain)
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
/*
 *  Copyright (C) 2016-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#include "PVRContextMenus.h"

#include "ContextMenuItem.h"
#include "FileItem.h"
#include "ServiceBroker.h"
#include "guilib/LocalizeStrings.h"
#include "pvr/PVRManager.h"
#include "pvr/addons/PVRClient.h"
#include "pvr/addons/PVRClientMenuHooks.h"
#include "pvr/addons/PVRClients.h"
#include "pvr/channels/PVRChannel.h"
#include "pvr/channels/PVRChannelGroupsContainer.h"
#include "pvr/epg/EpgInfoTag.h"
#include "pvr/guilib/PVRGUIActionsEPG.h"
#include "pvr/guilib/PVRGUIActionsPlayback.h"
#include "pvr/guilib/PVRGUIActionsRecordings.h"
#include "pvr/guilib/PVRGUIActionsTimers.h"
#include "pvr/recordings/PVRRecording.h"
#include "pvr/recordings/PVRRecordings.h"
#include "pvr/recordings/PVRRecordingsPath.h"
#include "pvr/timers/PVRTimerInfoTag.h"
#include "pvr/timers/PVRTimers.h"
#include "pvr/timers/PVRTimersPath.h"
#include "utils/URIUtils.h"

#include <memory>
#include <string>

namespace PVR
{
namespace CONTEXTMENUITEM
{
#define DECL_STATICCONTEXTMENUITEM(clazz) \
  class clazz : public CStaticContextMenuAction \
  { \
  public: \
    explicit clazz(uint32_t label) : CStaticContextMenuAction(label) {} \
    bool IsVisible(const CFileItem& item) const override; \
    bool Execute(const CFileItemPtr& item) const override; \
  };

#define DECL_CONTEXTMENUITEM(clazz) \
  class clazz : public IContextMenuItem \
  { \
  public: \
    std::string GetLabel(const CFileItem& item) const override; \
    bool IsVisible(const CFileItem& item) const override; \
    bool Execute(const CFileItemPtr& item) const override; \
  };

DECL_STATICCONTEXTMENUITEM(PlayEpgTag);
DECL_STATICCONTEXTMENUITEM(PlayRecording);
DECL_CONTEXTMENUITEM(ShowInformation);
DECL_STATICCONTEXTMENUITEM(ShowChannelGuide);
DECL_STATICCONTEXTMENUITEM(FindSimilar);
DECL_STATICCONTEXTMENUITEM(StartRecording);
DECL_STATICCONTEXTMENUITEM(StopRecording);
DECL_STATICCONTEXTMENUITEM(AddTimerRule);
DECL_CONTEXTMENUITEM(EditTimerRule);
DECL_STATICCONTEXTMENUITEM(DeleteTimerRule);
DECL_CONTEXTMENUITEM(EditTimer);
DECL_CONTEXTMENUITEM(DeleteTimer);
DECL_STATICCONTEXTMENUITEM(EditRecording);
DECL_CONTEXTMENUITEM(DeleteRecording);
DECL_STATICCONTEXTMENUITEM(UndeleteRecording);
DECL_STATICCONTEXTMENUITEM(DeleteWatchedRecordings);
DECL_CONTEXTMENUITEM(ToggleTimerState);
DECL_STATICCONTEXTMENUITEM(AddReminder);
DECL_STATICCONTEXTMENUITEM(ExecuteSearch);
DECL_STATICCONTEXTMENUITEM(EditSearch);
DECL_STATICCONTEXTMENUITEM(RenameSearch);
DECL_STATICCONTEXTMENUITEM(DeleteSearch);

class PVRClientMenuHook : public IContextMenuItem
{
public:
  explicit PVRClientMenuHook(const CPVRClientMenuHook& hook) : m_hook(hook) {}

  std::string GetLabel(const CFileItem& item) const override;
  bool IsVisible(const CFileItem& item) const override;
  bool Execute(const CFileItemPtr& item) const override;

  const CPVRClientMenuHook& GetHook() const { return m_hook; }

private:
  const CPVRClientMenuHook m_hook;
};

std::shared_ptr<CPVRTimerInfoTag> GetTimerInfoTagFromItem(const CFileItem& item)
{
  std::shared_ptr<CPVRTimerInfoTag> timer;

  const std::shared_ptr<CPVREpgInfoTag> epg(item.GetEPGInfoTag());
  if (epg)
    timer = CServiceBroker::GetPVRManager().Timers()->GetTimerForEpgTag(epg);

  if (!timer)
    timer = item.GetPVRTimerInfoTag();

  return timer;
}

///////////////////////////////////////////////////////////////////////////////
// Play epg tag

bool PlayEpgTag::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVREpgInfoTag> epg(item.GetEPGInfoTag());
  if (epg)
    return epg->IsPlayable();

  return false;
}

bool PlayEpgTag::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Playback>().PlayEpgTag(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Play recording

bool PlayRecording::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRRecording> recording =
      CServiceBroker::GetPVRManager().Recordings()->GetRecordingForEpgTag(item.GetEPGInfoTag());
  if (recording)
    return !recording->IsDeleted();

  return false;
}

bool PlayRecording::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Playback>().PlayRecording(
      *item, true /* bCheckResume */);
}

///////////////////////////////////////////////////////////////////////////////
// Show information (epg, recording)

std::string ShowInformation::GetLabel(const CFileItem& item) const
{
  if (item.GetPVRRecordingInfoTag())
    return g_localizeStrings.Get(19053); /* Recording Information */

  return g_localizeStrings.Get(19047); /* Programme information */
}

bool ShowInformation::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRChannel> channel(item.GetPVRChannelInfoTag());
  if (channel)
    return channel->GetEPGNow().get() != nullptr;

  if (item.HasEPGInfoTag())
    return !item.GetEPGInfoTag()->IsGapTag();

  const std::shared_ptr<CPVRTimerInfoTag> timer(item.GetPVRTimerInfoTag());
  if (timer && !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER))
    return timer->GetEpgInfoTag().get() != nullptr;

  if (item.GetPVRRecordingInfoTag())
    return true;

  return false;
}

bool ShowInformation::Execute(const CFileItemPtr& item) const
{
  if (item->GetPVRRecordingInfoTag())
    return CServiceBroker::GetPVRManager().Get<PVR::GUI::Recordings>().ShowRecordingInfo(*item);

  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().ShowEPGInfo(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Show channel guide

bool ShowChannelGuide::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRChannel> channel(item.GetPVRChannelInfoTag());
  if (channel)
    return channel->GetEPGNow().get() != nullptr;

  return false;
}

bool ShowChannelGuide::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().ShowChannelEPG(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Find similar

bool FindSimilar::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRChannel> channel(item.GetPVRChannelInfoTag());
  if (channel)
    return channel->GetEPGNow().get() != nullptr;

  if (item.HasEPGInfoTag())
    return !item.GetEPGInfoTag()->IsGapTag();

  const std::shared_ptr<CPVRTimerInfoTag> timer(item.GetPVRTimerInfoTag());
  if (timer && !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER))
    return timer->GetEpgInfoTag().get() != nullptr;

  const std::shared_ptr<CPVRRecording> recording(item.GetPVRRecordingInfoTag());
  if (recording)
    return !recording->IsDeleted();

  return false;
}

bool FindSimilar::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().FindSimilar(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Start recording

bool StartRecording::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRClient> client = CServiceBroker::GetPVRManager().GetClient(item);

  std::shared_ptr<CPVRChannel> channel = item.GetPVRChannelInfoTag();
  if (channel)
    return client && client->GetClientCapabilities().SupportsTimers() &&
           !CServiceBroker::GetPVRManager().Timers()->IsRecordingOnChannel(*channel);

  const std::shared_ptr<CPVREpgInfoTag> epg = item.GetEPGInfoTag();
  if (epg && epg->IsRecordable())
  {
    if (epg->IsGapTag())
    {
      channel = CServiceBroker::GetPVRManager().ChannelGroups()->GetChannelForEpgTag(epg);
      if (channel)
      {
        return client && client->GetClientCapabilities().SupportsTimers() &&
               !CServiceBroker::GetPVRManager().Timers()->IsRecordingOnChannel(*channel);
      }
    }
    else
    {
      return client && client->GetClientCapabilities().SupportsTimers() &&
             !CServiceBroker::GetPVRManager().Timers()->GetTimerForEpgTag(epg);
    }
  }
  return false;
}

bool StartRecording::Execute(const CFileItemPtr& item) const
{
  const std::shared_ptr<CPVREpgInfoTag> epgTag = item->GetEPGInfoTag();
  if (!epgTag || epgTag->IsActive())
  {
    // instant recording
    std::shared_ptr<CPVRChannel> channel;
    if (epgTag)
      channel = CServiceBroker::GetPVRManager().ChannelGroups()->GetChannelForEpgTag(epgTag);

    if (!channel)
      channel = item->GetPVRChannelInfoTag();

    if (channel)
      return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().SetRecordingOnChannel(channel,
                                                                                           true);
  }

  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().AddTimer(*item, false);
}

///////////////////////////////////////////////////////////////////////////////
// Stop recording

bool StopRecording::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRRecording> recording(item.GetPVRRecordingInfoTag());
  if (recording && recording->IsInProgress())
    return true;

  std::shared_ptr<CPVRChannel> channel = item.GetPVRChannelInfoTag();
  if (channel)
    return CServiceBroker::GetPVRManager().Timers()->IsRecordingOnChannel(*channel);

  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  if (timer && !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER))
    return timer->IsRecording();

  const std::shared_ptr<CPVREpgInfoTag> epg = item.GetEPGInfoTag();
  if (epg && epg->IsGapTag())
  {
    channel = CServiceBroker::GetPVRManager().ChannelGroups()->GetChannelForEpgTag(epg);
    if (channel)
      return CServiceBroker::GetPVRManager().Timers()->IsRecordingOnChannel(*channel);
  }

  return false;
}

bool StopRecording::Execute(const CFileItemPtr& item) const
{
  const std::shared_ptr<CPVREpgInfoTag> epgTag = item->GetEPGInfoTag();
  if (epgTag && epgTag->IsGapTag())
  {
    // instance recording
    const std::shared_ptr<CPVRChannel> channel =
        CServiceBroker::GetPVRManager().ChannelGroups()->GetChannelForEpgTag(epgTag);
    if (channel)
      return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().SetRecordingOnChannel(channel,
                                                                                           false);
  }

  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().StopRecording(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Edit recording

bool EditRecording::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRRecording> recording(item.GetPVRRecordingInfoTag());
  if (recording && !recording->IsDeleted() && !recording->IsInProgress())
  {
    return CServiceBroker::GetPVRManager().Get<PVR::GUI::Recordings>().CanEditRecording(item);
  }
  return false;
}

bool EditRecording::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Recordings>().EditRecording(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Delete recording

std::string DeleteRecording::GetLabel(const CFileItem& item) const
{
  const std::shared_ptr<CPVRRecording> recording(item.GetPVRRecordingInfoTag());
  if (recording && recording->IsDeleted())
    return g_localizeStrings.Get(19291); /* Delete permanently */

  return g_localizeStrings.Get(117); /* Delete */
}

bool DeleteRecording::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRClient> client = CServiceBroker::GetPVRManager().GetClient(item);
  if (client && !client->GetClientCapabilities().SupportsRecordingsDelete())
    return false;

  const std::shared_ptr<CPVRRecording> recording(item.GetPVRRecordingInfoTag());
  if (recording && !recording->IsInProgress())
    return true;

  // recordings folder?
  if (item.m_bIsFolder &&
      CServiceBroker::GetPVRManager().Clients()->AnyClientSupportingRecordingsDelete())
  {
    const CPVRRecordingsPath path(item.GetPath());
    return path.IsValid() && !path.IsRecordingsRoot();
  }

  return false;
}

bool DeleteRecording::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Recordings>().DeleteRecording(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Undelete recording

bool UndeleteRecording::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRRecording> recording(item.GetPVRRecordingInfoTag());
  if (recording && recording->IsDeleted())
    return true;

  return false;
}

bool UndeleteRecording::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Recordings>().UndeleteRecording(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Delete watched recordings

bool DeleteWatchedRecordings::IsVisible(const CFileItem& item) const
{
  // recordings folder?
  if (item.m_bIsFolder && !item.IsParentFolder())
    return CPVRRecordingsPath(item.GetPath()).IsValid();

  return false;
}

bool DeleteWatchedRecordings::Execute(const std::shared_ptr<CFileItem>& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Recordings>().DeleteWatchedRecordings(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Add reminder

bool AddReminder::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVREpgInfoTag> epg = item.GetEPGInfoTag();
  if (epg && !CServiceBroker::GetPVRManager().Timers()->GetTimerForEpgTag(epg) &&
      epg->StartAsLocalTime() > CDateTime::GetCurrentDateTime())
    return true;

  return false;
}

bool AddReminder::Execute(const std::shared_ptr<CFileItem>& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().AddReminder(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Activate / deactivate timer or timer rule

std::string ToggleTimerState::GetLabel(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(item.GetPVRTimerInfoTag());
  if (timer && !timer->IsDisabled())
    return g_localizeStrings.Get(844); /* Deactivate */

  return g_localizeStrings.Get(843); /* Activate */
}

bool ToggleTimerState::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(item.GetPVRTimerInfoTag());
  if (!timer || URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER) ||
      timer->IsBroken())
    return false;

  return timer->GetTimerType()->SupportsEnableDisable();
}

bool ToggleTimerState::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().ToggleTimerState(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Add timer rule

bool AddTimerRule::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVREpgInfoTag> epg = item.GetEPGInfoTag();
  return (epg && !epg->IsGapTag() &&
          !CServiceBroker::GetPVRManager().Timers()->GetTimerForEpgTag(epg));
}

bool AddTimerRule::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().AddTimerRule(*item, true, true);
}

///////////////////////////////////////////////////////////////////////////////
// Edit timer rule

std::string EditTimerRule::GetLabel(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  if (timer && !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER))
  {
    const std::shared_ptr<CPVRTimerInfoTag> parentTimer(
        CServiceBroker::GetPVRManager().Timers()->GetTimerRule(timer));
    if (parentTimer)
    {
      if (!parentTimer->GetTimerType()->IsReadOnly())
        return g_localizeStrings.Get(19243); /* Edit timer rule */
    }
  }

  return g_localizeStrings.Get(19304); /* View timer rule */
}

bool EditTimerRule::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  if (timer && !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER))
    return timer->HasParent();

  return false;
}

bool EditTimerRule::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().EditTimerRule(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Delete timer rule

bool DeleteTimerRule::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  if (timer && !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER))
  {
    const std::shared_ptr<CPVRTimerInfoTag> parentTimer(
        CServiceBroker::GetPVRManager().Timers()->GetTimerRule(timer));
    if (parentTimer)
      return parentTimer->GetTimerType()->AllowsDelete();
  }

  return false;
}

bool DeleteTimerRule::Execute(const CFileItemPtr& item) const
{
  auto& timers = CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>();
  const std::shared_ptr<CFileItem> parentTimer = timers.GetTimerRule(*item);
  if (parentTimer)
    return timers.DeleteTimerRule(*parentTimer);

  return false;
}

///////////////////////////////////////////////////////////////////////////////
// Edit / View timer

std::string EditTimer::GetLabel(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  if (timer)
  {
    const std::shared_ptr<CPVRTimerType> timerType = timer->GetTimerType();
    if (item.GetEPGInfoTag())
    {
      if (timerType->IsReminder())
        return g_localizeStrings.Get(timerType->IsReadOnly() ? 829 /* View reminder */
                                                             : 830); /* Edit reminder */
      else
        return g_localizeStrings.Get(timerType->IsReadOnly() ? 19241 /* View timer */
                                                             : 19242); /* Edit timer */
    }
    else
      return g_localizeStrings.Get(timerType->IsReadOnly() ? 21483 : 21450); /* View/Edit */
  }
  return g_localizeStrings.Get(19241); /* View timer */
}

bool EditTimer::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  return timer && (!item.GetEPGInfoTag() ||
                   !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER));
}

bool EditTimer::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().EditTimer(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Delete timer

std::string DeleteTimer::GetLabel(const CFileItem& item) const
{
  if (item.GetPVRTimerInfoTag())
    return g_localizeStrings.Get(117); /* Delete */

  const std::shared_ptr<CPVREpgInfoTag> epg = item.GetEPGInfoTag();
  if (epg)
  {
    const std::shared_ptr<CPVRTimerInfoTag> timer =
        CServiceBroker::GetPVRManager().Timers()->GetTimerForEpgTag(epg);
    if (timer && timer->IsReminder())
      return g_localizeStrings.Get(827); /* Delete reminder */
  }
  return g_localizeStrings.Get(19060); /* Delete timer */
}

bool DeleteTimer::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRTimerInfoTag> timer(GetTimerInfoTagFromItem(item));
  if (timer &&
      (!item.GetEPGInfoTag() ||
       !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER)) &&
      !timer->IsRecording())
    return timer->GetTimerType()->AllowsDelete();

  return false;
}

bool DeleteTimer::Execute(const CFileItemPtr& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::Timers>().DeleteTimer(*item);
}

///////////////////////////////////////////////////////////////////////////////
// PVR Client menu hook

std::string PVRClientMenuHook::GetLabel(const CFileItem& item) const
{
  return m_hook.GetLabel();
}

bool PVRClientMenuHook::IsVisible(const CFileItem& item) const
{
  const std::shared_ptr<CPVRClient> client = CServiceBroker::GetPVRManager().GetClient(item);
  if (!client || m_hook.GetAddonId() != client->ID())
    return false;

  if (m_hook.IsAllHook())
    return !item.m_bIsFolder &&
           !URIUtils::PathEquals(item.GetPath(), CPVRTimersPath::PATH_ADDTIMER);
  else if (m_hook.IsEpgHook())
    return item.IsEPG();
  else if (m_hook.IsChannelHook())
    return item.IsPVRChannel();
  else if (m_hook.IsDeletedRecordingHook())
    return item.IsDeletedPVRRecording();
  else if (m_hook.IsRecordingHook())
    return item.IsUsablePVRRecording();
  else if (m_hook.IsTimerHook())
    return item.IsPVRTimer();
  else
    return false;
}

bool PVRClientMenuHook::Execute(const CFileItemPtr& item) const
{
  const std::shared_ptr<CPVRClient> client = CServiceBroker::GetPVRManager().GetClient(*item);
  if (!client)
    return false;

  if (item->IsEPG())
    return client->CallEpgTagMenuHook(m_hook, item->GetEPGInfoTag()) == PVR_ERROR_NO_ERROR;
  else if (item->IsPVRChannel())
    return client->CallChannelMenuHook(m_hook, item->GetPVRChannelInfoTag()) == PVR_ERROR_NO_ERROR;
  else if (item->IsDeletedPVRRecording())
    return client->CallRecordingMenuHook(m_hook, item->GetPVRRecordingInfoTag(), true) ==
           PVR_ERROR_NO_ERROR;
  else if (item->IsUsablePVRRecording())
    return client->CallRecordingMenuHook(m_hook, item->GetPVRRecordingInfoTag(), false) ==
           PVR_ERROR_NO_ERROR;
  else if (item->IsPVRTimer())
    return client->CallTimerMenuHook(m_hook, item->GetPVRTimerInfoTag()) == PVR_ERROR_NO_ERROR;
  else
    return false;
}

///////////////////////////////////////////////////////////////////////////////
// Execute saved search

bool ExecuteSearch::IsVisible(const CFileItem& item) const
{
  return item.HasEPGSearchFilter();
}

bool ExecuteSearch::Execute(const std::shared_ptr<CFileItem>& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().ExecuteSavedSearch(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Edit saved search

bool EditSearch::IsVisible(const CFileItem& item) const
{
  return item.HasEPGSearchFilter();
}

bool EditSearch::Execute(const std::shared_ptr<CFileItem>& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().EditSavedSearch(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Rename saved search

bool RenameSearch::IsVisible(const CFileItem& item) const
{
  return item.HasEPGSearchFilter();
}

bool RenameSearch::Execute(const std::shared_ptr<CFileItem>& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().RenameSavedSearch(*item);
}

///////////////////////////////////////////////////////////////////////////////
// Delete saved search

bool DeleteSearch::IsVisible(const CFileItem& item) const
{
  return item.HasEPGSearchFilter();
}

bool DeleteSearch::Execute(const std::shared_ptr<CFileItem>& item) const
{
  return CServiceBroker::GetPVRManager().Get<PVR::GUI::EPG>().DeleteSavedSearch(*item);
}

} // namespace CONTEXTMENUITEM

CPVRContextMenuManager& CPVRContextMenuManager::GetInstance()
{
  static CPVRContextMenuManager instance;
  return instance;
}

CPVRContextMenuManager::CPVRContextMenuManager()
  : m_items({
        std::make_shared<CONTEXTMENUITEM::PlayEpgTag>(19190), /* Play programme */
        std::make_shared<CONTEXTMENUITEM::PlayRecording>(19687), /* Play recording */
        std::make_shared<CONTEXTMENUITEM::ShowInformation>(),
        std::make_shared<CONTEXTMENUITEM::ShowChannelGuide>(19686), /* Channel guide */
        std::make_shared<CONTEXTMENUITEM::FindSimilar>(19003), /* Find similar */
        std::make_shared<CONTEXTMENUITEM::ToggleTimerState>(),
        std::make_shared<CONTEXTMENUITEM::AddTimerRule>(19061), /* Add timer */
        std::make_shared<CONTEXTMENUITEM::EditTimerRule>(),
        std::make_shared<CONTEXTMENUITEM::DeleteTimerRule>(19295), /* Delete timer rule */
        std::make_shared<CONTEXTMENUITEM::EditTimer>(),
        std::make_shared<CONTEXTMENUITEM::DeleteTimer>(),
        std::make_shared<CONTEXTMENUITEM::StartRecording>(264), /* Record */
        std::make_shared<CONTEXTMENUITEM::StopRecording>(19059), /* Stop recording */
        std::make_shared<CONTEXTMENUITEM::EditRecording>(21450), /* Edit */
        std::make_shared<CONTEXTMENUITEM::DeleteRecording>(),
        std::make_shared<CONTEXTMENUITEM::UndeleteRecording>(19290), /* Undelete */
        std::make_shared<CONTEXTMENUITEM::DeleteWatchedRecordings>(19327), /* Delete watched */
        std::make_shared<CONTEXTMENUITEM::AddReminder>(826), /* Set reminder */
        std::make_shared<CONTEXTMENUITEM::ExecuteSearch>(137), /* Search */
        std::make_shared<CONTEXTMENUITEM::EditSearch>(21450), /* Edit */
        std::make_shared<CONTEXTMENUITEM::RenameSearch>(118), /* Rename */
        std::make_shared<CONTEXTMENUITEM::DeleteSearch>(117), /* Delete */
    })
{
}

void CPVRContextMenuManager::AddMenuHook(const CPVRClientMenuHook& hook)
{
  if (hook.IsSettingsHook())
    return; // settings hooks are not handled using context menus

  const auto item = std::make_shared<CONTEXTMENUITEM::PVRClientMenuHook>(hook);
  m_items.emplace_back(item);
  m_events.Publish(PVRContextMenuEvent(PVRContextMenuEventAction::ADD_ITEM, item));
}

void CPVRContextMenuManager::RemoveMenuHook(const CPVRClientMenuHook& hook)
{
  if (hook.IsSettingsHook())
    return; // settings hooks are not handled using context menus

  for (auto it = m_items.begin(); it < m_items.end(); ++it)
  {
    const CONTEXTMENUITEM::PVRClientMenuHook* cmh =
        dynamic_cast<const CONTEXTMENUITEM::PVRClientMenuHook*>((*it).get());
    if (cmh && cmh->GetHook() == hook)
    {
      m_events.Publish(PVRContextMenuEvent(PVRContextMenuEventAction::REMOVE_ITEM, *it));
      m_items.erase(it);
      return;
    }
  }
}

} // namespace PVR