| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Uploads; | 
					
						
							| 
									
										
										
										
											2015-07-14 04:52:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\App\Model; | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  | use BookStack\Entities\Models\Page; | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\Permissions\Models\JointPermission; | 
					
						
							|  |  |  | use BookStack\Permissions\PermissionApplicator; | 
					
						
							|  |  |  | use BookStack\Users\Models\HasCreatorAndUpdater; | 
					
						
							| 
									
										
										
										
											2023-03-14 20:19:19 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Builder; | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Factories\HasFactory; | 
					
						
							| 
									
										
										
										
											2023-01-25 03:04:32 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Relations\HasMany; | 
					
						
							| 
									
										
										
										
											2015-12-10 03:50:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-05 05:59:31 +08:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |  * @property int    $id | 
					
						
							| 
									
										
										
										
											2021-06-05 05:59:31 +08:00
										 |  |  |  * @property string $name | 
					
						
							|  |  |  |  * @property string $url | 
					
						
							|  |  |  |  * @property string $path | 
					
						
							|  |  |  |  * @property string $type | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |  * @property int    $uploaded_to | 
					
						
							|  |  |  |  * @property int    $created_by | 
					
						
							|  |  |  |  * @property int    $updated_by | 
					
						
							| 
									
										
										
										
											2021-06-05 05:59:31 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-12-31 02:25:35 +08:00
										 |  |  | class Image extends Model | 
					
						
							| 
									
										
										
										
											2015-07-14 04:52:56 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |     use HasFactory; | 
					
						
							| 
									
										
										
										
											2020-12-31 02:25:35 +08:00
										 |  |  |     use HasCreatorAndUpdater; | 
					
						
							| 
									
										
										
										
											2015-08-16 07:18:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     protected $fillable = ['name']; | 
					
						
							| 
									
										
										
										
											2020-01-12 22:45:54 +08:00
										 |  |  |     protected $hidden = []; | 
					
						
							| 
									
										
										
										
											2015-08-16 07:18:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-25 03:04:32 +08:00
										 |  |  |     public function jointPermissions(): HasMany | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasMany(JointPermission::class, 'entity_id', 'uploaded_to') | 
					
						
							|  |  |  |             ->where('joint_permissions.entity_type', '=', 'page'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-14 20:19:19 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Scope the query to just the images visible to the user based upon the | 
					
						
							|  |  |  |      * user visibility of the uploaded_to page. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function scopeVisible(Builder $query): Builder | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return app()->make(PermissionApplicator::class)->restrictPageRelationQuery($query, 'images', 'uploaded_to'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2015-12-10 03:50:17 +08:00
										 |  |  |      * Get a thumbnail for this image. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-05-13 19:07:38 +08:00
										 |  |  |      * @throws \Exception | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-03-15 03:29:08 +08:00
										 |  |  |     public function getThumb(?int $width, ?int $height, bool $keepRatio = false): string | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-05-25 01:45:08 +08:00
										 |  |  |         return app()->make(ImageService::class)->getThumbnail($this, $width, $height, $keepRatio); | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-05-04 22:48:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get the page this image has been uploaded to. | 
					
						
							|  |  |  |      * Only applicable to gallery or drawio image types. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-05-25 01:45:08 +08:00
										 |  |  |     public function getPage(): ?Page | 
					
						
							| 
									
										
										
										
											2019-05-04 22:48:15 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->belongsTo(Page::class, 'uploaded_to')->first(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-14 04:52:56 +08:00
										 |  |  | } |