2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Theming;
|
2021-03-16 13:14:03 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The ThemeEvents used within BookStack.
|
|
|
|
*
|
|
|
|
* This file details the events that BookStack may fire via the custom
|
|
|
|
* theme system, including event names, parameters and expected return types.
|
|
|
|
*
|
|
|
|
* This system is regarded as semi-stable.
|
|
|
|
* We'll look to fix issues with it or migrate old event types but
|
|
|
|
* events and their signatures may change in new versions of BookStack.
|
|
|
|
* We'd advise testing any usage of these events upon upgrade.
|
|
|
|
*/
|
|
|
|
class ThemeEvents
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Application boot-up.
|
|
|
|
* After main services are registered.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-03-16 13:14:03 -04:00
|
|
|
* @param \BookStack\Application $app
|
|
|
|
*/
|
|
|
|
const APP_BOOT = 'app_boot';
|
|
|
|
|
2021-03-17 08:56:56 -04:00
|
|
|
/**
|
|
|
|
* Web before middleware action.
|
|
|
|
* Runs before the request is handled but after all other middleware apart from those
|
|
|
|
* that depend on the current session user (Localization for example).
|
|
|
|
* Provides the original request to use.
|
|
|
|
* Return values, if provided, will be used as a new response to use.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-03-17 08:56:56 -04:00
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @returns \Illuminate\Http\Response|null
|
|
|
|
*/
|
|
|
|
const WEB_MIDDLEWARE_BEFORE = 'web_middleware_before';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Web after middleware action.
|
|
|
|
* Runs after the request is handled but before the response is sent.
|
|
|
|
* Provides both the original request and the currently resolved response.
|
|
|
|
* Return values, if provided, will be used as a new response to use.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-08-21 10:49:40 -04:00
|
|
|
* @param \Illuminate\Http\Request $request
|
2021-06-28 16:17:10 -04:00
|
|
|
* @param \Illuminate\Http\Response|Symfony\Component\HttpFoundation\BinaryFileResponse $response
|
2021-03-17 08:56:56 -04:00
|
|
|
* @returns \Illuminate\Http\Response|null
|
|
|
|
*/
|
|
|
|
const WEB_MIDDLEWARE_AFTER = 'web_middleware_after';
|
|
|
|
|
2021-03-19 17:54:50 -04:00
|
|
|
/**
|
|
|
|
* Auth login event.
|
|
|
|
* Runs right after a user is logged-in to the application by any authentication
|
|
|
|
* system as a standard app user. This includes a user becoming logged in
|
|
|
|
* after registration. This is not emitted upon API usage.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
|
|
|
* @param string $authSystem
|
2021-03-19 17:54:50 -04:00
|
|
|
* @param \BookStack\Auth\User $user
|
|
|
|
*/
|
|
|
|
const AUTH_LOGIN = 'auth_login';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Auth register event.
|
|
|
|
* Runs right after a user is newly registered to the application by any authentication
|
|
|
|
* system as a standard app user. This includes auto-registration systems used
|
|
|
|
* by LDAP, SAML and social systems. It only includes self-registrations.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
|
|
|
* @param string $authSystem
|
2021-03-19 17:54:50 -04:00
|
|
|
* @param \BookStack\Auth\User $user
|
|
|
|
*/
|
|
|
|
const AUTH_REGISTER = 'auth_register';
|
|
|
|
|
2021-03-16 13:14:03 -04:00
|
|
|
/**
|
|
|
|
* Commonmark environment configure.
|
|
|
|
* Provides the commonmark library environment for customization
|
|
|
|
* before its used to render markdown content.
|
|
|
|
* If the listener returns a non-null value, that will be used as an environment instead.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-03-16 13:14:03 -04:00
|
|
|
* @param \League\CommonMark\ConfigurableEnvironmentInterface $environment
|
|
|
|
* @returns \League\CommonMark\ConfigurableEnvironmentInterface|null
|
|
|
|
*/
|
|
|
|
const COMMONMARK_ENVIRONMENT_CONFIGURE = 'commonmark_environment_configure';
|
2022-01-03 13:22:03 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Webhook call before event.
|
|
|
|
* Runs before a webhook endpoint is called. Allows for customization
|
|
|
|
* of the data format & content within the webhook POST request.
|
|
|
|
* Provides the original event name as a string (see \BookStack\Actions\ActivityType)
|
|
|
|
* along with the webhook instance along with the event detail which may be a
|
|
|
|
* "Loggable" model type or a string.
|
|
|
|
* If the listener returns a non-null value, that will be used as the POST data instead
|
|
|
|
* of the system default.
|
|
|
|
*
|
2022-01-06 07:18:11 -05:00
|
|
|
* @param string $event
|
|
|
|
* @param \BookStack\Actions\Webhook $webhook
|
2022-01-03 13:22:03 -05:00
|
|
|
* @param string|\BookStack\Interfaces\Loggable $detail
|
|
|
|
*/
|
|
|
|
const WEBHOOK_CALL_BEFORE = 'webhook_call_before';
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|