forked from alexander-yakushev/awesompd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
awesompd.lua
791 lines (716 loc) · 25.1 KB
/
awesompd.lua
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
---------------------------------------------------------------------------
-- @author Alexander Yakushev <yakushev.alex@gmail.com>-- @copyright 2010 Alexander Yakushev
-- @release v0.5b
---------------------------------------------------------------------------
require('utf8')
local naughty = naughty
local awful = awful
-- Debug stuff:
local function dbg (...) return nil end
-- local function dbg (...) print (...) end
awesompd = {}
-- Constants
awesompd.MOUSE_LEFT = 1
awesompd.MOUSE_MIDDLE = 2
awesompd.MOUSE_RIGHT = 3
awesompd.MOUSE_SCROLL_UP = 4
awesompd.MOUSE_SCROLL_DOWN = 5
awesompd.NOTIFY_VOLUME = 1
awesompd.NOTIFY_REPEAT = 2
awesompd.NOTIFY_RANDOM = 3
awesompd.NOTIFY_SINGLE = 4
awesompd.NOTIFY_CONSUME = 5
awesompd.ESCAPE_SYMBOL_MAPPING = {}
awesompd.ESCAPE_SYMBOL_MAPPING["&"] = "&"
-- Icons
-- Helper function for loading icons.
-- Checks if an icon exists, and if it does, returns the path to icon, nil otherwise.
function awesompd.try_load(file)
local f = io.open(file)
if f then
io.close(f)
return file
else
return nil
end
end
function awesompd.load_icons(path)
awesompd.ICONS = {}
awesompd.ICONS.PLAY = awesompd.try_load(path .. "/play_icon.png")
awesompd.ICONS.PAUSE = awesompd.try_load(path .. "/pause_icon.png")
awesompd.ICONS.PLAY_PAUSE = awesompd.try_load(path .. "/play_pause_icon.png")
awesompd.ICONS.STOP = awesompd.try_load(path .. "/stop_icon.png")
awesompd.ICONS.NEXT = awesompd.try_load(path .. "/next_icon.png")
awesompd.ICONS.PREV = awesompd.try_load(path .. "/prev_icon.png")
awesompd.ICONS.CHECK = awesompd.try_load(path .. "/check_icon.png")
awesompd.ICONS.RADIO = awesompd.try_load(path .. "/radio_icon.png")
end
-- Function that returns a new awesompd object
function awesompd:create()
-- Initialization
instance = {}
setmetatable(instance,self)
self.__index = self
instance.current_server = 1
instance.widget = widget({ type = "textbox" })
instance.notification = nil
instance.scroll_pos = 1
instance.text = ""
instance.status = "Stopped"
instance.status_text = "Stopped"
instance.to_notify = false
instance.connected = true
instance.jamendo_list = {}
-- instance.promptbox = {}
-- for s = 1, screen.count() do
-- instance.promptbox[s] = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright })
-- end
instance.recreate_menu = true
instance.recreate_playback = true
instance.recreate_list = true
instance.recreate_servers = true
instance.recreate_options = true
instance.current_number = 0
instance.menu_shown = false
-- Default user options
instance.servers = { { server = "localhost", port = 6600 } }
instance.font = "Monospace"
instance.scrolling = true
instance.output_size = 30
instance.update_interval = 10
instance.path_to_icons = ""
instance.filename = awful.util.getdir ("cache").."/jamendo_cache"
-- Widget configuration
instance.widget:add_signal("mouse::enter", function(c)
instance:notify_track()
end)
instance.widget:add_signal("mouse::leave", function(c)
instance:remove_hint()
end)
return instance
end
-- Registers timers for the widget
function awesompd:run()
self:update_track()
-- self:update_state()
self:check_playlists()
self.load_icons(self.path_to_icons)
self:retrieve_cache()
self.update_widget_timer = timer({ timeout = 1 })
self.update_widget_timer:add_signal("timeout", function () self:update_widget() end)
self.update_widget_timer:start()
self.update_track_timer = timer({ timeout = self.update_interval })
self.update_track_timer:add_signal("timeout", function () self:update_track() end)
self.update_track_timer:start()
end
-- Slightly modified function awful.util.table.join
function awesompd.ajoin(buttons)
local result = {}
for i = 1, table.getn(buttons) do
if buttons[i] then
for k, v in pairs(buttons[i]) do
if type(k) == "number" then
table.insert(result, v)
else
result[k] = v
end
end
end
end
return result
end
-- Function that registers buttons on the widget.
function awesompd:register_buttons(buttons)
widget_buttons = {}
for b=1,table.getn(buttons) do
if type(buttons[b][1]) == "string" then
mods = { buttons[b][1] }
else
mods = buttons[b][1]
end
-- mods = self.split(buttons[b][1],"+")
table.insert(widget_buttons, awful.button(mods, buttons[b][2], buttons[b][3]))
end
self.widget:buttons(self.ajoin(widget_buttons))
end
-- /// Group of mpc command functions ///
function awesompd:command(com,hook)
io.popen(self:mpcquery() .. com):read("*all")
t = hook and hook(self)
end
function awesompd:command_toggle()
return function()
self:command("toggle",self.update_track)
end
end
function awesompd:command_next_track()
return function()
self:command("next",self.update_track)
end
end
function awesompd:command_prev_track()
return function()
self:command("seek 0")
self:command("prev",self.update_track)
end
end
function awesompd:command_play_specific(n)
return function()
self:command("play " .. n,self.update_track)
end
end
function awesompd:command_stop()
return function()
self:command("stop",self.update_track)
end
end
function awesompd:command_volume_up()
return function()
self:command("volume +5",self.update_track)
self:notify_state(self.NOTIFY_VOLUME)
end
end
function awesompd:command_volume_down()
return function()
self:command("volume -5",self.update_track)
self:notify_state(self.NOTIFY_VOLUME)
end
end
function awesompd:command_random_toggle()
return function()
self:command("random",self.update_track)
self:notify_state(self.NOTIFY_RANDOM)
end
end
function awesompd:command_repeat_toggle()
return function()
self:command("repeat",self.update_track)
self:notify_state(self.NOTIFY_REPEAT)
end
end
function awesompd:command_single_toggle()
return function()
self:command("single",self.update_track)
self:notify_state(self.NOTIFY_SINGLE)
end
end
function awesompd:command_consume_toggle()
return function()
self:command("consume",self.update_track)
self:notify_state(self.NOTIFY_CONSUME)
end
end
function awesompd:command_load_playlist(name)
return function()
self:command("load " .. name, function() self.recreate_menu = true end)
end
end
function awesompd:command_replace_playlist(name)
return function()
self:command("clear")
self:command("load " .. name)
self:command("play 1", self.update_track)
end
end
-- TODO: make usable prompt
function awesompd:command_echo_prompt()
return function()
self:run_prompt("Sample text: ",function(s)
self:add_hint("Prompt",s)
end)
end
end
-- /// End of mpc command functions ///
-- /// Menu generation functions ///
function awesompd:command_show_menu()
return function()
self:remove_hint()
if self.recreate_menu then
local new_menu = {}
if self.main_menu ~= nil then
self.main_menu:hide()
end
if self.connected then
self:check_list()
self:check_playlists()
table.insert(new_menu, { "Playback", self:get_playback_menu() })
table.insert(new_menu, { "Options", self:get_options_menu() })
table.insert(new_menu, { "List", self:get_list_menu() })
table.insert(new_menu, { "Playlists", self:get_playlists_menu() })
table.insert(new_menu, { "Jamendo Top 100", {
{ "MP3", self:add_jamendo_top("mp31", 100) },
{ "Ogg Vorbis", self:add_jamendo_top("ogg2", 500) },
}})
table.insert(new_menu, { "Jamendo Weekly by tag",
self:run_prompt("Tag:",
function (tag)
self:add_jamendo_weekly_by_tag("ogg2", 10, tag) ()
end)
})
table.insert(new_menu, { "Jamendo by artist",
self:run_prompt("Artist:",
function (tag)
self:add_jamendo_by_artist_name("ogg2", tag) ()
end)
})
end
table.insert(new_menu, { "Servers", self:get_servers_menu() })
self.main_menu = awful.menu({ items = new_menu,
width = 300
})
self.recreate_menu = false
end
self.main_menu:toggle()
end
end
--function awesompd:try_run_inter()
-- return function()
-- awful.prompt.run({ prompt = "Not used yet: " },
-- self.promptbox[1],
-- test_nau, nil,
-- nil)
-- end
--end
function awesompd:add_tracks_from_jamendo(parse_table,format)
if (table.getn(parse_table) > 0) then
local trygetlink =
assert(io.popen("echo $(curl -w %{redirect_url} " ..
"'http://api.jamendo.com/get2/stream/track/redirect/" ..
"?streamencoding="..format.."&id="..parse_table[1].id.."')"),'r'):read("*lines")
local _, _, prefix = string.find(trygetlink,"stream(%d+)\.jamendo\.com")
for i = 1,table.getn(parse_table) do
-- NB: Let's try the hardcoded links for now.
--
-- NB: Also, the quotes are highly recommended around the arguments to
-- `io.popen'.
--
-- local track_link = "\"http://api.jamendo.com/get2/stream/track/redirect/?streamencoding="..format.."&id="..parse_table[i].id.."\""
local track_link = "\"http://stream"..prefix..".jamendo.com/stream/" .. parse_table[i].id .."/".. format .."/\""
self:command("add " .. track_link)
self.jamendo_list[parse_table[i].id] = parse_table[i].artist .. " - " .. parse_table[i].track
end
end
end
function awesompd:add_jamendo(format,req) return
function ()
top_list = "curl -A 'Mozilla/4.0' -fsm 5 \"http://api.jamendo.com/get2/"..
"id+name+url+stream+album_name+album_url+album_id+artist_id+artist_name"..
"/track/jsonpretty/track_album+album_artist/?"..req.."\""
dbg (top_list)
bus = io.popen(top_list)
r = bus:read("*all")
parse_table = {}
string.gsub(r, "\"id\":(%d+),%s+\"name\":\"([^\"]+)[^%}]*\"artist_name\":\"([^\"]+)\"",function(_id,_track,_artist)
table.insert(parse_table,
{ id = _id,
track = (_track or ""),
artist = (_artist or "")})
end)
self:add_tracks_from_jamendo(parse_table,format)
self.recreate_menu = true
self.recreate_list = true
self:save_cache()
end
end
function awesompd:add_jamendo_top(format,n)
return self:add_jamendo(format, "n="..n.."&order=ratingweek_desc")
end
function awesompd:add_jamendo_weekly_by_tag(format,n,tag)
return self:add_jamendo(format, "n="..n.."&order=ratingweek_desc&tag_idstr="..tag)
end
local function url_encode (str)
if str then
local function repchar (c)
return string.format ("%%%02X", string.byte (c))
end
str = string.gsub (str, "\n", "\r\n")
str = string.gsub (str, "([^%w ])", repchar)
str = string.gsub (str, " ", "+")
end
return str
end
function awesompd:add_jamendo_by_artist_name(format,name)
return self:add_jamendo(format, "artist_name="..url_encode(name))
end
-- Returns the playback menu. Menu contains of:
-- Play\Pause - always
-- Previous - if the current track is not the first in the list and playback is not stopped
-- Next - if the current track is not the last in the list and playback is not stopped
-- Stop - if the playback is not stopped
function awesompd:get_playback_menu()
if self.recreate_playback then
local new_menu = {}
table.insert(new_menu, { "Play\\Pause", self:command_toggle(), self.ICONS.PLAY_PAUSE })
if self.connected and self.status ~= "Stopped" then
if self.current_number ~= 1 then
table.insert(new_menu, { "Prev: " .. awesompd.protect_string(self.list_array[self.current_number - 1]),
self:command_prev_track(), self.ICONS.PREV })
end
if self.current_number ~= table.getn(self.list_array) then
table.insert(new_menu, { "Next: " .. awesompd.protect_string(self.list_array[self.current_number + 1]),
self:command_next_track(), self.ICONS.NEXT })
end
table.insert(new_menu, { "Stop", self:command_stop(), self.ICONS.STOP })
end
self.recreate_playback = false
playback_menu = new_menu
end
return playback_menu
end
-- Returns the current playlist menu. Menu consists of all elements in the playlist.
function awesompd:get_list_menu()
if self.recreate_list then
local new_menu = {}
if self.list_array then
local total_count = table.getn(self.list_array)
local start_num = (self.current_number - 15 > 0) and self.current_number - 15 or 1
local end_num = (self.current_number + 15 < total_count ) and self.current_number + 15 or total_count
for i = start_num, end_num do
dbg (self.list_array[i])
-- NB: I comment this 'cause I have some nil entry problems in the
-- generated menu:
--
-- if (string.find(self.list_array[i],"jamendo.com")) then
-- table.insert(new_menu, { self.jamendo_list[awesompd.get_id_from_link(self.list_array[i])],
-- self:command_play_specific(i),
-- self.current_number == i and
-- (self.status == "Playing" and self.ICONS.PLAY or self.ICONS.PAUSE)
-- or nil} )
-- else
table.insert(new_menu, { awesompd.protect_string(self.list_array[i]),
self:command_play_specific(i),
self.current_number == i and
(self.status == "Playing" and self.ICONS.PLAY or self.ICONS.PAUSE)
or nil} )
-- end
end
end
self.recreate_list = false
self.list_menu = new_menu
end
return self.list_menu
end
-- Returns the playlists menu. Menu consists of all files in the playlist folder.
function awesompd:get_playlists_menu()
if self.recreate_playlists then
local new_menu = {}
if table.getn(self.playlists_array) > 0 then
for i = 1, table.getn(self.playlists_array) do
local submenu = {}
submenu[1] = { "Add to current", self:command_load_playlist(self.playlists_array[i]) }
submenu[2] = { "Replace current", self:command_replace_playlist(self.playlists_array[i]) }
new_menu[i] = { self.playlists_array[i], submenu }
end
table.insert(new_menu, {"", ""}) -- This is a separator
end
table.insert(new_menu, { "Refresh", function() self:check_playlists() end })
self.recreate_playlists = false
self.playlists_menu = new_menu
end
return self.playlists_menu
end
-- Returns the server menu. Menu consists of all servers specified by user during initialization.
function awesompd:get_servers_menu()
if self.recreate_servers then
local new_menu = {}
for i = 1, table.getn(self.servers) do
table.insert(new_menu, {"Server: " .. self.servers[i].server ..
", port: " .. self.servers[i].port,
function() self:change_server(i) end,
i == self.current_server and self.ICONS.RADIO or nil})
end
self.servers_menu = new_menu
end
return self.servers_menu
end
-- Returns the options menu. Menu works like checkboxes for it's elements.
function awesompd:get_options_menu()
if self.recreate_options then
local new_menu = {}
-- self:update_state()
table.insert(new_menu, { "Repeat", self:command_repeat_toggle(),
self.state_repeat == "on" and self.ICONS.CHECK or nil})
table.insert(new_menu, { "Random", self:command_random_toggle(),
self.state_random == "on" and self.ICONS.CHECK or nil})
table.insert(new_menu, { "Single", self:command_single_toggle(),
self.state_single == "on" and self.ICONS.CHECK or nil})
table.insert(new_menu, { "Consume", self:command_consume_toggle(),
self.state_consume == "on" and self.ICONS.CHECK or nil})
self.options_menu = new_menu
self.recreate_options = false
end
return self.options_menu
end
-- Checks if the current playlist has changed after the last check.
function awesompd:check_list()
local bus = io.popen(self:mpcquery() .. "playlist")
local info = bus:read("*all")
bus:close()
if info ~= self.list_line then
self.list_line = info
if string.len(info) > 0 then
self.list_array = self.split(string.sub(info,1,string.len(info)),"\n")
else
self.list_array = {}
end
self.recreate_menu = true
self.recreate_list = true
end
end
-- Checks if the collection of playlists changed after the last check.
function awesompd:check_playlists()
local bus = io.popen(self:mpcquery() .. "lsplaylists")
local info = bus:read("*all")
bus:close()
if info ~= self.playlists_line then
self.playlists_line = info
if string.len(info) > 0 then
self.playlists_array = self.split(info,"\n")
else
self.playlists_array = {}
end
self.recreate_menu = true
self.recreate_playlists = true
end
end
-- Changes the current server to the specified one.
function awesompd:change_server(server_number)
self.current_server = server_number
self:remove_hint()
self.recreate_menu = true
self.recreate_playback = true
self.recreate_list = true
self.recreate_playlists = true
self.recreate_servers = true
self:update_track()
-- self:update_state()
end
-- /// End of menu generation functions ///
function awesompd:add_hint(hint_title, hint_text)
self:remove_hint()
self.notification = naughty.notify({ title = hint_title
, text = awesompd.protect_string(hint_text)
, timeout = 5
, position = "top_right"
})
end
function awesompd:remove_hint()
if self.notification ~= nil then
naughty.destroy(self.notification)
self.notification = nil
end
end
function awesompd:notify_track()
if self.status ~= "Stopped" then
self:add_hint(self.status_text, self.text)
end
end
function awesompd:notify_state(state_changed)
state_array = { "Volume: " .. self.state_volume ,
"Repeat: " .. self.state_repeat ,
"Random: " .. self.state_random ,
"Single: " .. self.state_single ,
"Consume: " .. self.state_consume }
state_header = state_array[state_changed]
table.remove(state_array,state_changed)
full_state = state_array[1]
for i = 2, table.getn(state_array) do
full_state = full_state .. "\n" .. state_array[i]
end
self:add_hint(state_header, full_state)
end
function awesompd:wrap_output(text)
return '<span font="' .. self.font .. '"> ' ..
awesompd.protect_string (text) .. ' </span>'
end
function awesompd:retrieve_cache()
local bus = io.open(self.filename)
if bus then
for l in bus:lines() do
local _, _, id, track = string.find(l,"(%d+)-(.+)")
self.jamendo_list[id] = track
end
end
end
function awesompd:save_cache()
local bus = io.open(self.filename, "w")
for id,name in pairs(self.jamendo_list) do
bus:write(id.."-"..name.."\n")
end
bus:flush()
bus:close()
end
function awesompd.get_id_from_link(link)
local _, _, id = string.find(link,"stream/(%d+)")
return id
end
function awesompd.split (s,t)
local l = {n=0}
local f = function (s)
l.n = l.n + 1
l[l.n] = s
end
local p = "%s*(.-)%s*"..t.."%s*"
s = string.gsub(s,p,f)
l.n = l.n + 1
return l
end
function awesompd:mpcquery()
return "mpc -h " .. self.servers[self.current_server].server ..
" -p " .. self.servers[self.current_server].port .. " "
end
function awesompd:set_text(text)
self.widget.text = self:wrap_output(text)
end
function awesompd.find_pattern(text, pattern, start)
return utf8sub(text, string.find(text, pattern, start))
end
-- NB: If there may be escaped characters in `text' already, then we need to use
-- a different algorithm here (some sort of `pcdata' library instead of the
-- `utf8' one directly) so that we do not give malformed strings to the
-- widget. However, it is much simpler to scroll unescaped strings here, and
-- protect them upon update of the widget.
function awesompd:scroll_text(text)
local text = text
local result = text
if self.output_size < utf8len(text) then
text = text .. " - "
if self.scroll_pos + self.output_size - 1 > utf8len(text) then
result = utf8sub(text, self.scroll_pos)
result = result .. utf8sub(text, 1, self.scroll_pos + self.output_size - 1 - utf8len(text))
self.scroll_pos = self.scroll_pos + 1
if self.scroll_pos > utf8len(text) then
self.scroll_pos = 1
end
else
result = utf8sub(text, self.scroll_pos, self.scroll_pos + self.output_size - 1)
self.scroll_pos = self.scroll_pos + 1
end
end
return result
end
function awesompd:update_widget()
self:set_text(self:scroll_text(self.text))
self:check_notify()
end
function awesompd:check_notify()
if self.to_notify then
self:notify_track()
self.to_notify = false
end
end
function awesompd:notify_connect()
self:add_hint("Connected", "Connection established to " .. self.servers[self.current_server].server ..
" on port " .. self.servers[self.current_server].port)
end
function awesompd:notify_disconnect()
self:add_hint("Disconnected", "Cannot connect to " .. self.servers[self.current_server].server ..
" on port " .. self.servers[self.current_server].port)
end
function awesompd:update_track()
local bus = io.popen(self:mpcquery())
local info = bus:read("*all")
bus:close()
local info_ar = self.split(info,"\n")
if string.len(info) == 0 then
self.text = "Disconnected"
self.unique_text = self.text
if self.connected then
self:notify_disconnect()
self.connected = false
self.recreate_menu = true
end
else
if not self.connected then
self:notify_connect()
self.connected = true
self.recreate_menu = true
end
self:update_state(info)
if string.find(info_ar[1],"volume:") then
self.text = "MPD stopped"
self.unique_text = self.text
if self.status ~= "Stopped" then
self.status = "Stopped"
self.current_number = 0
self.recreate_menu = true
self.recreate_playback = true
self.recreate_list = true
end
else
-- delay character escaping until widget update.
local new_track = -- awesompd.protect_string(
info_ar[1]-- )
if new_track ~= self.unique_text then
if (string.find(new_track,"jamendo.com")) then
self.text = self.jamendo_list[awesompd.get_id_from_link(new_track)]
else
self.text = new_track
end
self.unique_text = new_track --<- NB: what does this mean? could it
--be `self.text' instead?
self.to_notify = true
self.recreate_menu = true
self.recreate_playback = true
self.recreate_list = true
self.current_number = tonumber(self.find_pattern(info_ar[2],"%d+"))
end
local tmp_pst = string.find(info_ar[2],"%d+%:%d+%/")
local progress = self.find_pattern(info_ar[2],"%#%d+/%d+") .. " " .. string.sub(info_ar[2],tmp_pst)
newstatus = "Playing"
if string.find(info_ar[2],"paused") then
newstatus = "Paused"
end
if newstatus ~= self.status then
self.to_notify = true
self.recreate_list = true
end
self.status = newstatus
self.status_text = self.status .. " " .. progress
end
end
end
function awesompd:update_state(state_string)
self.state_volume = self.find_pattern(state_string,"%d+%% ")
if string.find(state_string,"repeat: on") then
self.state_repeat = self:check_set_state(self.state_repeat, "on")
else
self.state_repeat = self:check_set_state(self.state_repeat, "off")
end
if string.find(state_string,"random: on") then
self.state_random = self:check_set_state(self.state_random, "on")
else
self.state_random = self:check_set_state(self.state_random, "off")
end
if string.find(state_string,"single: on") then
self.state_single = self:check_set_state(self.state_single, "on")
else
self.state_single = self:check_set_state(self.state_single, "off")
end
if string.find(state_string,"consume: on") then
self.state_consume = self:check_set_state(self.state_consume, "on")
else
self.state_consume = self:check_set_state(self.state_consume, "off")
end
end
function awesompd:check_set_state(statevar, val)
if statevar ~= val then
self.recreate_menu = true
self.recreate_options = true
end
return val
end
-- XXX: Note `mypromptbox' should be defined (usually in rc.lua).
function awesompd:run_prompt(welcome,hook)
return
function ()
awful.prompt.run({ prompt = welcome },
mypromptbox[mouse.screen].widget,
hook,
nil,
awful.util.getdir ("cache").."/jamendo_tag_cache")
end
end
function awesompd.protect_string(str)
return utf8replace(str, awesompd.ESCAPE_SYMBOL_MAPPING)
end