-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemms-idapi.el
55 lines (38 loc) · 1.65 KB
/
emms-idapi.el
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
;;; emms-idapi.el --- EMMS Music ID API support -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2024 Free Software Foundation, Inc.
;; Author: Yoni Rabkin <[email protected]>
;; This file is part of EMMS.
;; EMMS is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; EMMS is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
;; License for more details.
;; You should have received a copy of the GNU General Public License
;; along with EMMS; see the file COPYING. If not, write to the Free
;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
;; MA 02110-1301, USA.
;;; Commentary:
;;
;;; Code:
(require 'emms-idapi-musicbrainz)
(defvar emms-idapi-services-alist
'((musicbrainz . ((search-f . emms-idapi-musicbrainz-search)
(name . "MusicBrainz")
(website . "https://musicbrainz.org/"))))
"Association list of services supported by IDAPI.")
(defvar emms-idapi-service nil
"The music search service currently in use.")
(defun emms-idapi-search (service search-term-alist)
"Search against SERVICE for SEARCH-TERM-ALIST."
(let ((search-function (alist-get 'search-f
(alist-get service
emms-idapi-services-alist))))
(if (not search-function)
(error "`%s' is an unsupported service." service))
(funcall search-function search-term-alist)))
(provide 'emms-idapi)
;;; emms-idapi.el ends here