| 
									
										
										
										
											2015-12-17 01:09:44 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  | if (!function_exists('versioned_asset')) { | 
					
						
							| 
									
										
										
										
											2015-12-17 01:09:44 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the path to a versioned file. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  |      * @param  string $file | 
					
						
							| 
									
										
										
										
											2015-12-17 01:09:44 +08:00
										 |  |  |      * @return string | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws \InvalidArgumentException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function versioned_asset($file) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         static $manifest = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_null($manifest)) { | 
					
						
							|  |  |  |             $manifest = json_decode(file_get_contents(public_path('build/manifest.json')), true); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (isset($manifest[$file])) { | 
					
						
							|  |  |  |             return '/' . $manifest[$file]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (file_exists(public_path($file))) { | 
					
						
							|  |  |  |             return '/' . $file; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         throw new InvalidArgumentException("File {$file} not defined in asset manifest."); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-28 03:24:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Check if the current user has a permission. | 
					
						
							|  |  |  |  * If an ownable element is passed in the permissions are checked against | 
					
						
							|  |  |  |  * that particular item. | 
					
						
							|  |  |  |  * @param $permission | 
					
						
							|  |  |  |  * @param \BookStack\Ownable $ownable | 
					
						
							|  |  |  |  * @return mixed | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | function userCan($permission, \BookStack\Ownable $ownable = null) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  |     if (!auth()->check()) return false; | 
					
						
							| 
									
										
										
										
											2016-02-28 03:24:42 +08:00
										 |  |  |     if ($ownable === null) { | 
					
						
							|  |  |  |         return auth()->user() && auth()->user()->can($permission); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-01 04:31:21 +08:00
										 |  |  |     // Check permission on ownable item
 | 
					
						
							| 
									
										
										
										
											2016-02-28 03:24:42 +08:00
										 |  |  |     $permissionBaseName = strtolower($permission) . '-'; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:31:21 +08:00
										 |  |  |     $hasPermission = false; | 
					
						
							|  |  |  |     if (auth()->user()->can($permissionBaseName . 'all')) $hasPermission = true; | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  |     if (auth()->user()->can($permissionBaseName . 'own') && $ownable->createdBy && $ownable->createdBy->id === auth()->user()->id) $hasPermission = true; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:31:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  |     if (!$ownable instanceof \BookStack\Entity) return $hasPermission; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:31:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Check restrictions on the entitiy
 | 
					
						
							|  |  |  |     $restrictionService = app('BookStack\Services\RestrictionService'); | 
					
						
							|  |  |  |     $explodedPermission = explode('-', $permission); | 
					
						
							|  |  |  |     $action = end($explodedPermission); | 
					
						
							|  |  |  |     $hasAccess = $restrictionService->checkIfEntityRestricted($ownable, $action); | 
					
						
							|  |  |  |     return $hasAccess && $hasPermission; | 
					
						
							| 
									
										
										
										
											2016-03-06 20:55:08 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Helper to access system settings. | 
					
						
							|  |  |  |  * @param $key | 
					
						
							|  |  |  |  * @param bool $default | 
					
						
							|  |  |  |  * @return mixed | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | function setting($key, $default = false) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     $settingService = app('BookStack\Services\SettingService'); | 
					
						
							|  |  |  |     return $settingService->get($key, $default); | 
					
						
							|  |  |  | } |