mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 10:56:46 -04:00
Add newsletter management functionality
This commit is contained in:
parent
90ee0a93c9
commit
b0197d189a
57 changed files with 1017 additions and 143 deletions
|
@ -1,12 +1,29 @@
|
|||
<?
|
||||
// Auto-included by Composer in composer.json to satisfy PHPStan
|
||||
use function Safe\define;
|
||||
use function Safe\file_get_contents;
|
||||
use function Safe\gmdate;
|
||||
use function Safe\strtotime;
|
||||
|
||||
const SITE_STATUS_LIVE = 'live';
|
||||
const SITE_STATUS_DEV = 'dev';
|
||||
define('SITE_STATUS', getenv('SITE_STATUS') ?: SITE_STATUS_DEV); // Set in the PHP FPM pool configuration. Have to use define() and not const so we can use a function.
|
||||
|
||||
// No trailing slash on any of the below constants.
|
||||
if(SITE_STATUS == SITE_STATUS_LIVE){
|
||||
define('SITE_URL', 'https://standardebooks.org');
|
||||
}
|
||||
else{
|
||||
define('SITE_URL', 'https://standardebooks.test');
|
||||
}
|
||||
|
||||
const SITE_ROOT = '/standardebooks.org';
|
||||
const WEB_ROOT = SITE_ROOT . '/web/www';
|
||||
const REPOS_PATH = SITE_ROOT . '/ebooks';
|
||||
const TEMPLATES_PATH = SITE_ROOT . '/web/templates';
|
||||
const MANUAL_PATH = WEB_ROOT . '/manual';
|
||||
const EBOOKS_DIST_PATH = WEB_ROOT . '/ebooks/';
|
||||
|
||||
const DATABASE_DEFAULT_DATABASE = 'se';
|
||||
const DATABASE_DEFAULT_HOST = 'localhost';
|
||||
|
||||
|
@ -16,9 +33,21 @@ const SORT_AUTHOR_ALPHA = 'author-alpha';
|
|||
const SORT_READING_EASE = 'reading-ease';
|
||||
const SORT_LENGTH = 'length';
|
||||
|
||||
const GET = 0;
|
||||
const POST = 1;
|
||||
const COOKIE = 2;
|
||||
const CAPTCHA_IMAGE_HEIGHT = 72;
|
||||
const CAPTCHA_IMAGE_WIDTH = 230;
|
||||
|
||||
const NO_REPLY_EMAIL_ADDRESS = 'admin@standardebooks.org';
|
||||
const EMAIL_SMTP_HOST = 'smtp-broadcasts.postmarkapp.com';
|
||||
define('EMAIL_SMTP_USERNAME', trim(file_get_contents(SITE_ROOT . '/config/secrets/postmarkapp.com')) ?: '');
|
||||
const EMAIL_SMTP_PASSWORD = EMAIL_SMTP_USERNAME;
|
||||
const EMAIL_POSTMARK_STREAM_BROADCAST = 'the-standard-ebooks-newsletter';
|
||||
|
||||
const REST = 0;
|
||||
const WEB = 1;
|
||||
|
||||
const GET = 'GET';
|
||||
const POST = 'POST';
|
||||
const COOKIE = 'COOKIE';
|
||||
|
||||
const HTTP_VAR_INT = 0;
|
||||
const HTTP_VAR_STR = 1;
|
||||
|
@ -47,17 +76,8 @@ define('DONATION_HOLIDAY_ALERT_ON', time() > strtotime('November 15, ' . gmdate(
|
|||
define('DONATION_ALERT_ON', DONATION_HOLIDAY_ALERT_ON || rand(1, 4) == 2);
|
||||
define('DONATION_DRIVE_ON', false);
|
||||
|
||||
// No trailing slash on any of the below constants.
|
||||
const SITE_URL = 'https://standardebooks.org';
|
||||
const SITE_ROOT = '/standardebooks.org';
|
||||
const WEB_ROOT = SITE_ROOT . '/web/www';
|
||||
const REPOS_PATH = SITE_ROOT . '/ebooks';
|
||||
const TEMPLATES_PATH = SITE_ROOT . '/web/templates';
|
||||
const MANUAL_PATH = WEB_ROOT . '/manual';
|
||||
const EBOOKS_DIST_PATH = WEB_ROOT . '/ebooks/';
|
||||
|
||||
const GITHUB_SECRET_FILE_PATH = SITE_ROOT . '/config/secrets/se-vcs-bot@github.com'; // Set in the GitHub organization global webhook settings.
|
||||
const GITHUB_WEBHOOK_LOG_FILE_PATH = '/var/log/local/webhooks-github.log'; // Must be writable by `www-data` Unix user.
|
||||
const GITHUB_IGNORED_REPOS = ['tools', 'manual', 'web']; // If we get GitHub push requests featuring these repos, silently ignore instead of returning an error.
|
||||
|
||||
// If we get GitHub push requests featuring these repos, silently ignore instead of returning an error.
|
||||
const GITHUB_IGNORED_REPOS = ['tools', 'manual', 'web'];
|
||||
const POSTMARK_WEBHOOK_LOG_FILE_PATH = '/var/log/local/webhooks-postmark.log'; // Must be writable by `www-data` Unix user.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue