2015-12-17 01:09:44 +08:00
|
|
|
<?php
|
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
use BookStack\App\Model;
|
|
|
|
use BookStack\Permissions\PermissionApplicator;
|
2019-08-04 21:26:39 +08:00
|
|
|
use BookStack\Settings\SettingService;
|
2023-05-18 00:56:55 +08:00
|
|
|
use BookStack\Users\Models\User;
|
2016-07-02 03:11:49 +08:00
|
|
|
|
2016-08-27 18:27:23 +08:00
|
|
|
/**
|
|
|
|
* Get the path to a versioned file.
|
2021-06-26 23:23:15 +08:00
|
|
|
*
|
2016-09-03 19:08:58 +08:00
|
|
|
* @throws Exception
|
2016-08-27 18:27:23 +08:00
|
|
|
*/
|
2019-09-16 01:29:51 +08:00
|
|
|
function versioned_asset(string $file = ''): string
|
2016-08-27 18:27:23 +08:00
|
|
|
{
|
2016-10-31 01:44:00 +08:00
|
|
|
static $version = null;
|
|
|
|
|
|
|
|
if (is_null($version)) {
|
|
|
|
$versionFile = base_path('version');
|
|
|
|
$version = trim(file_get_contents($versionFile));
|
2016-08-27 18:27:23 +08:00
|
|
|
}
|
2015-12-17 01:09:44 +08:00
|
|
|
|
2016-10-31 01:44:00 +08:00
|
|
|
$additional = '';
|
|
|
|
if (config('app.env') === 'development') {
|
|
|
|
$additional = sha1_file(public_path($file));
|
2016-08-27 18:27:23 +08:00
|
|
|
}
|
2015-12-17 01:09:44 +08:00
|
|
|
|
2016-10-31 01:44:00 +08:00
|
|
|
$path = $file . '?version=' . urlencode($version) . $additional;
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2019-08-04 21:26:39 +08:00
|
|
|
return url($path);
|
2016-02-28 03:24:42 +08:00
|
|
|
}
|
|
|
|
|
2016-09-29 19:43:46 +08:00
|
|
|
/**
|
|
|
|
* Helper method to get the current User.
|
|
|
|
* Defaults to public 'Guest' user if not logged in.
|
|
|
|
*/
|
2019-09-16 01:29:51 +08:00
|
|
|
function user(): User
|
2016-09-29 19:43:46 +08:00
|
|
|
{
|
2023-09-16 20:18:35 +08:00
|
|
|
return auth()->user() ?: User::getGuest();
|
2019-02-04 01:34:15 +08:00
|
|
|
}
|
|
|
|
|
2016-02-28 03:24:42 +08:00
|
|
|
/**
|
2020-11-01 07:05:48 +08:00
|
|
|
* Check if the current user has a permission. If an ownable element
|
|
|
|
* is passed in the jointPermissions are checked against that particular item.
|
2016-02-28 03:24:42 +08:00
|
|
|
*/
|
2020-12-31 02:25:35 +08:00
|
|
|
function userCan(string $permission, Model $ownable = null): bool
|
2016-02-28 03:24:42 +08:00
|
|
|
{
|
|
|
|
if ($ownable === null) {
|
2023-09-16 20:18:35 +08:00
|
|
|
return user()->can($permission);
|
2016-02-28 03:24:42 +08:00
|
|
|
}
|
|
|
|
|
2016-03-01 04:31:21 +08:00
|
|
|
// Check permission on ownable item
|
2023-09-17 01:25:08 +08:00
|
|
|
$permissions = app()->make(PermissionApplicator::class);
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2022-07-13 03:15:41 +08:00
|
|
|
return $permissions->checkOwnableUserAccess($ownable, $permission);
|
2016-03-06 20:55:08 +08:00
|
|
|
}
|
|
|
|
|
2019-01-02 13:55:28 +08:00
|
|
|
/**
|
2022-07-16 20:17:08 +08:00
|
|
|
* Check if the current user can perform the given action on any items in the system.
|
|
|
|
* Can be provided the class name of an entity to filter ability to that specific entity type.
|
2019-01-02 13:55:28 +08:00
|
|
|
*/
|
2022-07-16 20:17:08 +08:00
|
|
|
function userCanOnAny(string $action, string $entityClass = ''): bool
|
2019-01-02 13:55:28 +08:00
|
|
|
{
|
2023-09-17 01:25:08 +08:00
|
|
|
$permissions = app()->make(PermissionApplicator::class);
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2022-07-16 20:17:08 +08:00
|
|
|
return $permissions->checkUserHasEntityPermissionOnAny($action, $entityClass);
|
2019-01-02 13:55:28 +08:00
|
|
|
}
|
|
|
|
|
2016-03-06 20:55:08 +08:00
|
|
|
/**
|
|
|
|
* Helper to access system settings.
|
2021-06-26 23:23:15 +08:00
|
|
|
*
|
2021-02-11 07:21:49 +08:00
|
|
|
* @return mixed|SettingService
|
2016-03-06 20:55:08 +08:00
|
|
|
*/
|
2021-02-11 07:21:49 +08:00
|
|
|
function setting(string $key = null, $default = null)
|
2016-03-06 20:55:08 +08:00
|
|
|
{
|
2023-09-17 01:25:08 +08:00
|
|
|
$settingService = app()->make(SettingService::class);
|
2020-11-01 07:05:48 +08:00
|
|
|
|
2018-01-29 00:58:52 +08:00
|
|
|
if (is_null($key)) {
|
|
|
|
return $settingService;
|
|
|
|
}
|
2020-11-01 07:05:48 +08:00
|
|
|
|
2016-03-06 20:55:08 +08:00
|
|
|
return $settingService->get($key, $default);
|
|
|
|
}
|
2016-05-22 17:44:31 +08:00
|
|
|
|
2018-02-17 20:36:24 +08:00
|
|
|
/**
|
|
|
|
* Get a path to a theme resource.
|
2021-07-03 18:53:46 +08:00
|
|
|
* Returns null if a theme is not configured and
|
|
|
|
* therefore a full path is not available for use.
|
2018-02-17 20:36:24 +08:00
|
|
|
*/
|
2021-07-03 18:53:46 +08:00
|
|
|
function theme_path(string $path = ''): ?string
|
2018-02-17 20:36:24 +08:00
|
|
|
{
|
|
|
|
$theme = config('view.theme');
|
2020-11-01 07:05:48 +08:00
|
|
|
|
2018-02-17 20:36:24 +08:00
|
|
|
if (!$theme) {
|
2021-07-03 18:53:46 +08:00
|
|
|
return null;
|
2018-02-17 20:36:24 +08:00
|
|
|
}
|
|
|
|
|
2021-06-26 23:23:15 +08:00
|
|
|
return base_path('themes/' . $theme . ($path ? DIRECTORY_SEPARATOR . $path : $path));
|
2018-02-17 20:36:24 +08:00
|
|
|
}
|
|
|
|
|
2016-05-22 17:44:31 +08:00
|
|
|
/**
|
2023-04-27 20:47:49 +08:00
|
|
|
* Generate a URL with multiple parameters for sorting purposes.
|
2016-05-22 17:44:31 +08:00
|
|
|
* Works out the logic to set the correct sorting direction
|
|
|
|
* Discards empty parameters and allows overriding.
|
|
|
|
*/
|
2019-09-16 01:29:51 +08:00
|
|
|
function sortUrl(string $path, array $data, array $overrideData = []): string
|
2016-05-22 17:44:31 +08:00
|
|
|
{
|
|
|
|
$queryStringSections = [];
|
|
|
|
$queryData = array_merge($data, $overrideData);
|
2016-10-31 01:44:00 +08:00
|
|
|
|
2016-05-22 17:44:31 +08: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';
|
2020-09-19 19:06:45 +08:00
|
|
|
} elseif (isset($overrideData['sort'])) {
|
2016-05-22 17:44:31 +08:00
|
|
|
$queryData['order'] = 'asc';
|
|
|
|
}
|
2016-10-31 01:44:00 +08:00
|
|
|
|
2016-05-22 17:44:31 +08:00
|
|
|
foreach ($queryData as $name => $value) {
|
|
|
|
$trimmedVal = trim($value);
|
2018-01-29 00:58:52 +08:00
|
|
|
if ($trimmedVal === '') {
|
|
|
|
continue;
|
|
|
|
}
|
2016-05-22 17:44:31 +08:00
|
|
|
$queryStringSections[] = urlencode($name) . '=' . urlencode($trimmedVal);
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:58:52 +08:00
|
|
|
if (count($queryStringSections) === 0) {
|
2023-04-27 20:47:49 +08:00
|
|
|
return url($path);
|
2018-01-29 00:58:52 +08:00
|
|
|
}
|
2016-05-22 17:44:31 +08:00
|
|
|
|
2019-08-04 21:26:39 +08:00
|
|
|
return url($path . '?' . implode('&', $queryStringSections));
|
2018-01-29 00:58:52 +08:00
|
|
|
}
|