1<?php
2/*
3 * vim:set softtabstop=4 shiftwidth=4 expandtab:
4 *
5 * LICENSE: GNU Affero General Public License, version 3 (AGPL-3.0-or-later)
6 * Copyright 2001 - 2020 Ampache.org
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20 *
21 */
22
23namespace Ampache\Module\Art\Collector;
24
25final class ArtCollectorTypeEnum
26{
27    public const GOOGLE      = 'google';
28    public const MUSICBRAINZ = 'musicbrainz';
29    public const LASTFM      = 'lastfm';
30    public const SPOTIFY     = 'spotify';
31    public const DB          = 'db';
32    public const FOLDER      = 'folder';
33    public const META_TAGS   = 'tags';
34
35    /**
36     * @var CollectorModuleInterface[]
37     */
38    public const TYPE_CLASS_MAP = [
39        self::GOOGLE => GoogleCollectorModule::class,
40        self::MUSICBRAINZ => MusicbrainzCollectorModule::class,
41        self::LASTFM => LastFmCollectorModule::class,
42        self::SPOTIFY => SpotifyCollectorModule::class,
43        self::DB => DbCollectorModule::class,
44        self::FOLDER => FolderCollectorModule::class,
45        self::META_TAGS => MetaTagCollectorModule::class,
46    ];
47}
48