MediaWiki REL1_33
ProxyLookup.php
Go to the documentation of this file.
1<?php
2
23
28
33
38
42 private $proxyIPSet;
43
48 public function __construct( $proxyServers, $proxyServersComplex ) {
49 $this->proxyServers = $proxyServers;
50 $this->proxyServersComplex = $proxyServersComplex;
51 }
52
59 public function isConfiguredProxy( $ip ) {
60 // Quick check of known singular proxy servers
61 if ( in_array( $ip, $this->proxyServers ) ) {
62 return true;
63 }
64
65 // Check against addresses and CIDR nets in the complex list
66 if ( !$this->proxyIPSet ) {
67 $this->proxyIPSet = new IPSet( $this->proxyServersComplex );
68 }
69 return $this->proxyIPSet->match( $ip );
70 }
71
80 public function isTrustedProxy( $ip ) {
81 $trusted = $this->isConfiguredProxy( $ip );
82 Hooks::run( 'IsTrustedProxy', [ &$ip, &$trusted ] );
83 return $trusted;
84 }
85}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
isTrustedProxy( $ip)
Checks if an IP is a trusted proxy provider.
__construct( $proxyServers, $proxyServersComplex)
string[] $proxyServers
isConfiguredProxy( $ip)
Checks if an IP matches a proxy we've configured.
string[] $proxyServersComplex
IPSet null $proxyIPSet