2016-03-06 05:52:10 -05:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-08-30 10:31:16 -04:00
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2016-12-04 11:51:39 -05:00
|
|
|
use Illuminate\Http\Response;
|
2015-08-30 10:31:16 -04:00
|
|
|
use Setting;
|
|
|
|
|
|
|
|
class SettingController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the settings.
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkPermission('settings-manage');
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Settings');
|
2016-05-03 16:10:05 -04:00
|
|
|
|
|
|
|
// Get application version
|
2016-10-30 13:44:00 -04:00
|
|
|
$version = trim(file_get_contents(base_path('version')));
|
2016-05-03 16:10:05 -04:00
|
|
|
|
|
|
|
return view('settings/index', ['version' => $version]);
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified settings in storage.
|
2016-03-06 05:52:10 -05:00
|
|
|
* @param Request $request
|
2015-08-30 10:31:16 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function update(Request $request)
|
|
|
|
{
|
2015-12-31 12:57:34 -05:00
|
|
|
$this->preventAccessForDemoUsers();
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkPermission('settings-manage');
|
2015-12-31 12:57:34 -05:00
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
// Cycles through posted settings and update them
|
2016-03-06 05:52:10 -05:00
|
|
|
foreach ($request->all() as $name => $value) {
|
2018-01-28 11:58:52 -05:00
|
|
|
if (strpos($name, 'setting-') !== 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-08-30 10:31:16 -04:00
|
|
|
$key = str_replace('setting-', '', trim($name));
|
|
|
|
Setting::put($key, $value);
|
|
|
|
}
|
2015-12-31 12:57:34 -05:00
|
|
|
|
2016-12-04 11:51:39 -05:00
|
|
|
session()->flash('success', trans('settings.settings_save_success'));
|
2015-08-30 10:31:16 -04:00
|
|
|
return redirect('/settings');
|
|
|
|
}
|
|
|
|
}
|