Skip to content

Commit b31cc0e

Browse files
committed
Add ability to view and play album tracks
1 parent c6ef1c6 commit b31cc0e

File tree

5 files changed

+119
-43
lines changed

5 files changed

+119
-43
lines changed

src/actions/play.py

+26-25
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,35 @@
77
import sys
88

99
from mpd import MPDClient
10+
from util import open_mpd_client
1011

1112

1213
def main():
13-
parser = argparse.ArgumentParser()
14-
parser.add_argument('data')
15-
args = parser.parse_args()
16-
17-
data = json.loads(args.data)
18-
album, artist = data['album'], data.get('artist', '')
19-
20-
client = MPDClient()
21-
client.connect(os.getenv('MPD_HOST', 'localhost'), int(os.getenv('MPD_PORT', '6600')))
22-
client.clear()
23-
vars = {}
24-
if artist:
25-
client.findadd('album', album, 'artist', artist)
26-
vars['artist'] = artist
27-
else:
28-
client.findadd('album', album)
29-
print(json.dumps({
30-
"alfredworkflow": {
31-
"arg": album,
32-
"variables": vars
33-
}
34-
}))
35-
client.play()
36-
client.close()
14+
with open_mpd_client() as client:
15+
client.clear()
16+
variables = {}
17+
album = os.environ['ALFRED_MPD_ALBUM']
18+
query_args = ['album', album]
19+
20+
artist = os.environ.get('ALFRED_MPD_ARTIST')
21+
if artist:
22+
query_args += ['artist', artist]
23+
variables['artist'] = artist
24+
25+
track = os.environ.get('ALFRED_MPD_TRACK')
26+
if track:
27+
query_args += ['title', track]
28+
variables['track'] = track
29+
30+
client.findadd(*query_args)
31+
print(json.dumps({
32+
"alfredworkflow": {
33+
"arg": track or album,
34+
"variables": variables
35+
}
36+
}))
37+
client.play()
3738

3839

3940
if __name__ == '__main__':
40-
main()
41+
main()

src/filters/album.py

+17-17
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
import os
77
import sys
88

9-
from mpd import MPDClient
10-
11-
MPC_HOST = 'localhost'
12-
MPC_PORT = 6600
9+
from util import open_mpd_client
1310

1411

1512
def make_item(album_name, artist_name):
@@ -18,8 +15,13 @@ def make_item(album_name, artist_name):
1815
subtitle=artist_name,
1916
valid=True,
2017
arg=json.dumps({
21-
'album': album_name,
22-
'artist': artist_name,
18+
'alfredworkflow': {
19+
'arg': album_name,
20+
'variables': {
21+
'ALFRED_MPD_ALBUM': album_name,
22+
'ALFRED_MPD_ARTIST': artist_name,
23+
}
24+
}
2325
}),
2426
icon='icon.png',
2527
autocomplete=album_name,
@@ -31,17 +33,15 @@ def make_item(album_name, artist_name):
3133

3234

3335
def main():
34-
client = MPDClient()
35-
client.connect(os.getenv('MPD_HOST', 'localhost'), int(os.getenv('MPD_PORT', '6600')))
36-
artists = set(client.list('albumartist')) | set(client.list('artist'))
37-
print(json.dumps({
38-
'items': list(itertools.chain.from_iterable([
39-
make_item(album, artist)
40-
for album in client.list('album', 'artist', artist)
41-
]
42-
for artist in client.list('albumartist'))
43-
)}))
44-
client.close()
36+
with open_mpd_client() as client:
37+
# artists = set(client.list('albumartist')) | set(client.list('artist'))
38+
print(json.dumps({
39+
'items': list(itertools.chain.from_iterable([
40+
make_item(album, artist)
41+
for album in client.list('album', 'artist', artist)
42+
]
43+
for artist in client.list('albumartist'))
44+
)}))
4545

4646

4747
if __name__ == '__main__':

src/filters/query.py

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
from __future__ import unicode_literals
2+
from __future__ import print_function
3+
4+
import argparse
5+
import json
6+
import os
7+
import sys
8+
9+
from util import open_mpd_client
10+
11+
12+
def make_item(track_title, track_length, album_name, artist_name):
13+
playtime = '{:01}:{:02}'.format(*divmod(track_length, 60))
14+
return dict(
15+
title=track_title,
16+
subtitle=playtime,
17+
valid=True,
18+
arg=json.dumps({
19+
'alfredworkflow': {
20+
'arg': track_title,
21+
'variables': {
22+
'ALFRED_MPD_TRACK': track_title,
23+
}
24+
}
25+
}),
26+
icon='icon.png',
27+
autocomplete=track_title,
28+
text={
29+
'copy': track_title,
30+
'largetype': track_title
31+
}
32+
)
33+
34+
35+
def main():
36+
parser = argparse.ArgumentParser()
37+
parser.add_argument('query', nargs='+')
38+
args = parser.parse_args()
39+
40+
query_args = args.query
41+
42+
with open_mpd_client() as client:
43+
client.clear()
44+
album = os.environ['ALFRED_MPD_ALBUM']
45+
query_args = ['album', album]
46+
47+
artist = os.environ.get('ALFRED_MPD_ARTIST')
48+
if artist:
49+
query_args += ['artist', artist]
50+
51+
print(json.dumps({
52+
'items': [
53+
make_item(item['title'], int(item['time']), item.get('album'), item.get('artist'))
54+
for item in client.find(*query_args)
55+
]
56+
}))
57+
58+
59+
if __name__ == '__main__':
60+
sys.exit(main())

src/packager.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"mpd_logo.png",
66
"resources/*",
77
"filters/*",
8+
"actions/*",
89
"mpd.py",
9-
"actions/*"
10+
"util.py"
1011
]
1112
}

src/util.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from contextlib import contextmanager
2+
import os
3+
4+
from mpd import MPDClient
5+
6+
7+
@contextmanager
8+
def open_mpd_client(host=None, port=None):
9+
client = MPDClient()
10+
client.connect(host or os.getenv('MPD_HOST', 'localhost'),
11+
port or int(os.getenv('MPD_PORT', '6600')))
12+
yield client
13+
client.close()
14+
client.disconnect()

0 commit comments

Comments
 (0)