2018-04-14 17:17:47 -04:00
|
|
|
<?php
|
|
|
|
|
2019-09-14 09:17:55 -04:00
|
|
|
use BookStack\Auth\Permissions\PermissionService;
|
|
|
|
use BookStack\Auth\Role;
|
|
|
|
use BookStack\Auth\User;
|
|
|
|
use BookStack\Entities\Chapter;
|
|
|
|
use BookStack\Entities\Page;
|
|
|
|
use BookStack\Entities\SearchService;
|
2018-04-14 17:17:47 -04:00
|
|
|
use Illuminate\Database\Seeder;
|
2019-09-14 09:17:55 -04:00
|
|
|
use Illuminate\Support\Str;
|
2018-04-14 17:17:47 -04:00
|
|
|
|
|
|
|
class LargeContentSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
// Create an editor user
|
2019-09-14 09:17:55 -04:00
|
|
|
$editorUser = factory(User::class)->create();
|
|
|
|
$editorRole = Role::getRole('editor');
|
2018-04-14 17:17:47 -04:00
|
|
|
$editorUser->attachRole($editorRole);
|
|
|
|
|
2019-09-14 09:17:55 -04:00
|
|
|
$largeBook = factory(\BookStack\Entities\Book::class)->create(['name' => 'Large book' . Str::random(10), 'created_by' => $editorUser->id, 'updated_by' => $editorUser->id]);
|
|
|
|
$pages = factory(Page::class, 200)->make(['created_by' => $editorUser->id, 'updated_by' => $editorUser->id]);
|
|
|
|
$chapters = factory(Chapter::class, 50)->make(['created_by' => $editorUser->id, 'updated_by' => $editorUser->id]);
|
2018-04-14 17:17:47 -04:00
|
|
|
$largeBook->pages()->saveMany($pages);
|
|
|
|
$largeBook->chapters()->saveMany($chapters);
|
2019-09-14 09:17:55 -04:00
|
|
|
app(PermissionService::class)->buildJointPermissions();
|
|
|
|
app(SearchService::class)->indexAllEntities();
|
2018-04-14 17:17:47 -04:00
|
|
|
}
|
|
|
|
}
|