2021-09-26 04:20:29 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Shlinkio\Shlink;
|
|
|
|
|
2023-01-07 04:27:15 -06:00
|
|
|
use Shlinkio\Shlink\Core\Util\RedirectStatus;
|
2021-09-26 04:20:29 -05:00
|
|
|
|
|
|
|
const DEFAULT_DELETE_SHORT_URL_THRESHOLD = 15;
|
|
|
|
const DEFAULT_SHORT_CODES_LENGTH = 5;
|
|
|
|
const MIN_SHORT_CODES_LENGTH = 4;
|
2023-01-07 06:51:35 -06:00
|
|
|
const DEFAULT_REDIRECT_STATUS_CODE = RedirectStatus::STATUS_302; // Deprecated. Default to 307 for Shlink v4
|
2021-09-26 04:20:29 -05:00
|
|
|
const DEFAULT_REDIRECT_CACHE_LIFETIME = 30;
|
|
|
|
const LOCAL_LOCK_FACTORY = 'Shlinkio\Shlink\LocalLockFactory';
|
2022-02-01 12:12:53 -06:00
|
|
|
const TITLE_TAG_VALUE = '/<title[^>]*>(.*?)<\/title>/i'; // Matches the value inside a html title tag
|
2023-04-10 11:05:57 -05:00
|
|
|
const LOOSE_URI_MATCHER = '/(.+)\:(.+)/i'; // Matches anything starting with a schema.
|
2021-09-26 06:25:02 -05:00
|
|
|
const DEFAULT_QR_CODE_SIZE = 300;
|
|
|
|
const DEFAULT_QR_CODE_MARGIN = 0;
|
|
|
|
const DEFAULT_QR_CODE_FORMAT = 'png';
|
|
|
|
const DEFAULT_QR_CODE_ERROR_CORRECTION = 'l';
|
2021-12-06 10:10:10 -06:00
|
|
|
const DEFAULT_QR_CODE_ROUND_BLOCK_SIZE = true;
|
2023-12-22 06:29:22 -06:00
|
|
|
// Deprecated. Shlink 4.0.0 should change default value to `true`
|
|
|
|
const DEFAULT_QR_CODE_ENABLED_FOR_DISABLED_SHORT_URLS = false;
|
2021-10-23 09:32:06 -05:00
|
|
|
const MIN_TASK_WORKERS = 4;
|