mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class LargeContentSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Run the database seeds.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
|
// Create an editor user
|
||
|
$editorUser = factory(\BookStack\User::class)->create();
|
||
|
$editorRole = \BookStack\Role::getRole('editor');
|
||
|
$editorUser->attachRole($editorRole);
|
||
|
|
||
|
$largeBook = factory(\BookStack\Book::class)->create(['name' => 'Large book' . str_random(10), 'created_by' => $editorUser->id, 'updated_by' => $editorUser->id]);
|
||
|
$pages = factory(\BookStack\Page::class, 200)->make(['created_by' => $editorUser->id, 'updated_by' => $editorUser->id]);
|
||
|
$chapters = factory(\BookStack\Chapter::class, 50)->make(['created_by' => $editorUser->id, 'updated_by' => $editorUser->id]);
|
||
|
$largeBook->pages()->saveMany($pages);
|
||
|
$largeBook->chapters()->saveMany($chapters);
|
||
|
app(\BookStack\Services\PermissionService::class)->buildJointPermissions();
|
||
|
app(\BookStack\Services\SearchService::class)->indexAllEntities();
|
||
|
}
|
||
|
}
|