| 
									
										
										
										
											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-02-05 22:37:50 +08:00
										 |  |  |         $user = factory(\BookStack\User::class)->create(); | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  |         $role = \BookStack\Role::getRole('editor'); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |         $user->attachRole($role); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-27 02:24:57 +08:00
										 |  |  |         factory(\BookStack\Book::class, 20)->create(['created_by' => $user->id, 'updated_by' => $user->id]) | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |             ->each(function($book) use ($user) { | 
					
						
							| 
									
										
										
										
											2017-09-10 20:29:48 +08:00
										 |  |  |                 $chapters = factory(\BookStack\Chapter::class, 5)->create(['created_by' => $user->id, 'updated_by' => $user->id]) | 
					
						
							|  |  |  |                     ->each(function($chapter) use ($user, $book){ | 
					
						
							|  |  |  |                         $pages = factory(\BookStack\Page::class, 5)->make(['created_by' => $user->id, 'updated_by' => $user->id, 'book_id' => $book->id]); | 
					
						
							|  |  |  |                         $chapter->pages()->saveMany($pages); | 
					
						
							|  |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2015-12-03 03:10:05 +08:00
										 |  |  |                 $pages = factory(\BookStack\Page::class, 3)->make(['created_by' => $user->id, 'updated_by' => $user->id]); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-30 05:01:43 +08:00
										 |  |  |         $largeBook = factory(\BookStack\Book::class)->create(['name' => 'Large book' . str_random(10), 'created_by' => $user->id, 'updated_by' => $user->id]); | 
					
						
							|  |  |  |         $pages = factory(\BookStack\Page::class, 200)->make(['created_by' => $user->id, 'updated_by' => $user->id]); | 
					
						
							|  |  |  |         $chapters = factory(\BookStack\Chapter::class, 50)->make(['created_by' => $user->id, 'updated_by' => $user->id]); | 
					
						
							|  |  |  |         $largeBook->pages()->saveMany($pages); | 
					
						
							|  |  |  |         $largeBook->chapters()->saveMany($chapters); | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     } | 
					
						
							|  |  |  | } |