2018-09-25 07:30:50 -04:00
|
|
|
<?php namespace BookStack\Uploads;
|
2015-07-13 16:52:56 -04:00
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
use BookStack\Entities\Page;
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Ownable;
|
2015-12-09 14:50:17 -05:00
|
|
|
use Images;
|
|
|
|
|
2016-02-27 14:24:42 -05:00
|
|
|
class Image extends Ownable
|
2015-07-13 16:52:56 -04:00
|
|
|
{
|
2015-08-15 19:18:22 -04:00
|
|
|
|
|
|
|
protected $fillable = ['name'];
|
2020-01-12 09:45:54 -05:00
|
|
|
protected $hidden = [];
|
2015-08-15 19:18:22 -04:00
|
|
|
|
2015-09-04 12:50:52 -04:00
|
|
|
/**
|
2015-12-09 14:50:17 -05:00
|
|
|
* Get a thumbnail for this image.
|
2018-05-13 07:07:38 -04:00
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
2015-12-14 15:13:32 -05:00
|
|
|
* @param bool|false $keepRatio
|
2015-12-09 17:30:55 -05:00
|
|
|
* @return string
|
2018-05-13 07:07:38 -04:00
|
|
|
* @throws \Exception
|
2015-09-04 12:50:52 -04:00
|
|
|
*/
|
2015-12-14 15:13:32 -05:00
|
|
|
public function getThumb($width, $height, $keepRatio = false)
|
2015-09-04 12:50:52 -04:00
|
|
|
{
|
2015-12-14 15:13:32 -05:00
|
|
|
return Images::getThumbnail($this, $width, $height, $keepRatio);
|
2015-09-04 12:50:52 -04:00
|
|
|
}
|
2019-05-04 10:48:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the page this image has been uploaded to.
|
|
|
|
* Only applicable to gallery or drawio image types.
|
|
|
|
* @return Page|null
|
|
|
|
*/
|
|
|
|
public function getPage()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Page::class, 'uploaded_to')->first();
|
|
|
|
}
|
2015-07-13 16:52:56 -04:00
|
|
|
}
|