2018-12-16 15:18:17 -06:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ImageController.php
|
|
|
|
*
|
|
|
|
* -Description-
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-02-09 00:29:04 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-16 15:18:17 -06:00
|
|
|
*
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2018-12-16 15:18:17 -06:00
|
|
|
* @copyright 2018 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Widgets;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2020-04-17 17:37:56 -05:00
|
|
|
use Illuminate\Support\Str;
|
2018-12-16 15:18:17 -06:00
|
|
|
|
|
|
|
class ImageController extends WidgetController
|
|
|
|
{
|
|
|
|
protected $title = 'Custom Image';
|
|
|
|
protected $defaults = [
|
|
|
|
'title' => null,
|
|
|
|
'image_url' => null,
|
|
|
|
'target_url' => null,
|
|
|
|
];
|
|
|
|
|
|
|
|
public function getView(Request $request)
|
|
|
|
{
|
|
|
|
$data = $this->getSettings();
|
|
|
|
|
|
|
|
if (is_null($data['image_url'])) {
|
|
|
|
return $this->getSettingsView($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dimensions = $request->get('dimensions');
|
|
|
|
$data['dimensions'] = $dimensions;
|
|
|
|
|
|
|
|
// send size so generated images can generate the proper size
|
|
|
|
$data['image_url'] = str_replace(['@AUTO_HEIGHT@', '@AUTO_WIDTH@'], [$dimensions['y'], $dimensions['x']], $data['image_url']);
|
|
|
|
|
|
|
|
// bust cache
|
2020-04-17 17:37:56 -05:00
|
|
|
if (Str::contains($data['image_url'], '?')) {
|
2018-12-16 15:18:17 -06:00
|
|
|
$data['image_url'] .= '&' . mt_rand();
|
|
|
|
} else {
|
|
|
|
$data['image_url'] .= '?' . mt_rand();
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('widgets.image', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSettingsView(Request $request)
|
|
|
|
{
|
2019-08-08 02:59:14 +02:00
|
|
|
return view('widgets.settings.image', $this->getSettings(true));
|
2018-12-16 15:18:17 -06:00
|
|
|
}
|
|
|
|
|
2019-08-08 02:59:14 +02:00
|
|
|
public function getSettings($settingsView = false)
|
2018-12-16 15:18:17 -06:00
|
|
|
{
|
|
|
|
if (is_null($this->settings)) {
|
|
|
|
parent::getSettings();
|
2020-09-21 14:54:51 +02:00
|
|
|
if (! empty($this->settings['image_title'])) {
|
2018-12-16 15:18:17 -06:00
|
|
|
$this->settings['title'] = $this->settings['image_title'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->settings;
|
|
|
|
}
|
|
|
|
}
|