diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-10-08 15:05:50 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-10-08 15:05:50 +0200 |
commit | b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84 (patch) | |
tree | b6bd2d066410bc8e6a09bbd057df728b5de1493e /application/HttpUtils.php | |
parent | 2c049b673acdd10125db9c3c271eef5bd3f5fc17 (diff) | |
parent | ecccb14e2ab4e5f372ea9946b29995c3c7122a5c (diff) | |
download | Shaarli-b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84.tar.gz Shaarli-b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84.tar.zst Shaarli-b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84.zip |
Merge tag 'v0.9.2' into latest
Release v0.9.2
Diffstat (limited to 'application/HttpUtils.php')
-rw-r--r-- | application/HttpUtils.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/application/HttpUtils.php b/application/HttpUtils.php index 88a1efdb..00835966 100644 --- a/application/HttpUtils.php +++ b/application/HttpUtils.php | |||
@@ -401,3 +401,31 @@ function getIpAddressFromProxy($server, $trustedIps) | |||
401 | 401 | ||
402 | return array_pop($ips); | 402 | return array_pop($ips); |
403 | } | 403 | } |
404 | |||
405 | /** | ||
406 | * Returns true if Shaarli's currently browsed in HTTPS. | ||
407 | * Supports reverse proxies (if the headers are correctly set). | ||
408 | * | ||
409 | * @param array $server $_SERVER. | ||
410 | * | ||
411 | * @return bool true if HTTPS, false otherwise. | ||
412 | */ | ||
413 | function is_https($server) | ||
414 | { | ||
415 | |||
416 | if (isset($server['HTTP_X_FORWARDED_PORT'])) { | ||
417 | // Keep forwarded port | ||
418 | if (strpos($server['HTTP_X_FORWARDED_PORT'], ',') !== false) { | ||
419 | $ports = explode(',', $server['HTTP_X_FORWARDED_PORT']); | ||
420 | $port = trim($ports[0]); | ||
421 | } else { | ||
422 | $port = $server['HTTP_X_FORWARDED_PORT']; | ||
423 | } | ||
424 | |||
425 | if ($port == '443') { | ||
426 | return true; | ||
427 | } | ||
428 | } | ||
429 | |||
430 | return ! empty($server['HTTPS']); | ||
431 | } | ||