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
22declare(strict_types=1);
23
24namespace Ampache\Module\Album\Export\Writer;
25
26use Ampache\Repository\Model\Album;
27
28final class LinuxMetadataWriter implements MetadataWriterInterface
29{
30    public function write(
31        Album $album,
32        string $dirName,
33        string $iconFileName
34    ): void {
35        $meta_file = $dirName . '/.directory';
36        $string    = sprintf(
37            "Name=%s\nIcon=%s",
38            $album->f_name,
39            $iconFileName
40        );
41
42        $meta_handle = fopen($meta_file, 'w');
43        fwrite($meta_handle, $string);
44        fclose($meta_handle);
45    }
46}
47