2015-11-26 18:45:04 -05:00
|
|
|
<?php
|
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2019-12-30 14:42:46 -05:00
|
|
|
use BookStack\Api\ApiToken;
|
2019-09-14 09:17:55 -04:00
|
|
|
use BookStack\Auth\Permissions\PermissionService;
|
2019-12-30 14:42:46 -05:00
|
|
|
use BookStack\Auth\Permissions\RolePermission;
|
2019-09-14 09:17:55 -04:00
|
|
|
use BookStack\Auth\Role;
|
|
|
|
use BookStack\Auth\User;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
|
|
use BookStack\Entities\Models\Page;
|
|
|
|
use BookStack\Entities\Tools\SearchIndex;
|
2015-11-26 18:45:04 -05:00
|
|
|
use Illuminate\Database\Seeder;
|
2021-10-30 16:29:59 -04:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2019-09-14 09:17:55 -04:00
|
|
|
use Illuminate\Support\Str;
|
2015-11-26 18:45:04 -05:00
|
|
|
|
|
|
|
class DummyContentSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
2017-11-19 10:56:06 -05:00
|
|
|
// Create an editor user
|
2021-10-30 16:29:59 -04:00
|
|
|
$editorUser = User::factory()->create();
|
2019-09-14 09:17:55 -04:00
|
|
|
$editorRole = Role::getRole('editor');
|
2017-11-19 10:56:06 -05:00
|
|
|
$editorUser->attachRole($editorRole);
|
2015-11-26 18:45:04 -05:00
|
|
|
|
2017-11-19 10:56:06 -05:00
|
|
|
// Create a viewer user
|
2021-10-30 16:29:59 -04:00
|
|
|
$viewerUser = User::factory()->create();
|
2019-09-14 09:17:55 -04:00
|
|
|
$role = Role::getRole('viewer');
|
2017-11-19 10:56:06 -05:00
|
|
|
$viewerUser->attachRole($role);
|
|
|
|
|
2021-01-01 19:09:29 -05:00
|
|
|
$byData = ['created_by' => $editorUser->id, 'updated_by' => $editorUser->id, 'owned_by' => $editorUser->id];
|
2018-09-20 10:27:30 -04:00
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
\BookStack\Entities\Models\Book::factory()->count(5)->create($byData)
|
2021-06-26 11:23:15 -04:00
|
|
|
->each(function ($book) use ($byData) {
|
2021-10-30 16:29:59 -04:00
|
|
|
$chapters = Chapter::factory()->count(3)->create($byData)
|
2021-06-26 11:23:15 -04:00
|
|
|
->each(function ($chapter) use ($book, $byData) {
|
2021-10-30 16:29:59 -04:00
|
|
|
$pages = Page::factory()->count(3)->make(array_merge($byData, ['book_id' => $book->id]));
|
2017-09-10 08:29:48 -04:00
|
|
|
$chapter->pages()->saveMany($pages);
|
|
|
|
});
|
2021-10-30 16:29:59 -04:00
|
|
|
$pages = Page::factory()->count(3)->make($byData);
|
2015-11-26 18:45:04 -05:00
|
|
|
$book->chapters()->saveMany($chapters);
|
2015-12-02 14:10:05 -05:00
|
|
|
$book->pages()->saveMany($pages);
|
2015-11-26 18:45:04 -05:00
|
|
|
});
|
2016-04-26 16:48:17 -04:00
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
$largeBook = \BookStack\Entities\Models\Book::factory()->create(array_merge($byData, ['name' => 'Large book' . Str::random(10)]));
|
|
|
|
$pages = Page::factory()->count(200)->make($byData);
|
|
|
|
$chapters = Chapter::factory()->count(50)->make($byData);
|
2017-04-29 17:01:43 -04:00
|
|
|
$largeBook->pages()->saveMany($pages);
|
|
|
|
$largeBook->chapters()->saveMany($chapters);
|
2018-09-20 10:27:30 -04:00
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
$shelves = Bookshelf::factory()->count(10)->create($byData);
|
2018-09-20 10:27:30 -04:00
|
|
|
$largeBook->shelves()->attach($shelves->pluck('id'));
|
|
|
|
|
2019-12-30 14:42:46 -05:00
|
|
|
// Assign API permission to editor role and create an API key
|
|
|
|
$apiPermission = RolePermission::getByName('access-api');
|
|
|
|
$editorRole->attachPermission($apiPermission);
|
|
|
|
$token = (new ApiToken())->forceFill([
|
2021-06-26 11:23:15 -04:00
|
|
|
'user_id' => $editorUser->id,
|
|
|
|
'name' => 'Testing API key',
|
2019-12-30 14:42:46 -05:00
|
|
|
'expires_at' => ApiToken::defaultExpiry(),
|
2021-06-26 11:23:15 -04:00
|
|
|
'secret' => Hash::make('password'),
|
|
|
|
'token_id' => 'apitoken',
|
2019-12-30 14:42:46 -05:00
|
|
|
]);
|
|
|
|
$token->save();
|
|
|
|
|
2019-09-14 09:17:55 -04:00
|
|
|
app(PermissionService::class)->buildJointPermissions();
|
2020-11-21 19:17:45 -05:00
|
|
|
app(SearchIndex::class)->indexAllEntities();
|
2015-11-26 18:45:04 -05:00
|
|
|
}
|
|
|
|
}
|