1
0
Fork 0
mirror of synced 2024-06-14 00:34:51 +12:00

fix: messaging hostname

This commit is contained in:
Torsten Dittmann 2024-03-08 11:22:58 +01:00
parent 7d3f8a80ea
commit f486767b65
3 changed files with 2 additions and 12 deletions

2
.gitmodules vendored
View file

@ -1,4 +1,4 @@
[submodule "app/console"]
path = app/console
url = https://github.com/appwrite/console
branch = 1.5.x
branch = 4.0.0

@ -1 +1 @@
Subproject commit 4769c5018979b3f00393ce3015ff8bf69d9c1657
Subproject commit c1e6264eb2f99a7c2fb07d91cc95c14b83ad75d8

View file

@ -2935,13 +2935,8 @@ App::post('/v1/messaging/messages/push')
}
$host = App::getEnv('_APP_DOMAIN', 'localhost');
$domain = new Domain(\parse_url($host, PHP_URL_HOST));
$protocol = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') === 'disabled' ? 'http' : 'https';
if (!$domain->isKnown()) {
throw new Exception(Exception::STORAGE_FILE_NOT_PUBLIC);
}
$scheduleTime = $currentScheduledAt ?? $scheduledAt;
if (!\is_null($scheduleTime)) {
$expiry = (new \DateTime($scheduleTime))->add(new \DateInterval('P15D'))->format('U');
@ -3777,13 +3772,8 @@ App::patch('/v1/messaging/messages/push/:messageId')
}
$host = App::getEnv('_APP_DOMAIN', 'localhost');
$domain = new Domain(\parse_url($host, PHP_URL_HOST));
$protocol = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') === 'disabled' ? 'http' : 'https';
if (!$domain->isKnown()) {
throw new Exception(Exception::STORAGE_FILE_NOT_PUBLIC);
}
$scheduleTime = $currentScheduledAt ?? $scheduledAt;
if (!\is_null($scheduleTime)) {
$expiry = (new \DateTime($scheduleTime))->add(new \DateInterval('P15D'))->format('U');