mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-11-06 00:50:36 +03:00
As per PR #5800 * DB: Planned out new entity table format via migrations * DB: Created entity migration logic Made some other tweaks/fixes while testing. * DB: Added change of entity relation columns to suit new entities table * DB: Got most view queries working for new structure * Entities: Started logic change to new structure Updated base entity class, and worked through BaseRepo. Need to go through other repos next. Removed a couple of redundant interfaces as part of this since we can move the logic onto the shared ContainerData model as needed. * Entities: Been through repos to update for new format * Entities: Updated repos to act on refreshed clones Changes to core entity models are now done on clones to ensure clean state before save, and those clones are returned back if changes are needed after that action. * Entities: Updated model classes & relations for changes * Entities: Changed from *Data to a common "contents" system Added smart loading from builder instances which should hydrate with "contents()" loaded via join, while keeping the core model original. * Entities: Moved entity description/covers to own non-model classes Added back some interfaces. * Entities: Removed use of contents system for data access * Entities: Got most queries back to working order * Entities: Reverted back to data from contents, fixed various issues * Entities: Started addressing issues from tests * Entities: Addressed further tests/issues * Entities: Been through tests to get all passing in dev Fixed issues and needed test changes along the way. * Entities: Addressed phpstan errors * Entities: Reviewed TODO notes * Entities: Ensured book/shelf relation data removed on destroy * Entities: Been through API responses & adjusted field visibility * Entities: Added type index to massively improve query speed
100 lines
3.7 KiB
PHP
100 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use BookStack\Api\ApiToken;
|
|
use BookStack\Entities\Models\Book;
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
use BookStack\Entities\Models\Chapter;
|
|
use BookStack\Entities\Models\Page;
|
|
use BookStack\Permissions\JointPermissionBuilder;
|
|
use BookStack\Permissions\Models\RolePermission;
|
|
use BookStack\Search\SearchIndex;
|
|
use BookStack\Users\Models\Role;
|
|
use BookStack\Users\Models\User;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Str;
|
|
|
|
class DummyContentSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
// Create an editor user
|
|
$editorUser = User::factory()->create();
|
|
$editorRole = Role::getRole('editor');
|
|
$additionalEditorPerms = ['receive-notifications', 'comment-create-all'];
|
|
$editorRole->permissions()->syncWithoutDetaching(RolePermission::whereIn('name', $additionalEditorPerms)->pluck('id'));
|
|
$editorUser->attachRole($editorRole);
|
|
|
|
// Create a viewer user
|
|
$viewerUser = User::factory()->create();
|
|
$role = Role::getRole('viewer');
|
|
$viewerUser->attachRole($role);
|
|
|
|
$byData = ['created_by' => $editorUser->id, 'updated_by' => $editorUser->id, 'owned_by' => $editorUser->id];
|
|
|
|
Book::factory()->count(5)->make($byData)
|
|
->each(function ($book) use ($byData) {
|
|
$book->save();
|
|
$chapters = Chapter::factory()->count(3)->create($byData)
|
|
->each(function ($chapter) use ($book, $byData) {
|
|
$pages = Page::factory()->count(3)->make(array_merge($byData, ['book_id' => $book->id]));
|
|
$this->saveManyOnRelation($pages, $chapter->pages());
|
|
});
|
|
$pages = Page::factory()->count(3)->make($byData);
|
|
$this->saveManyOnRelation($chapters, $book->chapters());
|
|
$this->saveManyOnRelation($pages, $book->pages());
|
|
});
|
|
|
|
$largeBook = Book::factory()->make(array_merge($byData, ['name' => 'Large book' . Str::random(10)]));
|
|
$largeBook->save();
|
|
|
|
$pages = Page::factory()->count(200)->make($byData);
|
|
$chapters = Chapter::factory()->count(50)->make($byData);
|
|
$this->saveManyOnRelation($pages, $largeBook->pages());
|
|
$this->saveManyOnRelation($chapters, $largeBook->chapters());
|
|
|
|
$shelves = Bookshelf::factory()->count(10)->make($byData);
|
|
foreach ($shelves as $shelf) {
|
|
$shelf->save();
|
|
}
|
|
|
|
$largeBook->shelves()->attach($shelves->pluck('id'));
|
|
|
|
// Assign API permission to editor role and create an API key
|
|
$apiPermission = RolePermission::getByName('access-api');
|
|
$editorRole->attachPermission($apiPermission);
|
|
$token = (new ApiToken())->forceFill([
|
|
'user_id' => $editorUser->id,
|
|
'name' => 'Testing API key',
|
|
'expires_at' => ApiToken::defaultExpiry(),
|
|
'secret' => Hash::make('password'),
|
|
'token_id' => 'apitoken',
|
|
]);
|
|
$token->save();
|
|
|
|
app(JointPermissionBuilder::class)->rebuildForAll();
|
|
app(SearchIndex::class)->indexAllEntities();
|
|
}
|
|
|
|
/**
|
|
* Inefficient workaround for saving many on a relation since we can't directly insert
|
|
* entities since we split them across tables.
|
|
*/
|
|
protected function saveManyOnRelation(Collection $entities, HasMany $relation): void
|
|
{
|
|
foreach ($entities as $entity) {
|
|
$relation->save($entity);
|
|
}
|
|
}
|
|
}
|