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
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
|
-- Copyright 2025 David Vazgenovich Shakaryan
local cacher = require('cacher')
local config = require('config')
local util = require('util')
local _catalogue = require('catalogue')
local _downloader = require('downloader')
local _epg = require('epg')
local _osd = require('osd')
local _state = require('state')
local _xc = require('xc')
local mp_utils = require('mp.utils')
local script_name = mp.get_script_name()
local script_dir = mp.get_script_directory()
local state = _state.new()
local downloader = _downloader.new()
local xc = _xc.new({
server = mp.get_opt('iptv_menu.xc_server'),
user = mp.get_opt('iptv_menu.xc_user'),
pass = mp.get_opt('iptv_menu.xc_pass'),
})
xc = cacher.wrap(xc, {
directory = config.cache_dir,
prefix = (xc.server:gsub('%W', '_')),
time = 24*60*60,
functions = {
get_live_categories = true,
get_live_streams = true,
get_vod_categories = true,
get_vod_streams = true,
get_vod_info = true,
get_series_categories = true,
get_series = true,
get_series_info = true,
get_epg = true,
},
})
local catalogue = _catalogue.new()
local epg = _epg.new()
local osd = _osd.new()
local key_bindings = {}
local function update_osd()
osd:redraw(state)
end
local function osd_menu_lines()
return osd:menu_lines(state)
end
-- FIXME leaving this here as a global for now since the image is downloaded
-- during osd redraw but this function has other dependencies
function get_image_path(url, dl)
local path = mp_utils.join_path(config.img_dir, url:gsub('%W', '_'))
local f = mp_utils.file_info(path)
if f then
return path
end
if dl then
downloader:schedule(url, path, function(_, file)
if osd.img and file == osd.img.path then
update_osd()
end
end)
return path
end
end
local function load_data()
local arr = {
{id = 'live', name = 'Live TV', type = 'live'},
{id = 'movie', name = 'Movies', type = 'vod'},
{id = 'series', name = 'Series', type = 'series'},
}
for _, v in ipairs(arr) do
v.categories = xc['get_' .. v.type .. '_categories'](xc)
v.elements = xc[
v.type == 'series' and 'get_series' or
('get_' .. v.type .. '_streams')](xc)
end
catalogue:load_xc_data(arr)
epg:load_xc_data(xc:get_epg())
local t = util.read_json_file(config.favourites_file)
state.favourites = t.favourites or {}
end
local function save_favourites()
util.write_json_file(
config.favourites_file, {favourites = state.favourites})
end
local function set_cursor(pos, opts)
state:menu():set_cursor(pos, osd_menu_lines(), opts)
if not (opts and opts.skip_redraw) then
update_osd()
end
end
local function cursor_up()
set_cursor(state:menu().cursor - 1)
end
local function cursor_down()
set_cursor(state:menu().cursor + 1)
end
local function cursor_start()
set_cursor(0)
end
local function cursor_end()
set_cursor(#state:menu().options)
end
local function cursor_page_up()
set_cursor(
state:menu().cursor - osd_menu_lines(), {keep_offset = true})
end
local function cursor_page_down()
set_cursor(
state:menu().cursor + osd_menu_lines(), {keep_offset = true})
end
local function cursor_to_object(id)
for i, v in ipairs(state:menu().options) do
if v.id == id then
set_cursor(i, {centre = true})
return
end
end
end
local function move_option(pos, opts)
local menu = state:menu()
if menu.group_id ~= 'favourites' or menu.sorted then
return
end
local prev_cursor = menu.cursor
local opts = opts or {}
opts.skip_redraw = true
set_cursor(pos, opts)
if menu.cursor == prev_cursor then
return
end
local opt = table.remove(menu.options, prev_cursor)
table.insert(menu.options, menu.cursor, opt)
local ind = state:favourited(opt.id)
if ind then
state:remove_favourite_at(ind)
state:insert_favourite_before_next_in_menu(opt.id)
save_favourites()
end
update_osd()
end
local function move_option_up()
move_option(state:menu().cursor - 1)
end
local function move_option_down()
move_option(state:menu().cursor + 1)
end
local function move_option_start()
move_option(0)
end
local function move_option_end()
move_option(#state:menu().options)
end
local function move_option_page_up()
move_option(
state:menu().cursor - osd_menu_lines(), {keep_offset = true})
end
local function move_option_page_down()
move_option(
state:menu().cursor + osd_menu_lines(), {keep_offset = true})
end
local function sort_options(options)
local scores = {}
for _, v in ipairs(options) do
local score = 0
if v.missing then
score = score - 4
end
if state:favourited(v.id) then
score = score + 2
end
if v.type == 'group' and v.group_type ~= 'series' then
score = score + 1
end
scores[v] = score
end
table.sort(options, function(a, b)
local sa = scores[a]
local sb = scores[b]
if sa ~= sb then
return sa > sb
else
return a.name < b.name
end
end)
end
local function add_programme(opt, time)
if opt.epg_channel_id then
local prog = epg:scheduled_programme(opt.epg_channel_id, time)
if prog then
opt.info = prog.title
end
end
end
local function group_count(group)
if group.children and not group.lazy then
local count = 0
for _, v in ipairs(group.children) do
if v.type == 'stream' or v.group_type == 'series' then
count = count + 1
elseif v.type == 'group' then
local c = group_count(v)
if c then
count = count + c
end
end
end
return count
elseif group.id == 'favourites' then
-- not recursive
return #state.favourites
end
end
local function favourites_group_menu_options(group)
local options = {}
local time = os.time()
for _, id in ipairs(state.favourites) do
local obj = catalogue:get(id)
if obj then
local path = {}
local curr = obj
while curr.parent_id and curr.parent_id ~= 'root' and
catalogue:get(curr.parent_id) do
curr = catalogue:get(curr.parent_id)
path[#path+1] = curr
end
obj = util.copy_table(obj)
add_programme(obj, time)
local c = group_count(obj)
if c then
obj.info = tostring(c)
end
if #path > 0 and curr.parent_id == 'root' then
util.reverse(path)
obj.path = path
end
options[#options+1] = obj
else
-- display missing favourites so that they can be
-- removed
options[#options+1] = {
id = id,
name = id,
missing = true,
}
end
end
return options
end
local function series_group_menu_options(series)
local info = xc:get_series_info(series.series_id)
if not info or not info.seasons then
return {}
end
local seasons = {}
for _, season in pairs(info.seasons) do
local episodes = {}
local season_num = tostring(season.season_number)
if info.episodes and info.episodes[season_num] then
for i, episode in pairs(info.episodes[season_num]) do
local epinfo = episode.info or {}
local t = {
name = util.strip(episode.title),
type = 'stream',
stream_type = 'series',
id = series.section .. ':stream:' ..
episode.id,
stream_id = episode.id,
image = util.strip_ne(
epinfo.movie_image),
}
t.info_data = {
name = t.name,
cover = t.image,
description = epinfo.plot,
releasedate = epinfo.releasedate,
duration = epinfo.duration,
video = epinfo.video,
audio = epinfo.audio,
}
episodes[#episodes+1] = t
end
end
local count = tostring(#episodes)
local tmp = util.strip_ne(season.episode_count)
if tmp then
count = count .. '/' .. tmp
end
local t = {
type = 'group',
group_type = 'season',
id = series.id .. ':season:' .. season.id,
children = episodes,
name = util.strip(season.name),
info = count,
image = util.strip_ne(season.cover_big) or
util.strip_ne(season.cover),
}
t.info_data = {
name = t.name,
cover = t.image,
description = season.overview,
releasedate = season.air_date,
num_episodes = count,
}
seasons[#seasons+1] = t
end
return seasons
end
local function group_menu_options(group)
if group.id == 'favourites' then
return favourites_group_menu_options(group)
end
if group.group_type == 'series' then
return series_group_menu_options(group)
end
local options = {}
local time = os.time()
for i, v in ipairs(group.children) do
v = util.copy_table(v)
add_programme(v, time)
local c = group_count(v)
if c then
v.info = tostring(c)
end
options[i] = v
end
return options
end
local function push_group_menu(group)
state:push_menu({
options = group_menu_options(group),
title = group.name,
type = 'group',
group_id = group.id,
})
update_osd()
end
-- refresh options when navigating up the stack to a previous favourites menu.
-- existing menu options are never removed, even if unfavourited. the new order
-- is always respected, while still preserving the relative order of existing
-- options when possible.
local function refresh_favourites_menu()
local menu = state:menu()
local opt = menu.options[menu.cursor]
local sorted = menu.sorted
if sorted then
menu.set_sort(false)
end
local options = group_menu_options(catalogue:get(menu.group_id))
local pos = {}
for i, v in ipairs(options) do
pos[v.id] = i
end
local res = {}
local seen = {}
local function append(v)
if not seen[v.id] then
res[#res+1] = v
seen[v.id] = true
end
end
local ind = 1
for _, v in ipairs(menu.options) do
if pos[v.id] then
while ind <= pos[v.id] do
append(options[ind])
ind = ind + 1
end
end
append(v)
end
for i = ind, #options do
append(options[i])
end
menu.options = res
if sorted then
menu.set_sort(true, sort_options)
end
if opt then
cursor_to_object(opt.id)
end
end
local function prev_menu()
state.depth = state.depth - 1
if state.depth == 0 then
-- reset main menu
push_group_menu(catalogue:get(state.menus[1].group_id))
else
if state:menu().group_id == 'favourites' then
refresh_favourites_menu()
end
update_osd()
end
end
local function play_stream(stream)
local url = stream.stream_url or
xc:stream_url(stream.stream_type, stream.stream_id)
if not url then
return
end
-- add a per-file option containing the stream id, allowing it to be
-- retrieved when a start-file event is received
mp.commandv('loadfile', url, 'replace', -1,
'script-opt=iptv_menu.playing_id=' .. stream.id)
end
local function select_option()
local menu = state:menu()
local opt = menu.options[menu.cursor]
if not opt or not opt.id then
return
end
if opt.type == 'group' then
push_group_menu(opt)
elseif opt.type == 'stream' then
play_stream(opt)
end
end
local function favourite_option()
local menu = state:menu()
local opt = menu.options[menu.cursor]
if not opt or not opt.id then
return
end
local ind = state:favourited(opt.id)
if ind then
state:remove_favourite_at(ind)
elseif menu.group_id == 'favourites' then
state:insert_favourite_before_next_in_menu(opt.id)
else
state:add_favourite(opt.id)
end
save_favourites()
update_osd()
end
local function goto_option()
local menu = state:menu()
local opt = menu.options[menu.cursor]
if not opt then
return
end
if menu.group_id == 'favourites' then
state.depth = 1
elseif menu.type == 'search' then
state.depth = state.depth - 1
if state:menu().group_id == 'favourites' then
refresh_favourites_menu()
end
end
if opt.path then
for i = 1, #opt.path do
cursor_to_object(opt.path[i].id)
push_group_menu(opt.path[i])
end
end
cursor_to_object(opt.id)
update_osd()
end
local function goto_playing()
if not state.playing_id then
return
end
local obj = catalogue:get(state.playing_id)
if not obj then
return
end
local path = {}
local curr = obj
while curr.parent_id and curr.parent_id ~= 'root' and
catalogue:get(curr.parent_id) do
curr = catalogue:get(curr.parent_id)
path[#path+1] = curr
end
if #path == 0 or curr.parent_id ~= 'root' then
return
end
state.depth = 1
for i = #path, 1, -1 do
cursor_to_object(path[i].id)
push_group_menu(path[i])
end
cursor_to_object(obj.id)
update_osd()
end
local function open_epg_programme(prog)
local options = {
{name = 'Title: ' .. prog.title},
{name = 'Start: ' .. os.date('%a %d %b %H:%M', prog.start)},
{name = 'Stop: ' .. os.date('%a %d %b %H:%M', prog.stop)},
}
if prog.desc then
options[#options+1] = {name = ' '}
for _, v in ipairs(util.wrap(prog.desc, 80)) do
options[#options+1] = {name = v}
end
end
state:push_menu({
options = options,
title = 'Programme: ' .. prog.title,
type = 'epg',
})
update_osd()
end
local function open_option_epg(opt)
local ch = opt.epg_channel_id:lower()
local progs = epg:channel_programmes(ch)
if not progs then
return
end
local options = {}
local curr = 0
local time = os.time()
for i, v in ipairs(progs) do
prog = {
name = os.date('%a %d %b %H:%M', v.start) .. ' ' ..
os.date('%H:%M', v.stop) .. ' ' .. v.title,
info = v.desc,
programme = v,
}
if curr == 0 and time >= v.start and time < v.stop then
curr = i
prog.active = true
end
options[i] = prog
end
state:push_menu({
options = options,
title = 'EPG: ' .. opt.name .. ' (' .. ch .. ')',
type = 'epg',
})
set_cursor(curr, {centre = true})
end
local function add_info_field(dst, k, v, fmt)
local str = util.strip_ne(v)
if not str then
return
end
if fmt then
str = string.format(fmt, str)
end
if k then
str = k .. ': ' .. str
end
-- continuation lines are 4 chars shorter and indented with 2 em spaces
for i, v in ipairs(util.wrap(str, 80, 76)) do
if i > 1 then
v = '\226\128\131\226\128\131' .. v
end
dst[#dst+1] = {name = v}
end
end
local function add_info_set(options, set)
if #set > 0 then
options[#options+1] = {name = ' '}
for _, v in ipairs(set) do
options[#options+1] = v
end
end
end
local function open_option_title_info(title, info)
if not info or not info.info then
return
end
local info = info.info
local options = {}
add_info_field(options, nil, info.name)
add_info_field(options, 'Directed by', info.director)
add_info_field(options, 'Starring', info.cast)
local desc = util.strip_ne(info.description) or
util.strip_ne(info.plot)
if desc then
options[#options+1] = {name = ' '}
for _, v in ipairs(util.wrap(desc, 80)) do
options[#options+1] = {name = v}
end
end
local set = {}
add_info_field(set, 'Genre', info.genre)
local date = util.strip_ne(info.releasedate) or
util.strip_ne(info.releaseDate)
if date then
local y, m, d = date:match('(%d+)-(%d+)-(%d+)')
if y then
local dt = {year = y, month = m, day = d}
add_info_field(set, 'Release date',
os.date('%d %B %Y', os.time(dt)))
end
end
add_info_field(set, 'Episode count', info.num_episodes)
add_info_field(set, 'Running time', info.duration)
add_info_set(options, set)
local set = {}
if info.video then
local w = util.strip_ne(info.video.width)
local h = util.strip_ne(info.video.height)
if w and h then
local res = w .. 'x' .. h
local ar = util.strip_ne(
info.video.display_aspect_ratio)
if ar then
res = res .. ' (' .. ar .. ')'
end
add_info_field(set, 'Resolution', res)
end
add_info_field(set, 'Video codec', info.video.codec_long_name)
end
if info.audio then
add_info_field(set, 'Audio codec', info.audio.codec_long_name)
end
if info.bitrate ~= 0 then
add_info_field(set, 'Bitrate', info.bitrate, '%s Kbps')
end
add_info_set(options, set)
local ytid = util.strip_ne(info.youtube_trailer)
if ytid then
local url = 'https://youtu.be/' .. ytid
add_info_set(options, {{
name = 'Trailer: ' .. url,
type = 'stream',
id = 'youtube:' .. ytid,
stream_url = url,
}})
end
local m = {
options = options,
title = title,
type = 'info',
}
local img = util.strip_ne(info.cover_big) or util.strip_ne(info.cover)
if img then
m.img_url = img
end
state:push_menu(m)
update_osd()
end
local function open_option_movie_info(opt)
open_option_title_info(
'Movie Info: ' .. opt.name,
xc:get_vod_info(opt.stream_id))
end
local function open_option_series_info(opt)
open_option_title_info(
'Series Info: ' .. opt.name,
xc:get_series_info(opt.series_id))
end
local function open_option_season_info(opt)
open_option_title_info(
'Season Info: ' .. opt.name,
{info = opt.info_data})
end
local function open_option_episode_info(opt)
open_option_title_info(
'Episode Info: ' .. opt.name,
{info = opt.info_data})
end
local function open_option_info()
local menu = state:menu()
local opt = menu.options[menu.cursor]
if not opt then
return
end
if menu.type == 'epg' and opt.programme then
open_epg_programme(opt.programme)
elseif opt.epg_channel_id then
open_option_epg(opt)
elseif opt.group_type == 'series' then
open_option_series_info(opt)
elseif opt.group_type == 'season' then
open_option_season_info(opt)
elseif opt.stream_type == 'series' then
open_option_episode_info(opt)
elseif opt.stream_type == 'movie' then
open_option_movie_info(opt)
end
end
local function search_menu_options_build(options, t, path)
local menu = state:menu()
local path = path or {}
for _, v in ipairs(options) do
local v = util.copy_table(v)
v.path = path
if v.type == 'group' and v.group_type ~= 'series' then
t.categories[#t.categories+1] = v
else
t.elements[#t.elements+1] = v
end
-- contents of lazy-loaded groups should not be searchable
if v.type == 'group' and not v.lazy then
local path = util.copy_table(path)
path[#path+1] = v
search_menu_options_build(
group_menu_options(v), t, path)
end
end
end
local function search_menu_options(options)
local t = {categories = {}, elements = {}}
search_menu_options_build(options, t)
-- display categories first
local ret = t.categories
for _, v in ipairs(t.elements) do
ret[#ret+1] = v
end
return ret
end
local function search_input_char(event)
if event.event ~= 'down' and event.event ~= 'repeat' then
return
end
local menu = state:menu()
menu:set_search_text(
menu.search_text:sub(1, menu.search_cursor - 1) ..
event.key_text ..
menu.search_text:sub(menu.search_cursor))
menu:set_search_cursor(menu.search_cursor + #event.key_text)
update_osd()
end
local function search_input_bs()
local menu = state:menu()
if menu.search_cursor <= 1 then
return
end
local pos = util.utf8_seek(menu.search_text, menu.search_cursor, -1)
menu:set_search_text(
menu.search_text:sub(1, pos - 1) ..
menu.search_text:sub(menu.search_cursor))
menu:set_search_cursor(pos)
update_osd()
end
local function search_input_del()
local menu = state:menu()
if menu.search_cursor > #menu.search_text then
return
end
menu:set_search_text(
menu.search_text:sub(1, menu.search_cursor - 1) ..
menu.search_text:sub(util.utf8_seek(
menu.search_text, menu.search_cursor, 1)))
update_osd()
end
local function set_search_cursor(pos)
if state:menu():set_search_cursor(pos) then
update_osd()
end
end
local function search_cursor_left()
local menu = state:menu()
set_search_cursor(util.utf8_seek(
menu.search_text, menu.search_cursor, -1))
end
local function search_cursor_right()
local menu = state:menu()
set_search_cursor(util.utf8_seek(
menu.search_text, menu.search_cursor, 1))
end
local function search_cursor_start()
set_search_cursor(1)
end
local function search_cursor_end()
set_search_cursor(#state:menu().search_text + 1)
end
local bind_search_keys
local bind_menu_keys
local function start_search()
local menu = state:menu()
local title = 'Searching: <text_with_cursor>' ..
' <colours.info>(<num_matches>/<num_total>)'
if menu.type == 'search' then
-- resuming search, save previous state
menu.prev_search_text = menu.search_text
menu.prev_cursor = menu.cursor
menu.prev_view_top = menu.view_top
menu.title = title
menu.search_active = true
menu:set_search_cursor(#menu.search_text + 1)
menu:set_cursor(1, osd_menu_lines())
else
menu = state:push_menu({
title = title,
type = 'search',
options = search_menu_options(menu.options),
search_active = true,
})
end
update_osd()
bind_search_keys()
end
local function end_search()
local menu = state:menu()
menu.search_active = false
menu.title = 'Search results: <text>' ..
' <colours.info>(<num_matches>/<num_total>)'
update_osd()
bind_menu_keys()
end
local function cancel_search()
local menu = state:menu()
-- cancelling resumed search restores previous state
if menu.prev_search_text then
menu:set_search_text(menu.prev_search_text)
menu.cursor = menu.prev_cursor
menu.view_top = menu.prev_view_top
end_search()
return
end
menu.search_active = false
state.depth = state.depth - 1
update_osd()
bind_menu_keys()
end
local function toggle_menu_sort()
local menu = state:menu()
if menu.type ~= 'group' and menu.type ~= 'search' then
return
end
menu:set_sort(not menu.sorted, sort_options)
update_osd()
end
local function bind_key(key, func, opts)
-- unique name is needed for removal
local i = #key_bindings+1
local name = 'key' .. i
key_bindings[i] = name
mp.add_forced_key_binding(key, name, func, opts)
end
local function unbind_keys()
for _, key in ipairs(key_bindings) do
mp.remove_key_binding(key)
end
key_bindings = {}
end
function bind_search_keys()
unbind_keys()
bind_key('ANY_UNICODE', search_input_char, {complex = true})
bind_key('BS', search_input_bs, {repeatable = true})
bind_key('DEL', search_input_del, {repeatable = true})
bind_key('ENTER', end_search)
bind_key('ESC', cancel_search)
bind_key('Ctrl+c', cancel_search)
bind_key('LEFT', search_cursor_left, {repeatable = true})
bind_key('RIGHT', search_cursor_right, {repeatable = true})
bind_key('Ctrl+a', search_cursor_start)
bind_key('Ctrl+e', search_cursor_end)
end
function bind_menu_keys()
unbind_keys()
bind_key('BS', prev_menu)
bind_key('/', start_search)
bind_key('Ctrl+s', toggle_menu_sort)
bind_key('ENTER', select_option)
bind_key('Ctrl+f', favourite_option)
bind_key('g', goto_option)
bind_key('i', open_option_info)
bind_key('?', open_option_info)
bind_key('Ctrl+p', goto_playing)
bind_key('j', cursor_down, {repeatable = true})
bind_key('k', cursor_up, {repeatable = true})
bind_key('UP', cursor_up, {repeatable = true})
bind_key('DOWN', cursor_down, {repeatable = true})
bind_key('HOME', cursor_start)
bind_key('END', cursor_end)
bind_key('PGUP', cursor_page_up, {repeatable = true})
bind_key('PGDWN', cursor_page_down, {repeatable = true})
bind_key('J', move_option_down, {repeatable = true})
bind_key('K', move_option_up, {repeatable = true})
bind_key('Shift+UP', move_option_up, {repeatable = true})
bind_key('Shift+DOWN', move_option_down, {repeatable = true})
bind_key('Shift+HOME', move_option_start)
bind_key('Shift+END', move_option_end)
bind_key('Shift+PGUP', move_option_page_up, {repeatable = true})
bind_key('Shift+PGDWN', move_option_page_down, {repeatable = true})
end
-- uses enable-section and disable-section to disable builtin key bindings
-- while the OSD is visible. these commands are technically deprecated for
-- non-internal use, but they still work, and there doesn't appear to be
-- another way apart from setting an override for each individual key.
--
-- might eventually change this to a selective override, since some of these
-- builtin keys could still be useful while the menus are open.
local function set_key_bindings()
if osd:is_hidden() then
unbind_keys()
mp.command_native({'enable-section', 'default'})
elseif state:menu().search_active then
bind_search_keys()
mp.command_native({'disable-section', 'default'})
else
bind_menu_keys()
mp.command_native({'disable-section', 'default'})
end
end
local function toggle_menu()
osd:toggle_hidden()
set_key_bindings()
end
mp.observe_property('osd-dimensions', 'native', function(_, val)
osd:resize(val.w, val.h)
update_osd()
end)
mp.register_event('start-file', function()
state.playing_id = mp.get_opt('iptv_menu.playing_id')
update_osd()
end)
mp.register_event('end-file', function()
state.playing_id = nil
update_osd()
end)
mp.command_native({'script-message', 'osc-idlescreen', 'no', ''})
load_data()
push_group_menu(catalogue:get('root'))
-- keys added via bind_key() are unbound when the OSD is closed, but we want
-- toggle-menu to work regardless of setting.
mp.add_forced_key_binding('TAB', 'toggle-menu', toggle_menu)
set_key_bindings()
|