| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use Illuminate\Database\Seeder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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
 | 
					
						
							|  |  |  |         $editorUser = factory(\BookStack\User::class)->create(); | 
					
						
							|  |  |  |         $editorRole = \BookStack\Role::getRole('editor'); | 
					
						
							|  |  |  |         $editorUser->attachRole($editorRole); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 23:56:06 +08:00
										 |  |  |         // Create a viewer user
 | 
					
						
							|  |  |  |         $viewerUser = factory(\BookStack\User::class)->create(); | 
					
						
							|  |  |  |         $role = \BookStack\Role::getRole('viewer'); | 
					
						
							|  |  |  |         $viewerUser->attachRole($role); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |         $byData = ['created_by' => $editorUser->id, 'updated_by' => $editorUser->id]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         factory(\BookStack\Book::class, 5)->create($byData) | 
					
						
							|  |  |  |             ->each(function($book) use ($editorUser, $byData) { | 
					
						
							|  |  |  |                 $chapters = factory(\BookStack\Chapter::class, 3)->create($byData) | 
					
						
							|  |  |  |                     ->each(function($chapter) use ($editorUser, $book, $byData){ | 
					
						
							|  |  |  |                         $pages = factory(\BookStack\Page::class, 3)->make(array_merge($byData, ['book_id' => $book->id])); | 
					
						
							| 
									
										
										
										
											2017-09-10 20:29:48 +08:00
										 |  |  |                         $chapter->pages()->saveMany($pages); | 
					
						
							|  |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |                 $pages = factory(\BookStack\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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |         $largeBook = factory(\BookStack\Book::class)->create(array_merge($byData, ['name' => 'Large book' . str_random(10)])); | 
					
						
							|  |  |  |         $pages = factory(\BookStack\Page::class, 200)->make($byData); | 
					
						
							|  |  |  |         $chapters = factory(\BookStack\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
										 |  |  | 
 | 
					
						
							|  |  |  |         $shelves = factory(\BookStack\Bookshelf::class, 10)->create($byData); | 
					
						
							|  |  |  |         $largeBook->shelves()->attach($shelves->pluck('id')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-27 02:24:57 +08:00
										 |  |  |         app(\BookStack\Services\PermissionService::class)->buildJointPermissions(); | 
					
						
							|  |  |  |         app(\BookStack\Services\SearchService::class)->indexAllEntities(); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |