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;
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
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) {
|
|
|
|
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
|
|
|
|
2015-09-05 15:25:57 -04:00
|
|
|
session()->flash('success', 'Settings Saved');
|
2015-08-30 10:31:16 -04:00
|
|
|
return redirect('/settings');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|