| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-31 03:42:46 +08:00
										 |  |  | use BookStack\Api\ApiToken; | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  | use BookStack\Auth\Permissions\PermissionService; | 
					
						
							| 
									
										
										
										
											2019-12-31 03:42:46 +08:00
										 |  |  | use BookStack\Auth\Permissions\RolePermission; | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  | use BookStack\Auth\Role; | 
					
						
							|  |  |  | use BookStack\Auth\User; | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  | use BookStack\Entities\Models\Bookshelf; | 
					
						
							|  |  |  | use BookStack\Entities\Models\Chapter; | 
					
						
							|  |  |  | use BookStack\Entities\Models\Page; | 
					
						
							|  |  |  | use BookStack\Entities\Tools\SearchIndex; | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | use Illuminate\Database\Seeder; | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  | use Illuminate\Support\Str; | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DummyContentSeeder extends Seeder | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Run the database seeds. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function run() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-11-19 23:56:06 +08:00
										 |  |  |         // Create an editor user
 | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |         $editorUser = factory(User::class)->create(); | 
					
						
							|  |  |  |         $editorRole = Role::getRole('editor'); | 
					
						
							| 
									
										
										
										
											2017-11-19 23:56:06 +08:00
										 |  |  |         $editorUser->attachRole($editorRole); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 23:56:06 +08:00
										 |  |  |         // Create a viewer user
 | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |         $viewerUser = factory(User::class)->create(); | 
					
						
							|  |  |  |         $role = Role::getRole('viewer'); | 
					
						
							| 
									
										
										
										
											2017-11-19 23:56:06 +08:00
										 |  |  |         $viewerUser->attachRole($role); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-02 08:09:29 +08:00
										 |  |  |         $byData = ['created_by' => $editorUser->id, 'updated_by' => $editorUser->id, 'owned_by' => $editorUser->id]; | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  |         factory(\BookStack\Entities\Models\Book::class, 5)->create($byData) | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |             ->each(function($book) use ($editorUser, $byData) { | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |                 $chapters = factory(Chapter::class, 3)->create($byData) | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |                     ->each(function($chapter) use ($editorUser, $book, $byData){ | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |                         $pages = factory(Page::class, 3)->make(array_merge($byData, ['book_id' => $book->id])); | 
					
						
							| 
									
										
										
										
											2017-09-10 20:29:48 +08:00
										 |  |  |                         $chapter->pages()->saveMany($pages); | 
					
						
							|  |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |                 $pages = factory(Page::class, 3)->make($byData); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |                 $book->chapters()->saveMany($chapters); | 
					
						
							| 
									
										
										
										
											2015-12-03 03:10:05 +08:00
										 |  |  |                 $book->pages()->saveMany($pages); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |             }); | 
					
						
							| 
									
										
										
										
											2016-04-27 04:48:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  |         $largeBook = factory(\BookStack\Entities\Models\Book::class)->create(array_merge($byData, ['name' => 'Large book' . Str::random(10)])); | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |         $pages = factory(Page::class, 200)->make($byData); | 
					
						
							|  |  |  |         $chapters = factory(Chapter::class, 50)->make($byData); | 
					
						
							| 
									
										
										
										
											2017-04-30 05:01:43 +08:00
										 |  |  |         $largeBook->pages()->saveMany($pages); | 
					
						
							|  |  |  |         $largeBook->chapters()->saveMany($chapters); | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |         $shelves = factory(Bookshelf::class, 10)->create($byData); | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |         $largeBook->shelves()->attach($shelves->pluck('id')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-31 03:42:46 +08:00
										 |  |  |         // 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(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-14 21:17:55 +08:00
										 |  |  |         app(PermissionService::class)->buildJointPermissions(); | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  |         app(SearchIndex::class)->indexAllEntities(); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |