1c9beb871SGreg Roach<?php 23976b470SGreg Roach 3c9beb871SGreg Roach/** 4c9beb871SGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6c9beb871SGreg Roach * This program is free software: you can redistribute it and/or modify 7c9beb871SGreg Roach * it under the terms of the GNU General Public License as published by 8c9beb871SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9c9beb871SGreg Roach * (at your option) any later version. 10c9beb871SGreg Roach * This program is distributed in the hope that it will be useful, 11c9beb871SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12c9beb871SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13c9beb871SGreg Roach * GNU General Public License for more details. 14c9beb871SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16c9beb871SGreg Roach */ 17fcfa147eSGreg Roach 18c9beb871SGreg Roachdeclare(strict_types=1); 19c9beb871SGreg Roach 20c9beb871SGreg Roachnamespace Fisharebest\Webtrees\Schema; 21c9beb871SGreg Roach 22*6f4ec3caSGreg Roachuse Fisharebest\Webtrees\DB; 23c9beb871SGreg Roach 24c9beb871SGreg Roach/** 25c9beb871SGreg Roach * Populate the user table 26c9beb871SGreg Roach */ 27c9beb871SGreg Roachclass SeedUserTable implements SeedInterface 28c9beb871SGreg Roach{ 29c9beb871SGreg Roach /** 30c9beb871SGreg Roach * Run the seeder. 31c9beb871SGreg Roach * 32c9beb871SGreg Roach * @return void 33c9beb871SGreg Roach */ 34c9beb871SGreg Roach public function run(): void 35c9beb871SGreg Roach { 36c9beb871SGreg Roach // Add a "default" user, to store default settings 37736b8b72SGreg Roach 38736b8b72SGreg Roach if (DB::connection()->getDriverName() === 'sqlsrv') { 393f0c8e3fSGreg Roach DB::connection()->unprepared('SET IDENTITY_INSERT [' . DB::connection()->getTablePrefix() . 'user] ON'); 40736b8b72SGreg Roach } 41736b8b72SGreg Roach 42c9beb871SGreg Roach DB::table('user')->updateOrInsert([ 43c9beb871SGreg Roach 'user_id' => -1, 44c9beb871SGreg Roach ], [ 45c9beb871SGreg Roach 'user_name' => 'DEFAULT_USER', 46c9beb871SGreg Roach 'real_name' => 'DEFAULT_USER', 47c9beb871SGreg Roach 'email' => 'DEFAULT_USER', 48c9beb871SGreg Roach 'password' => 'DEFAULT_USER', 49c9beb871SGreg Roach ]); 50736b8b72SGreg Roach 51736b8b72SGreg Roach if (DB::connection()->getDriverName() === 'sqlsrv') { 523f0c8e3fSGreg Roach DB::connection()->unprepared('SET IDENTITY_INSERT [' . DB::connection()->getTablePrefix() . 'user] OFF'); 53736b8b72SGreg Roach } 54c9beb871SGreg Roach } 55c9beb871SGreg Roach} 56