xref: /webtrees/app/Schema/SeedDefaultResnTable.php (revision 8fcd0d32e56ee262912bbdb593202cfd1cbc1615)
1c9beb871SGreg Roach<?php
2c9beb871SGreg Roach/**
3c9beb871SGreg Roach * webtrees: online genealogy
4*8fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5c9beb871SGreg Roach * This program is free software: you can redistribute it and/or modify
6c9beb871SGreg Roach * it under the terms of the GNU General Public License as published by
7c9beb871SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8c9beb871SGreg Roach * (at your option) any later version.
9c9beb871SGreg Roach * This program is distributed in the hope that it will be useful,
10c9beb871SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11c9beb871SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12c9beb871SGreg Roach * GNU General Public License for more details.
13c9beb871SGreg Roach * You should have received a copy of the GNU General Public License
14c9beb871SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15c9beb871SGreg Roach */
16c9beb871SGreg Roachdeclare(strict_types=1);
17c9beb871SGreg Roach
18c9beb871SGreg Roachnamespace Fisharebest\Webtrees\Schema;
19c9beb871SGreg Roach
20c9beb871SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
21c9beb871SGreg Roach
22c9beb871SGreg Roach/**
23c9beb871SGreg Roach * Populate the default_resn table
24c9beb871SGreg Roach */
25c9beb871SGreg Roachclass SeedDefaultResnTable implements SeedInterface
26c9beb871SGreg Roach{
27c9beb871SGreg Roach    private const DEFAULT_RESTRICTIONS = [
28c9beb871SGreg Roach        'SSN'  => 'confidential',
29c9beb871SGreg Roach        'SOUR' => 'privacy',
30c9beb871SGreg Roach        'REPO' => 'privacy',
31c9beb871SGreg Roach        'SUBM' => 'confidential',
32c9beb871SGreg Roach        'SUBN' => 'confidential',
33c9beb871SGreg Roach    ];
34c9beb871SGreg Roach
35c9beb871SGreg Roach    /**
36c9beb871SGreg Roach     *  Run the seeder.
37c9beb871SGreg Roach     *
38c9beb871SGreg Roach     * @return void
39c9beb871SGreg Roach     */
40c9beb871SGreg Roach    public function run(): void
41c9beb871SGreg Roach    {
42c9beb871SGreg Roach        // Set default privacy settings for new trees
43c9beb871SGreg Roach        foreach (self::DEFAULT_RESTRICTIONS as $tag_type => $resn) {
44c9beb871SGreg Roach            DB::table('default_resn')->updateOrInsert([
45c9beb871SGreg Roach                'gedcom_id' => -1,
46c9beb871SGreg Roach                'tag_type'  => $tag_type,
47c9beb871SGreg Roach            ], [
48c9beb871SGreg Roach                'resn'      => $resn,
49c9beb871SGreg Roach            ]);
50c9beb871SGreg Roach        }
51c9beb871SGreg Roach    }
52c9beb871SGreg Roach}
53