3 namespace Hub\Filter\Bootstrap\AptProxy\Activation;
5 // Import framework stuff
6 use CoreFramework\Request\Requestable;
9 * A GenericActivation filter for bootstrapping proxy
11 * @author Roland Haeder <webmaster@shipsimu.org>
13 * @copyright Copyright (c) 2011 - 2012 Apt-Proxy Developer Team
14 * @license GNU GPL 3.0 or any newer version
15 * @link http://www.shipsimu.org
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program. If not, see <http://www.gnu.org/licenses/>.
30 class AptProxyBootstrapGenericActivationFilter extends BaseAptProxyFilter implements Filterable {
32 * Protected constructor
36 protected function __construct () {
37 // Call parent constructor
38 parent::__construct(__CLASS__);
42 * Creates an instance of this filter class
44 * @return $filterInstance An instance of this filter class
46 public final static function createAptProxyBootstrapGenericActivationFilter () {
48 $filterInstance = new AptProxyBootstrapGenericActivationFilter();
50 // Return the instance
51 return $filterInstance;
55 * Executes the filter with given request and response objects
57 * @param $requestInstance An instance of a class with an Requestable interface
58 * @param $responseInstance An instance of a class with an Responseable interface
60 * @todo Maybe we want to do somthing more here?
62 public function execute (Requestable $requestInstance, Responseable $responseInstance) {
63 // Get a apt-proxy instance
64 $proxyInstance = Registry::getRegistry()->getInstance('apt_proxy');
67 $proxyInstance->enableIsActive();
70 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: apt-proxy has been activated.');