2015-12-16 18:09:44 +01:00
|
|
|
<?php
|
|
|
|
|
2016-07-01 21:11:49 +02:00
|
|
|
use BookStack\Ownable;
|
|
|
|
|
2016-08-27 12:27:23 +02:00
|
|
|
/**
|
|
|
|
* Get the path to a versioned file.
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @return string
|
2016-09-03 13:08:58 +02:00
|
|
|
* @throws Exception
|
2016-08-27 12:27:23 +02:00
|
|
|
*/
|
2016-09-03 13:08:58 +02:00
|
|
|
function versioned_asset($file = '')
|
2016-08-27 12:27:23 +02:00
|
|
|
{
|
2016-10-30 18:44:00 +01:00
|
|
|
static $version = null;
|
|
|
|
|
|
|
|
if (is_null($version)) {
|
|
|
|
$versionFile = base_path('version');
|
|
|
|
$version = trim(file_get_contents($versionFile));
|
2016-08-27 12:27:23 +02:00
|
|
|
}
|
2015-12-16 18:09:44 +01:00
|
|
|
|
2016-10-30 18:44:00 +01:00
|
|
|
$additional = '';
|
|
|
|
if (config('app.env') === 'development') {
|
|
|
|
$additional = sha1_file(public_path($file));
|
2016-08-27 12:27:23 +02:00
|
|
|
}
|
2015-12-16 18:09:44 +01:00
|
|
|
|
2016-10-30 18:44:00 +01:00
|
|
|
$path = $file . '?version=' . urlencode($version) . $additional;
|
|
|
|
return baseUrl($path);
|
2016-02-27 20:24:42 +01:00
|
|
|
}
|
|
|
|
|
2016-09-29 13:43:46 +02:00
|
|
|
/**
|
|
|
|
* Helper method to get the current User.
|
|
|
|
* Defaults to public 'Guest' user if not logged in.
|
|
|
|
* @return \BookStack\User
|
|
|
|
*/
|
|
|
|
function user()
|
|
|
|
{
|
|
|
|
return auth()->user() ?: \BookStack\User::getDefault();
|
|
|
|
}
|
|
|
|
|
2017-02-05 22:19:29 +01:00
|
|
|
/**
|
|
|
|
* Check if current user is a signed in user.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function signedInUser()
|
|
|
|
{
|
|
|
|
return auth()->user() && !auth()->user()->isDefault();
|
|
|
|
}
|
|
|
|
|
2016-02-27 20:24:42 +01:00
|
|
|
/**
|
|
|
|
* Check if the current user has a permission.
|
2016-05-01 22:20:50 +02:00
|
|
|
* If an ownable element is passed in the jointPermissions are checked against
|
2016-02-27 20:24:42 +01:00
|
|
|
* that particular item.
|
|
|
|
* @param $permission
|
2016-07-01 21:11:49 +02:00
|
|
|
* @param Ownable $ownable
|
2016-02-27 20:24:42 +01:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-07-01 21:11:49 +02:00
|
|
|
function userCan($permission, Ownable $ownable = null)
|
2016-02-27 20:24:42 +01:00
|
|
|
{
|
|
|
|
if ($ownable === null) {
|
2016-09-29 13:43:46 +02:00
|
|
|
return user() && user()->can($permission);
|
2016-02-27 20:24:42 +01:00
|
|
|
}
|
|
|
|
|
2016-02-29 21:31:21 +01:00
|
|
|
// Check permission on ownable item
|
2016-07-01 21:11:49 +02:00
|
|
|
$permissionService = app(\BookStack\Services\PermissionService::class);
|
|
|
|
return $permissionService->checkOwnableUserAccess($ownable, $permission);
|
2016-03-06 13:55:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper to access system settings.
|
|
|
|
* @param $key
|
|
|
|
* @param bool $default
|
2017-01-15 17:27:24 +01:00
|
|
|
* @return bool|string|\BookStack\Services\SettingService
|
2016-03-06 13:55:08 +01:00
|
|
|
*/
|
2017-01-15 17:27:24 +01:00
|
|
|
function setting($key = null, $default = false)
|
2016-03-06 13:55:08 +01:00
|
|
|
{
|
2017-02-05 19:57:57 +01:00
|
|
|
$settingService = resolve(\BookStack\Services\SettingService::class);
|
2018-01-28 17:58:52 +01:00
|
|
|
if (is_null($key)) {
|
|
|
|
return $settingService;
|
|
|
|
}
|
2016-03-06 13:55:08 +01:00
|
|
|
return $settingService->get($key, $default);
|
|
|
|
}
|
2016-05-22 11:44:31 +02:00
|
|
|
|
2016-08-13 18:56:20 +02:00
|
|
|
/**
|
|
|
|
* Helper to create url's relative to the applications root path.
|
2016-08-21 15:49:40 +02:00
|
|
|
* @param string $path
|
|
|
|
* @param bool $forceAppDomain
|
2016-08-13 18:56:20 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-08-21 15:49:40 +02:00
|
|
|
function baseUrl($path, $forceAppDomain = false)
|
2016-08-13 18:56:20 +02:00
|
|
|
{
|
2016-08-21 15:49:40 +02:00
|
|
|
$isFullUrl = strpos($path, 'http') === 0;
|
2018-01-28 17:58:52 +01:00
|
|
|
if ($isFullUrl && !$forceAppDomain) {
|
|
|
|
return $path;
|
|
|
|
}
|
2016-08-13 18:56:20 +02:00
|
|
|
$path = trim($path, '/');
|
2016-08-21 15:49:40 +02:00
|
|
|
|
2016-09-17 19:22:04 +02:00
|
|
|
// Remove non-specified domain if forced and we have a domain
|
2016-08-21 15:49:40 +02:00
|
|
|
if ($isFullUrl && $forceAppDomain) {
|
|
|
|
$explodedPath = explode('/', $path);
|
|
|
|
$path = implode('/', array_splice($explodedPath, 3));
|
|
|
|
}
|
|
|
|
|
2016-09-17 19:22:04 +02:00
|
|
|
// Return normal url path if not specified in config
|
|
|
|
if (config('app.url') === '') {
|
|
|
|
return url($path);
|
|
|
|
}
|
|
|
|
|
2016-08-13 18:56:20 +02:00
|
|
|
return rtrim(config('app.url'), '/') . '/' . $path;
|
|
|
|
}
|
|
|
|
|
2016-08-14 13:29:35 +02:00
|
|
|
/**
|
|
|
|
* Get an instance of the redirector.
|
|
|
|
* Overrides the default laravel redirect helper.
|
|
|
|
* Ensures it redirects even when the app is in a subdirectory.
|
|
|
|
*
|
|
|
|
* @param string|null $to
|
|
|
|
* @param int $status
|
|
|
|
* @param array $headers
|
|
|
|
* @param bool $secure
|
|
|
|
* @return \Illuminate\Routing\Redirector|\Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
function redirect($to = null, $status = 302, $headers = [], $secure = null)
|
|
|
|
{
|
|
|
|
if (is_null($to)) {
|
|
|
|
return app('redirect');
|
|
|
|
}
|
|
|
|
|
|
|
|
$to = baseUrl($to);
|
|
|
|
|
|
|
|
return app('redirect')->to($to, $status, $headers, $secure);
|
|
|
|
}
|
|
|
|
|
2018-02-17 13:36:24 +01:00
|
|
|
/**
|
|
|
|
* Get a path to a theme resource.
|
|
|
|
* @param string $path
|
|
|
|
* @return string|boolean
|
|
|
|
*/
|
|
|
|
function theme_path($path = '')
|
|
|
|
{
|
|
|
|
$theme = config('view.theme');
|
|
|
|
if (!$theme) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base_path('themes/' . $theme .($path ? DIRECTORY_SEPARATOR.$path : $path));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get fetch an SVG icon as a string.
|
|
|
|
* Checks for icons defined within a custom theme before defaulting back
|
|
|
|
* to the 'resources/assets/icons' folder.
|
2018-02-17 20:49:00 +01:00
|
|
|
*
|
|
|
|
* Returns an empty string if icon file not found.
|
2018-02-17 13:36:24 +01:00
|
|
|
* @param $name
|
|
|
|
* @param array $attrs
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2018-01-28 17:58:52 +01:00
|
|
|
function icon($name, $attrs = [])
|
|
|
|
{
|
2018-02-17 20:49:00 +01:00
|
|
|
$attrs = array_merge([
|
|
|
|
'class' => 'svg-icon',
|
|
|
|
'data-icon' => $name
|
|
|
|
], $attrs);
|
2017-02-04 12:01:49 +01:00
|
|
|
$attrString = ' ';
|
|
|
|
foreach ($attrs as $attrName => $attr) {
|
|
|
|
$attrString .= $attrName . '="' . $attr . '" ';
|
|
|
|
}
|
2018-02-17 13:36:24 +01:00
|
|
|
|
|
|
|
$iconPath = resource_path('assets/icons/' . $name . '.svg');
|
|
|
|
$themeIconPath = theme_path('icons/' . $name . '.svg');
|
|
|
|
if ($themeIconPath && file_exists($themeIconPath)) {
|
|
|
|
$iconPath = $themeIconPath;
|
2018-02-17 20:49:00 +01:00
|
|
|
} else if (!file_exists($iconPath)) {
|
|
|
|
return '';
|
2018-02-17 13:36:24 +01:00
|
|
|
}
|
|
|
|
|
2017-02-04 12:01:49 +01:00
|
|
|
$fileContents = file_get_contents($iconPath);
|
|
|
|
return str_replace('<svg', '<svg' . $attrString, $fileContents);
|
|
|
|
}
|
|
|
|
|
2016-05-22 11:44:31 +02:00
|
|
|
/**
|
|
|
|
* Generate a url with multiple parameters for sorting purposes.
|
|
|
|
* Works out the logic to set the correct sorting direction
|
|
|
|
* Discards empty parameters and allows overriding.
|
|
|
|
* @param $path
|
|
|
|
* @param array $data
|
|
|
|
* @param array $overrideData
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function sortUrl($path, $data, $overrideData = [])
|
|
|
|
{
|
|
|
|
$queryStringSections = [];
|
|
|
|
$queryData = array_merge($data, $overrideData);
|
2016-10-30 18:44:00 +01:00
|
|
|
|
2016-05-22 11:44:31 +02:00
|
|
|
// Change sorting direction is already sorted on current attribute
|
|
|
|
if (isset($overrideData['sort']) && $overrideData['sort'] === $data['sort']) {
|
|
|
|
$queryData['order'] = ($data['order'] === 'asc') ? 'desc' : 'asc';
|
|
|
|
} else {
|
|
|
|
$queryData['order'] = 'asc';
|
|
|
|
}
|
2016-10-30 18:44:00 +01:00
|
|
|
|
2016-05-22 11:44:31 +02:00
|
|
|
foreach ($queryData as $name => $value) {
|
|
|
|
$trimmedVal = trim($value);
|
2018-01-28 17:58:52 +01:00
|
|
|
if ($trimmedVal === '') {
|
|
|
|
continue;
|
|
|
|
}
|
2016-05-22 11:44:31 +02:00
|
|
|
$queryStringSections[] = urlencode($name) . '=' . urlencode($trimmedVal);
|
|
|
|
}
|
|
|
|
|
2018-01-28 17:58:52 +01:00
|
|
|
if (count($queryStringSections) === 0) {
|
|
|
|
return $path;
|
|
|
|
}
|
2016-05-22 11:44:31 +02:00
|
|
|
|
2016-08-14 13:29:35 +02:00
|
|
|
return baseUrl($path . '?' . implode('&', $queryStringSections));
|
2018-01-28 17:58:52 +01:00
|
|
|
}
|